Skip to content

Commit 017d338

Browse files
Merge pull request #3433 from renuka-fernando/choreo-remove_health_logs
Update host regex to filter kube probe logs
2 parents 31491ce + 1341545 commit 017d338

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adapter/internal/oasparser/envoyconf/access_loggers.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ func getAccessLogFilterConfig() *config_access_logv3.AccessLogFilter {
191191
Name: ":authority",
192192
HeaderMatchSpecifier: &routev3.HeaderMatcher_SafeRegexMatch{
193193
SafeRegexMatch: &matcherv3.RegexMatcher{
194-
Regex: fmt.Sprintf("^%s(:\\d+)$", conf.Envoy.SystemHost),
194+
Regex: fmt.Sprintf("^%s(:\\d+)?$", conf.Envoy.SystemHost),
195195
},
196196
},
197197
InvertMatch: true,

0 commit comments

Comments
 (0)