diff --git a/pkg/metricstore/healthcheck.go b/pkg/metricstore/healthcheck.go index 9527d4a2..ed1ff38e 100644 --- a/pkg/metricstore/healthcheck.go +++ b/pkg/metricstore/healthcheck.go @@ -152,7 +152,10 @@ func (m *MemoryStore) HealthCheck(cluster string, healthyCount := len(expectedMetrics) - degradedCount - missingCount if degradedCount > 0 { - cclog.ComponentDebug("metricstore", "HealthCheck: node", hostname, "degraded metrics:", degradedList) + cclog.ComponentInfo("metricstore", "HealthCheck: node ", hostname, "degraded metrics:", degradedList) + } + if missingCount > 0 { + cclog.ComponentInfo("metricstore", "HealthCheck: node ", hostname, "missing metrics:", missingList) } switch {