erlstatsd is a client implementation of Etsy's brilliant statsd server -- a front end/proxy for the Graphite stats collection and graphing server.
Build it
$ ./rebar compile
Run it
$ erl -pa ebin
1> application:start(erlstatsd).
ok
2> erlstatsd:increment("test.foo.bar", 1, 0.05).
ok
3> erlstatsd:timing("test.foo.proctime", 51, 0.5).
ok
This README file was shamelessly ripped from Steve Ivy's pystatsd project.
Thanks to Louis-Philippe Gauthier for refactoring and sample rate support!