bitly / statsdaemon

an implementation of Etsy's statsd in Go
The Unlicense
570 stars 131 forks source link

Add relative operations to gauges #38

Closed JamesCohen-awin closed 9 years ago

JamesCohen-awin commented 9 years ago

The etsy statsd implementation includes support for relative operations on gauges (see https://github.com/etsy/statsd/blob/master/docs/metric_types.md#gauges). I've attempted to duplicate this functionality.

I followed the statsd specs and retained the gauges as uint64 values.

This is my first attempt at coding in Go. Please be gentle!