Skip to content

Commit

Permalink
feat(access-log): omit empty fields in Envoy JOSN based logs
Browse files Browse the repository at this point in the history
  • Loading branch information
abbas-gheydi committed Jan 19, 2024
1 parent 61b6fae commit fbb7589
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
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 now 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 fbb7589

Please sign in to comment.