erlstatsd icon indicating copy to clipboard operation
erlstatsd copied to clipboard

Erlang client for StatsD

erlstatsd

erlstatsd is a client implementation of Etsy's brilliant statsd server -- a front end/proxy for the Graphite stats collection and graphing server.

Usage

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

Credits

This README file was shamelessly ripped from Steve Ivy's pystatsd project.

Thanks to Louis-Philippe Gauthier for refactoring and sample rate support!