Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[global] | |
direct=1 | |
runtime=30m | |
group_reporting | |
time_based | |
[randread] | |
rw=randread | |
size=1g | |
bs=4k |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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 <[email protected]> | |
[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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 && \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 && \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"errors" | |
"fmt" | |
"log" | |
"net" | |
"net/http" | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"beans" : [ { | |
"name" : "Hadoop:service=HBase,name=Master,sub=Balancer", | |
"modelerType" : "Master,sub=Balancer", | |
"tag.Context" : "master", | |
"tag.Hostname" : "dev", | |
"miscInvocationCount" : 2, | |
"BalancerCluster_num_ops" : 0, | |
"BalancerCluster_min" : 0, | |
"BalancerCluster_max" : 0, |