metrics/influxdb: don't push empty histograms, no measurement != 0

pull/22590/head
Péter Szilágyi 4 years ago
parent cae6b5527e
commit 62379f02c6
No known key found for this signature in database
GPG Key ID: E9AE538CEDF8293D
  1. 3
      metrics/influxdb/influxdb.go

@ -162,6 +162,8 @@ func (r *reporter) send() error {
})
case metrics.Histogram:
ms := metric.Snapshot()
if ms.Count() > 0 {
ps := ms.Percentiles([]float64{0.5, 0.75, 0.95, 0.99, 0.999, 0.9999})
pts = append(pts, client.Point{
Measurement: fmt.Sprintf("%s%s.histogram", namespace, name),
@ -182,6 +184,7 @@ func (r *reporter) send() error {
},
Time: now,
})
}
case metrics.Meter:
ms := metric.Snapshot()
pts = append(pts, client.Point{

Loading…
Cancel
Save