From c6235cb6fbd80889fea4e2d5e420a2bd21c2f778 Mon Sep 17 00:00:00 2001 From: Mitanshu Mittal Date: Sun, 16 Mar 2025 17:11:54 +0530 Subject: [PATCH] Update collector.go Signed-off-by: Mitanshu Mittal --- collector/collector.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collector/collector.go b/collector/collector.go index b919016d..f349c6ff 100644 --- a/collector/collector.go +++ b/collector/collector.go @@ -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) } }