statsd-elasticsearch-backend icon indicating copy to clipboard operation
statsd-elasticsearch-backend copied to clipboard

Support for the Set operation

Open ethanjcohen opened this issue 8 years ago • 0 comments

This looks to be a very standard operation for statsd.

The values in metrics.sets are not sent to ES. Adding this code worked for me: for (key in metrics.sets) { numStats += fm.gauges(key, metrics.sets[key].size(), ts, array_gauges); metrics.sets[key].clear() }

ethanjcohen avatar Aug 20 '16 16:08 ethanjcohen