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 74c8e4a commit 2a28176Copy full SHA for 2a28176
pkg/monitortests/testframework/highcputestanalyzer/monitortest.go
@@ -86,9 +86,9 @@ func findE2EIntervalsOverlappingHighCPU(intervals monitorapi.Intervals) []map[st
86
interval.Message.Reason == monitorapi.IntervalReason("HighCPUUsage")
87
})
88
89
- // Filter for E2E test intervals
+ // Filter for E2E test intervals, but the summary ones, not the started/finished variants
90
e2eTestIntervals := intervals.Filter(func(interval monitorapi.Interval) bool {
91
- return interval.Source == monitorapi.SourceE2ETest
+ return interval.Source == monitorapi.SourceE2ETest && interval.Display
92
93
94
// Find E2E tests that overlap with alert intervals
0 commit comments