Skip to content

Commit

Permalink
Merge pull request #3433 from renuka-fernando/choreo-remove_health_logs
Browse files Browse the repository at this point in the history
Update host regex to filter kube probe logs
  • Loading branch information
renuka-fernando authored Sep 6, 2023
2 parents 31491ce + 1341545 commit 017d338
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adapter/internal/oasparser/envoyconf/access_loggers.go
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ func getAccessLogFilterConfig() *config_access_logv3.AccessLogFilter {
Name: ":authority",
HeaderMatchSpecifier: &routev3.HeaderMatcher_SafeRegexMatch{
SafeRegexMatch: &matcherv3.RegexMatcher{
Regex: fmt.Sprintf("^%s(:\\d+)$", conf.Envoy.SystemHost),
Regex: fmt.Sprintf("^%s(:\\d+)?$", conf.Envoy.SystemHost),
},
},
InvertMatch: true,
Expand Down

0 comments on commit 017d338

Please sign in to comment.