Skip to content

Instantly share code, notes, and snippets.

View bobrik's full-sized avatar

Ivan Babrou bobrik

View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
[global]
direct=1
runtime=30m
group_reporting
time_based
[randread]
rw=randread
size=1g
bs=4k
#!/usr/bin/perl -w
# Original source: https://lkml.org/lkml/2016/12/7/114
# Changesd to ping the whole 8.8.x.x subnet to produce lots of entries.
my $subnet = '8.8';
use Socket;
use Symbol;
use NetAddr::IP::Lite;
[21:13:21] [build] dpkg-buildpackage -rfakeroot -us -uc -b
[21:13:21] [build] dpkg-buildpackage: info: source package bcc
[21:13:21] [build] dpkg-buildpackage: info: source version 0.3.0-1
[21:13:21] [build] dpkg-buildpackage: info: source distribution unstable
[21:13:21] [build] dpkg-buildpackage: info: source changed by Brenden Blanco <bblanco@gmail.com>
[21:13:21] [build] dpkg-source --before-build bcc-0.3.0
[21:13:21] [build] dpkg-buildpackage: info: host architecture amd64
[21:13:22] [build] fakeroot debian/rules clean
[21:13:22] [build] dh clean --buildsystem=cmake --parallel
[21:13:22] [build] dh_testdir -O--buildsystem=cmake -O--parallel
package com.cloudflare;
import com.google.common.collect.Iterators;
import net.opentsdb.core.IllegalDataException;
import net.opentsdb.core.Internal;
import net.opentsdb.core.TSDB;
import net.opentsdb.utils.Config;
import org.apache.commons.lang.StringUtils;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.Cell;
2017/01/10 00:41:58 INPUT MESSAGE
2017/01/10 00:41:58 INPUT MESSAGE
2017/01/10 00:41:58 INPUT MESSAGE
2017/01/10 00:41:58 INPUT MESSAGE
2017/01/10 00:41:58 INPUT MESSAGE
2017/01/10 00:41:58 INPUT MESSAGE
2017/01/10 00:41:58 INPUT MESSAGE
2017/01/10 00:41:58 INPUT MESSAGE
2017/01/10 00:41:58 INPUT MESSAGE
2017/01/10 00:41:58 INPUT MESSAGE
FROM debian:jessie
ARG SALT_VERSION
RUN apt-key adv --keyserver ha.pool.sks-keyservers.net --recv 0E08A149DE57BFBE && \
echo "deb http://repo.saltstack.com/apt/debian/8/amd64/${SALT_VERSION} jessie main" > /etc/apt/sources.list.d/saltstack.list && \
apt-get update && \
apt-get install -y salt-minion
RUN mkdir -p /srv/salt && \
FROM debian:jessie
ARG SALT_VERSION
RUN apt-key adv --keyserver ha.pool.sks-keyservers.net --recv 0E08A149DE57BFBE && \
echo "deb http://repo.saltstack.com/apt/debian/8/amd64/${SALT_VERSION} jessie main" > /etc/apt/sources.list.d/saltstack.list && \
apt-get update && \
apt-get install -y salt-minion
RUN mkdir -p /srv/salt && \
package main
import (
"errors"
"fmt"
"log"
"net"
"net/http"
)