Skip to content

Instantly share code, notes, and snippets.

connor
brendan
jj
dave-lyons
james
vlad
brian
beng
ben-marini
sanjay
@ejholmes
ejholmes / docker_maid.sh
Created October 27, 2015 18:32
Docker maid
#!/bin/sh
log() {
echo "=== [`date`] $*" >> /var/log/docker_maid.log
}
[ ! -S /var/run/docker.sock ] && (echo "Error: /var/run/docker.sock not available, bailing."; exit 1)
CONTAINERS=$(docker ps -q -a --filter "status=exited")
if [ ! -z "$CONTAINERS" ]
@ejholmes
ejholmes / gist:c56a15b7d760389f041c
Created May 22, 2015 17:00
Dockerstats log adapter with l2met template
sample#Network.RxDropped=0 source=furious_mclean
sample#Network.RxBytes=648 source=furious_mclean
sample#Network.RxErrors=0 source=furious_mclean
sample#Network.TxPackets=8 source=furious_mclean
sample#Network.RxPackets=8 source=furious_mclean
sample#Network.TxErrors=0 source=furious_mclean
sample#Network.TxBytes=648 source=furious_mclean
sample#MemoryStats.Stats.TotalPgmafault=0 source=furious_mclean
sample#MemoryStats.Stats.Cache=12288 source=furious_mclean
sample#MemoryStats.Stats.MappedFile=0 source=furious_mclean
@ejholmes
ejholmes / gist:458a4078d49af61a4fe5
Last active August 29, 2015 14:21
Labels structured data
SYSLOG_STRUCTURED_DATA="{{ range $label, $value := .Container.Config.Labels }}{{ $label }}={{ $value }} {{ end }}image={{ .Container.Image }}"
@ejholmes
ejholmes / keybase.md
Last active August 29, 2015 14:16
keybase.md

Keybase proof

I hereby claim:

  • I am ejholmes on github.
  • I am ejholmes (https://keybase.io/ejholmes) on keybase.
  • I have a public key whose fingerprint is A8C6 B8A3 97E9 C5A0 5D7E 57A4 1D75 1DA4 B327 1752

To claim this, I am signing this object:

@ejholmes
ejholmes / gist:18778266759924a1e81e
Created October 6, 2014 16:59
Go test assertion
if got, want := out, tt.out; got != want {
t.Errorf("Thing => %v; want %v", got, want)
}
@ejholmes
ejholmes / gist:6803f4dff0aa8b764b3a
Last active August 29, 2015 14:06
WLM Breakdown
select btrim(c.condition) as "wlm group", s.state, count(distinct s.query) from stv_wlm_query_state s
inner join stv_wlm_classification_config c on s.service_class = c.action_service_class
group by "wlm group", s.state;
input {
tcp {
port => 1514
type => "syslog"
tags => ["input_heroku_syslog"]
}
}
output {
stdout {
@ejholmes
ejholmes / gist:a70bd4d64fba2a096154
Last active August 29, 2015 14:04
Go best practices, tips and guidelines

Environment

  • Use Godep to manage dependencies and commit the Godeps/_workspace/src directory so the build will always compile it when you come back six months later.

Style

  • Read through https://code.google.com/p/go-wiki/wiki/CodeReviewComments. Don't be clever, just follow the community guidelines.
  • Install goimports. Have it run automatically when you save a file in your editor.
  • Install go vet. Also have it run when you save a file. It will catch a lot of typos in comments.
etcd -peer-addr 10.0.1.60:7001 -addr 10.0.1.60:4001 -name foo