From 90d65a10afea9713730d1d93998db01376523c3b Mon Sep 17 00:00:00 2001 From: zirain Date: Wed, 31 Jul 2024 22:50:45 +0800 Subject: [PATCH] lint Signed-off-by: zirain --- src/prometheusstats/prometheus_sink.go | 1 - 1 file changed, 1 deletion(-) diff --git a/src/prometheusstats/prometheus_sink.go b/src/prometheusstats/prometheus_sink.go index ea6f9e4e4..55fe30838 100644 --- a/src/prometheusstats/prometheus_sink.go +++ b/src/prometheusstats/prometheus_sink.go @@ -99,7 +99,6 @@ func (s *prometheusSink) FlushCounter(name string, value uint64) { counter := s.counters[metricName] counter.WithLabelValues(labelValues...).Add(float64(value)) } - } func (s *prometheusSink) FlushGauge(name string, value uint64) {