You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.8 KiB
45 lines
1.8 KiB
syntax = "proto3"; |
|
|
|
package envoy.extensions.access_loggers.stream.v4alpha; |
|
|
|
import "envoy/config/core/v4alpha/substitution_format_string.proto"; |
|
|
|
import "udpa/annotations/status.proto"; |
|
import "udpa/annotations/versioning.proto"; |
|
import "validate/validate.proto"; |
|
|
|
option java_package = "io.envoyproxy.envoy.extensions.access_loggers.stream.v4alpha"; |
|
option java_outer_classname = "StreamProto"; |
|
option java_multiple_files = true; |
|
option (udpa.annotations.file_status).package_version_status = NEXT_MAJOR_VERSION_CANDIDATE; |
|
|
|
// [#protodoc-title: Standard Streams Access loggers] |
|
// [#extension: envoy.access_loggers.stream] |
|
|
|
// Custom configuration for an :ref:`AccessLog <envoy_v3_api_msg_config.accesslog.v3.AccessLog>` |
|
// that writes log entries directly to the operating system's standard output. |
|
message StdoutAccessLog { |
|
option (udpa.annotations.versioning).previous_message_type = |
|
"envoy.extensions.access_loggers.stream.v3.StdoutAccessLog"; |
|
|
|
oneof access_log_format { |
|
// Configuration to form access log data and format. |
|
// If not specified, use :ref:`default format <config_access_log_default_format>`. |
|
config.core.v4alpha.SubstitutionFormatString log_format = 1 |
|
[(validate.rules).message = {required: true}]; |
|
} |
|
} |
|
|
|
// Custom configuration for an :ref:`AccessLog <envoy_v3_api_msg_config.accesslog.v3.AccessLog>` |
|
// that writes log entries directly to the operating system's standard error. |
|
message StderrAccessLog { |
|
option (udpa.annotations.versioning).previous_message_type = |
|
"envoy.extensions.access_loggers.stream.v3.StderrAccessLog"; |
|
|
|
oneof access_log_format { |
|
// Configuration to form access log data and format. |
|
// If not specified, use :ref:`default format <config_access_log_default_format>`. |
|
config.core.v4alpha.SubstitutionFormatString log_format = 1 |
|
[(validate.rules).message = {required: true}]; |
|
} |
|
}
|
|
|