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.
26 lines
911 B
26 lines
911 B
5 years ago
|
syntax = "proto3";
|
||
|
|
||
|
package envoy.config.transport_socket.tap.v3alpha;
|
||
|
|
||
|
option java_outer_classname = "TapProto";
|
||
|
option java_multiple_files = true;
|
||
|
option java_package = "io.envoyproxy.envoy.config.transport_socket.tap.v3alpha";
|
||
|
|
||
|
// [#protodoc-title: Tap]
|
||
|
|
||
|
import "envoy/config/common/tap/v3alpha/common.proto";
|
||
|
import "envoy/api/v3alpha/core/base.proto";
|
||
|
|
||
|
import "validate/validate.proto";
|
||
|
|
||
|
// Configuration for tap transport socket. This wraps another transport socket, providing the
|
||
|
// ability to interpose and record in plain text any traffic that is surfaced to Envoy.
|
||
|
message Tap {
|
||
|
// Common configuration for the tap transport socket.
|
||
|
common.tap.v3alpha.CommonExtensionConfig common_config = 1
|
||
|
[(validate.rules).message.required = true];
|
||
|
|
||
|
// The underlying transport socket being wrapped.
|
||
|
api.v3alpha.core.TransportSocket transport_socket = 2 [(validate.rules).message.required = true];
|
||
|
}
|