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 713410a commit f990e70Copy full SHA for f990e70
pkg/monitortestlibrary/historicaldata/alert_types.go
@@ -80,8 +80,8 @@ func NewAlertMatcherWithHistoricalData(data map[AlertDataKey]AlertStatisticalDat
80
81
func (b *AlertBestMatcher) bestMatch(key AlertDataKey) (AlertStatisticalData, string, error) {
82
exactMatchKey := key
83
- logrus.WithField("alertName", key.AlertName).Infof("searching for bestMatch for %+v", key.JobType)
84
- logrus.Infof("historicalData has %d entries", len(b.HistoricalData))
+ logrus.WithField("alertName", key.AlertName).WithField("entries", len(b.HistoricalData)).
+ Debugf("searching for best match for %+v", key.JobType)
85
86
if percentiles, ok := b.HistoricalData[exactMatchKey]; ok {
87
if percentiles.JobRuns > minJobRuns {
0 commit comments