Reduce noise in info log

This commit is contained in:
2026-03-04 15:14:35 +01:00
parent 75591eb034
commit 67a17b5306
3 changed files with 10 additions and 13 deletions

View File

@@ -166,10 +166,10 @@ func (m *MemoryStore) HealthCheck(cluster string,
healthyCount := len(expectedMetrics) - degradedCount - missingCount
if degradedCount > 0 {
cclog.ComponentInfo("metricstore", "HealthCheck: node ", hostname, "degraded metrics:", degradedList)
cclog.ComponentDebug("metricstore", "HealthCheck: node ", hostname, "degraded metrics:", degradedList)
}
if missingCount > 0 {
cclog.ComponentInfo("metricstore", "HealthCheck: node ", hostname, "missing metrics:", missingList)
cclog.ComponentDebug("metricstore", "HealthCheck: node ", hostname, "missing metrics:", missingList)
}
var state schema.MonitoringState