Skip to content

Commit

Permalink
feat(access-log): omit empty fields in Envoy JSON based logs (#6077)
Browse files Browse the repository at this point in the history
Signed-off-by: Abbas Gheydi <[email protected]>
Co-authored-by: Tero Saarni <[email protected]>
  • Loading branch information
abbas-gheydi and tsaarni authored Jan 23, 2024
1 parent 3fa8ec4 commit 5f22aeb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelogs/unreleased/6077-abbas-gheydi-small.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Access Log: Contour excludes empty fields in Envoy JSON based access logs by default.
3 changes: 2 additions & 1 deletion internal/envoy/v3/accesslog.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ func FileAccessLogJSON(path string, fields contour_api_v1alpha1.AccessLogJSONFie
Format: &envoy_config_core_v3.SubstitutionFormatString_JsonFormat{
JsonFormat: jsonformat,
},
Formatters: extensionConfig(extensions),
OmitEmptyValues: true,
Formatters: extensionConfig(extensions),
},
},
}),
Expand Down
3 changes: 3 additions & 0 deletions internal/envoy/v3/accesslog_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ func TestJSONFileAccessLog(t *testing.T) {
Path: "/dev/stdout",
AccessLogFormat: &envoy_file_v3.FileAccessLog_LogFormat{
LogFormat: &envoy_config_core_v3.SubstitutionFormatString{
OmitEmptyValues: true,
Format: &envoy_config_core_v3.SubstitutionFormatString_JsonFormat{
JsonFormat: &structpb.Struct{
Fields: map[string]*structpb.Value{
Expand Down Expand Up @@ -153,6 +154,7 @@ func TestJSONFileAccessLog(t *testing.T) {
Path: "/dev/stdout",
AccessLogFormat: &envoy_file_v3.FileAccessLog_LogFormat{
LogFormat: &envoy_config_core_v3.SubstitutionFormatString{
OmitEmptyValues: true,
Format: &envoy_config_core_v3.SubstitutionFormatString_JsonFormat{
JsonFormat: &structpb.Struct{
Fields: map[string]*structpb.Value{
Expand Down Expand Up @@ -244,6 +246,7 @@ func TestAccessLogLevel(t *testing.T) {
Path: "/dev/stdout",
AccessLogFormat: &envoy_file_v3.FileAccessLog_LogFormat{
LogFormat: &envoy_config_core_v3.SubstitutionFormatString{
OmitEmptyValues: true,
Format: &envoy_config_core_v3.SubstitutionFormatString_JsonFormat{
JsonFormat: &structpb.Struct{
Fields: map[string]*structpb.Value{},
Expand Down
4 changes: 4 additions & 0 deletions site/content/docs/main/config/access-logging.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ Note that the `DYNAMIC_METADATA` and `FILTER_STATE` Envoy logging operators are

See the [example config file][6] to see this used in context.

#### Omitting Logs with Empty Values

Contour automatically omits empty fields in Envoy JSON access logs, enhancing clarity and delivering more concise and relevant log outputs by default.

#### Sample Configuration File

Here is a sample config:
Expand Down

0 comments on commit 5f22aeb

Please sign in to comment.