fix(metrics): remove debug code
All checks were successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
Tom Neuber 2024-11-28 14:28:51 +01:00
parent b9d010bf78
commit 8db4146ebe
Signed by: tom
GPG key ID: F17EFE4272D89FF6

View file

@ -192,7 +192,6 @@ func (m *Metrics) collectReqeustDataMetrics(ch chan<- prometheus.Metric, queue *
latency := float64(r.Latency.Microseconds())
sum += latency
count++
log.Println(latency)
for _, bound := range bucketBounds {
if latency <= bound {