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.
23 lines
851 B
23 lines
851 B
syntax = "proto3"; |
|
|
|
package envoy.extensions.access_loggers.wasm.v3; |
|
|
|
import "envoy/extensions/wasm/v3/wasm.proto"; |
|
|
|
import "udpa/annotations/status.proto"; |
|
|
|
option java_package = "io.envoyproxy.envoy.extensions.access_loggers.wasm.v3"; |
|
option java_outer_classname = "WasmProto"; |
|
option java_multiple_files = true; |
|
option go_package = "github.com/envoyproxy/go-control-plane/envoy/extensions/access_loggers/wasm/v3;wasmv3"; |
|
option (udpa.annotations.file_status).package_version_status = ACTIVE; |
|
|
|
// [#protodoc-title: Wasm access log] |
|
// [#extension: envoy.access_loggers.wasm] |
|
|
|
// Custom configuration for an :ref:`AccessLog <envoy_v3_api_msg_config.accesslog.v3.AccessLog>` |
|
// that calls into a WASM VM. Configures the built-in ``envoy.access_loggers.wasm`` |
|
// AccessLog. |
|
message WasmAccessLog { |
|
envoy.extensions.wasm.v3.PluginConfig config = 1; |
|
}
|
|
|