statsd-elasticsearch-backend
statsd-elasticsearch-backend copied to clipboard
Support for the Set operation
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() }