-
Notifications
You must be signed in to change notification settings - Fork 84
Open
Description
A quick look at the source code, it looks like recording gauge in pystatsd is not conforming to etsy's statsd: https://github.com/etsy/statsd/blob/master/docs/metric_types.md#gauges
def __record_gauge(self, key, value, rest):
ts = int(time.time())
self.gauges[key] = [ float(value), ts ]
According to the spec, gauge should take deltas rather than directly setting the values for the bucket. Am I missing something?
Metadata
Metadata
Assignees
Labels
No labels