Update collector.go

Signed-off-by: Mitanshu Mittal <mitanshu.sheo@gmail.com>
This commit is contained in:
Mitanshu Mittal 2025-03-16 17:11:54 +05:30 committed by GitHub
parent c2bb15b146
commit c6235cb6fb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -228,7 +228,7 @@ func sendMetricSafely(ch chan<- prometheus.Metric, metric prometheus.Metric, log
select {
case ch <- metric:
default:
logger.Warn("msg", "failed to send metric", "name", name)
logger.Info("msg", "failed to send metric", "name", name)
}
}