We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce63986 commit 97d8591Copy full SHA for 97d8591
common/monitoring/monitoring.go
@@ -8,6 +8,7 @@ import (
8
"time"
9
10
"github.com/AliceO2Group/Control/common/logger"
11
+ "github.com/AliceO2Group/Control/common/logger/infologger"
12
"github.com/sirupsen/logrus"
13
)
14
@@ -67,7 +68,7 @@ func eventLoop() {
67
68
if len(metrics) < metricsLimit {
69
metrics = append(metrics, metric)
70
} else {
- log.Warn("too many metrics waiting to be scraped. Are you sure that metrics scraping is running?")
71
+ log.WithField("level", infologger.IL_Devel).Warn("too many metrics waiting to be scraped. Are you sure that metrics scraping is running?")
72
}
73
74
case <-endChannel:
0 commit comments