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 ruby | |
# | |
# OpenTSDB TCP handler | |
# === | |
# | |
# This handler sends metrics to a OpenTSDB server via | |
# TCP socket. | |
# | |
# Compatible checks should generate output in the format: | |
# metric.path.one timestamp value host=fqdn\n |
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
zk.avg_latency 3 1350496873 host=zk1 cluster=harmony | |
zk.min_latency 0 1350496873 host=zk1 cluster=harmony | |
zk.max_latency 2727 1350496873 host=zk1 cluster=harmony | |
zk.node_count 4962 1350496873 host=zk1 cluster=harmony | |
zk.outstanding 1 1350496873 host=zk1 cluster=harmony | |
zk.received 1545094053 1350496873 host=zk1 cluster=harmony | |
zk.sent 1545328416 1350496873 host=zk1 cluster=harmony |
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 | |
from optparse import OptionParser | |
from brod.zk import ZKConsumer | |
import time | |
import socket | |
import struct | |
import sys | |
import pickle | |
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 | |
from optparse import OptionParser | |
from brod.zk import * | |
import pickle | |
import struct | |
import socket | |
import sys | |
import time | |
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 | |
from optparse import OptionParser | |
from brod.zk import * | |
import pickle | |
import struct | |
import socket | |
import sys | |
import time | |
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 | |
# Sample | |
from jira.client import JIRA | |
from optparse import OptionParser | |
from pagerduty import * | |
import hashlib | |
import hipchat | |
import simplejson as json | |
import socket |
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 os | |
import sys | |
import configobj | |
import pwd | |
import grp | |
for path in [ | |
os.path.join('opt', 'diamond', 'lib'), |
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
# diamond - A system statistics collector for graphite | |
# | |
# Diamond is a daemon and toolset for gather system statistics | |
# and publishing them to graphite. | |
description "Diamond system statistics collector" | |
start on (local-filesystems and net-device-up IFACE!=lo) | |
stop on [!12345] |
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/python | |
import os | |
import sys | |
import configobj | |
import pwd | |
import grp | |
for path in [ | |
os.path.join('opt', 'diamond', 'lib'), |
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/python | |
import boto | |
import boto.utils | |
import subprocess | |
import logging | |
import re | |
import sys | |
import os | |
import psutil | |
import time |