All Downloads are FREE. Search and download functionalities are using the official Maven repository.

envoy.config.transport_socket.tap.v2alpha.tap.proto Maven / Gradle / Ivy

There is a newer version: 1.0.46
Show newest version
syntax = "proto3";

package envoy.config.transport_socket.tap.v2alpha;

option java_outer_classname = "TapProto";
option java_multiple_files = true;
option java_package = "io.envoyproxy.envoy.config.transport_socket.tap.v2alpha";

// [#protodoc-title: Tap]

import "envoy/config/common/tap/v2alpha/common.proto";
import "envoy/api/v2/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.v2alpha.CommonExtensionConfig common_config = 1
      [(validate.rules).message.required = true];

  // The underlying transport socket being wrapped.
  api.v2.core.TransportSocket transport_socket = 2 [(validate.rules).message.required = true];
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy