Skip to content

Instantly share code, notes, and snippets.

@simonvc
Last active December 16, 2015 03:39
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simonvc/5371543 to your computer and use it in GitHub Desktop.
Save simonvc/5371543 to your computer and use it in GitHub Desktop.
This little recipe will pump your riak stats into hosted graphite. For more information see hostedgraphite.com @simonvc
import json
from urllib2 import urlopen
import socket
from time import sleep
UDP_ADDRESS = "carbon.hostedgraphite.com"
UDP_PORT = 2003
RIAK_STATS_URL='http://localhost:11098/stats'
HG_API_KEY='Your Api Key from HostedGraphite.com'
stats=json.load(urlopen(RIAK_STATS_URL))
nn = stats['nodename'].replace('.', '-')
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) # UDP# Internet
for k in stats:
if type(1) == type(stats[k]):
message='%s.%s.%s %s' % (HG_API_KEY,nn,k,stats[k])
sock.sendto(message, (UDP_ADDRESS, UDP_PORT))
#sleep(0.1)
print message
print 'Sent %s' % len(stats)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment