Ruby and Statsd
Graph everything
https://github.com/reinh/statsd
require 'statsd'
statsd = Statsd.new('localhost', 9125)
statsd.namespace="some.namespace"
#Sending data
statsd.increment 'foo.bar'
https://github.com/reinh/statsd
require 'statsd'
statsd = Statsd.new('localhost', 9125)
statsd.namespace="some.namespace"
#Sending data
statsd.increment 'foo.bar'