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 8bcaa9b commit 2a4ae69Copy full SHA for 2a4ae69
internal/testrunner/runners/system/tester.go
@@ -120,6 +120,16 @@ var (
120
regexp.MustCompile(`Component state changed .* \(HEALTHY->DEGRADED\): Degraded: pid .* missed .* check-in`),
121
},
122
123
+ {
124
+ // HTTPJSON template error.
125
+ includes: regexp.MustCompile(`^error processing response: template: :\d+:\d+: executing "" at <`),
126
+ excludes: []*regexp.Regexp{
127
+ // Unfortunate: https://github.com/elastic/beats/issues/34544
128
+ // See also https://github.com/elastic/beats/pull/39929.
129
+ regexp.MustCompile(`: map has no entry for key`),
130
+ regexp.MustCompile(`: can't evaluate field (?:[^ ]+) in type interface`),
131
+ },
132
133
134
135
}
0 commit comments