|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package envoy.extensions.access_loggers.stream.v3;
|
|
|
|
|
|
|
|
import "envoy/config/core/v3/substitution_format_string.proto";
|
|
|
|
|
|
|
|
import "udpa/annotations/status.proto";
|
|
|
|
import "validate/validate.proto";
|
|
|
|
|
|
|
|
option java_package = "io.envoyproxy.envoy.extensions.access_loggers.stream.v3";
|
|
|
|
option java_outer_classname = "StreamProto";
|
|
|
|
option java_multiple_files = true;
|
|
|
|
option (udpa.annotations.file_status).package_version_status = ACTIVE;
|
|
|
|
|
|
|
|
// [#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 {
|
|
|
|
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.v3.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 {
|
|
|
|
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.v3.SubstitutionFormatString log_format = 1
|
|
|
|
[(validate.rules).message = {required: true}];
|
|
|
|
}
|
|
|
|
}
|