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.
21 lines
723 B
21 lines
723 B
syntax = "proto3"; |
|
|
|
package envoy.config.accesslog.v2; |
|
option go_package = "v2"; |
|
|
|
import "validate/validate.proto"; |
|
|
|
// [#protodoc-title: File access log] |
|
|
|
// Custom configuration for an :ref:`AccessLog <envoy_api_msg_config.filter.accesslog.v2.AccessLog>` |
|
// that writes log entries directly to a file. Configures the built-in *envoy.file_access_log* |
|
// AccessLog. |
|
message FileAccessLog { |
|
// A path to a local file to which to write the access log entries. |
|
string path = 1 [(validate.rules).string.min_bytes = 1]; |
|
|
|
// Access log format. Envoy supports :ref:`custom access log formats |
|
// <config_access_log_format>` as well as a :ref:`default format |
|
// <config_access_log_default_format>`. |
|
string format = 2; |
|
}
|
|
|