Verifying that +lanyonm is my blockchain ID. https://onename.com/lanyonm
I hereby claim:
- I am lanyonm on github.
- I am lanyonm (https://keybase.io/lanyonm) on keybase.
- I have a public key whose fingerprint is FD54 B310 13BB 5C2F 3BBC 7703 B76C 1A71 AACD 7709
To claim this, I am signing this object:
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
{ | |
"title": "Apache and Tomcat Logs", | |
"services": { | |
"query": { | |
"list": { | |
"0": { | |
"query": "apache !tomcat !static", | |
"alias": "", | |
"color": "#7EB26D", | |
"id": 0, |
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
input { | |
file { | |
type => "nginx-access" | |
path => ["/var/log/nginx/access.log"] | |
} | |
} | |
filter { | |
if [type] == "nginx-access" { | |
grok { | |
# https://github.com/logstash/logstash/tree/master/patterns/grok-patterns |
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
site "https://supermarket.getchef.com/api/v1" | |
cookbook "apt" | |
cookbook "graphite", "0.4.8" | |
cookbook "vim" | |
cookbook "statsd", | |
:git => "https://github.com/hectcastro/chef-statsd", | |
:ref => "v1.1.3" |
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/env python | |
import serial, time, datetime, sys | |
from xbee import xbee | |
from socket import socket | |
import sensorhistory | |
LOGFILENAME = "powerdatalog.csv" # where we will store our flatfile data | |
DEFAULT_CARBON_SERVER = 'localhost' | |
DEFAULT_CARBON_PORT = 2003 |