Metriks DogStatsd Reporter
This reporter is used with the metriks gem to enable reporting metriks statistics to DogStatsd.
Installing
To install, add this to your Gemfile
:
gem 'metriks-dogstatsd'
and re-run bundle
.
Usage
Initialize the DogStatsd reporter class:
reporter = Metriks::Reporter::DogStatsd.new 'localhost', 8125
reporter.start
Use metriks as normal:
counter = Metriks.counter('calls')
counter.increment