.. _envoy_v3_api_file_envoy/config/tap/v3/common.proto: Common tap configuration ======================== .. _envoy_v3_api_msg_config.tap.v3.TapConfig: config.tap.v3.TapConfig ----------------------- `[config.tap.v3.TapConfig proto] `_ Tap configuration. .. code-block:: json { "match_config": "{...}", "output_config": "{...}" } .. _envoy_v3_api_field_config.tap.v3.TapConfig.match_config: match_config (:ref:`config.tap.v3.MatchPredicate `, *REQUIRED*) The match configuration. If the configuration matches the data source being tapped, a tap will occur, with the result written to the configured output. .. _envoy_v3_api_field_config.tap.v3.TapConfig.output_config: output_config (:ref:`config.tap.v3.OutputConfig `, *REQUIRED*) The tap output configuration. If a match configuration matches a data source being tapped, a tap will occur and the data will be written to the configured output. .. _envoy_v3_api_msg_config.tap.v3.MatchPredicate: config.tap.v3.MatchPredicate ---------------------------- `[config.tap.v3.MatchPredicate proto] `_ Tap match configuration. This is a recursive structure which allows complex nested match configurations to be built using various logical operators. .. code-block:: json { "or_match": "{...}", "and_match": "{...}", "not_match": "{...}", "any_match": "...", "http_request_headers_match": "{...}", "http_request_trailers_match": "{...}", "http_response_headers_match": "{...}", "http_response_trailers_match": "{...}" } .. _envoy_v3_api_field_config.tap.v3.MatchPredicate.or_match: or_match (:ref:`config.tap.v3.MatchPredicate.MatchSet `) A set that describes a logical OR. If any member of the set matches, the match configuration matches. Precisely one of :ref:`or_match `, :ref:`and_match `, :ref:`not_match `, :ref:`any_match `, :ref:`http_request_headers_match `, :ref:`http_request_trailers_match `, :ref:`http_response_headers_match `, :ref:`http_response_trailers_match ` must be set. .. _envoy_v3_api_field_config.tap.v3.MatchPredicate.and_match: and_match (:ref:`config.tap.v3.MatchPredicate.MatchSet `) A set that describes a logical AND. If all members of the set match, the match configuration matches. Precisely one of :ref:`or_match `, :ref:`and_match `, :ref:`not_match `, :ref:`any_match `, :ref:`http_request_headers_match `, :ref:`http_request_trailers_match `, :ref:`http_response_headers_match `, :ref:`http_response_trailers_match ` must be set. .. _envoy_v3_api_field_config.tap.v3.MatchPredicate.not_match: not_match (:ref:`config.tap.v3.MatchPredicate `) A negation match. The match configuration will match if the negated match condition matches. Precisely one of :ref:`or_match `, :ref:`and_match `, :ref:`not_match `, :ref:`any_match `, :ref:`http_request_headers_match `, :ref:`http_request_trailers_match `, :ref:`http_response_headers_match `, :ref:`http_response_trailers_match ` must be set. .. _envoy_v3_api_field_config.tap.v3.MatchPredicate.any_match: any_match (`bool `_) The match configuration will always match. Precisely one of :ref:`or_match `, :ref:`and_match `, :ref:`not_match `, :ref:`any_match `, :ref:`http_request_headers_match `, :ref:`http_request_trailers_match `, :ref:`http_response_headers_match `, :ref:`http_response_trailers_match ` must be set. .. _envoy_v3_api_field_config.tap.v3.MatchPredicate.http_request_headers_match: http_request_headers_match (:ref:`config.tap.v3.HttpHeadersMatch `) HTTP request headers match configuration. Precisely one of :ref:`or_match `, :ref:`and_match `, :ref:`not_match `, :ref:`any_match `, :ref:`http_request_headers_match `, :ref:`http_request_trailers_match `, :ref:`http_response_headers_match `, :ref:`http_response_trailers_match ` must be set. .. _envoy_v3_api_field_config.tap.v3.MatchPredicate.http_request_trailers_match: http_request_trailers_match (:ref:`config.tap.v3.HttpHeadersMatch `) HTTP request trailers match configuration. Precisely one of :ref:`or_match `, :ref:`and_match `, :ref:`not_match `, :ref:`any_match `, :ref:`http_request_headers_match `, :ref:`http_request_trailers_match `, :ref:`http_response_headers_match `, :ref:`http_response_trailers_match ` must be set. .. _envoy_v3_api_field_config.tap.v3.MatchPredicate.http_response_headers_match: http_response_headers_match (:ref:`config.tap.v3.HttpHeadersMatch `) HTTP response headers match configuration. Precisely one of :ref:`or_match `, :ref:`and_match `, :ref:`not_match `, :ref:`any_match `, :ref:`http_request_headers_match `, :ref:`http_request_trailers_match `, :ref:`http_response_headers_match `, :ref:`http_response_trailers_match ` must be set. .. _envoy_v3_api_field_config.tap.v3.MatchPredicate.http_response_trailers_match: http_response_trailers_match (:ref:`config.tap.v3.HttpHeadersMatch `) HTTP response trailers match configuration. Precisely one of :ref:`or_match `, :ref:`and_match `, :ref:`not_match `, :ref:`any_match `, :ref:`http_request_headers_match `, :ref:`http_request_trailers_match `, :ref:`http_response_headers_match `, :ref:`http_response_trailers_match ` must be set. .. _envoy_v3_api_msg_config.tap.v3.MatchPredicate.MatchSet: config.tap.v3.MatchPredicate.MatchSet ------------------------------------- `[config.tap.v3.MatchPredicate.MatchSet proto] `_ A set of match configurations used for logical operations. .. code-block:: json { "rules": [] } .. _envoy_v3_api_field_config.tap.v3.MatchPredicate.MatchSet.rules: rules (:ref:`config.tap.v3.MatchPredicate `, *REQUIRED*) The list of rules that make up the set. .. _envoy_v3_api_msg_config.tap.v3.HttpHeadersMatch: config.tap.v3.HttpHeadersMatch ------------------------------ `[config.tap.v3.HttpHeadersMatch proto] `_ HTTP headers match configuration. .. code-block:: json { "headers": [] } .. _envoy_v3_api_field_config.tap.v3.HttpHeadersMatch.headers: headers (:ref:`config.route.v3.HeaderMatcher `) HTTP headers to match. .. _envoy_v3_api_msg_config.tap.v3.OutputConfig: config.tap.v3.OutputConfig -------------------------- `[config.tap.v3.OutputConfig proto] `_ Tap output configuration. .. code-block:: json { "sinks": [], "max_buffered_rx_bytes": "{...}", "max_buffered_tx_bytes": "{...}", "streaming": "..." } .. _envoy_v3_api_field_config.tap.v3.OutputConfig.sinks: sinks (:ref:`config.tap.v3.OutputSink `, *REQUIRED*) Output sinks for tap data. Currently a single sink is allowed in the list. Once multiple sink types are supported this constraint will be relaxed. .. _envoy_v3_api_field_config.tap.v3.OutputConfig.max_buffered_rx_bytes: max_buffered_rx_bytes (`UInt32Value `_) For buffered tapping, the maximum amount of received body that will be buffered prior to truncation. If truncation occurs, the :ref:`truncated ` field will be set. If not specified, the default is 1KiB. .. _envoy_v3_api_field_config.tap.v3.OutputConfig.max_buffered_tx_bytes: max_buffered_tx_bytes (`UInt32Value `_) For buffered tapping, the maximum amount of transmitted body that will be buffered prior to truncation. If truncation occurs, the :ref:`truncated ` field will be set. If not specified, the default is 1KiB. .. _envoy_v3_api_field_config.tap.v3.OutputConfig.streaming: streaming (`bool `_) Indicates whether taps produce a single buffered message per tap, or multiple streamed messages per tap in the emitted :ref:`TraceWrapper ` messages. Note that streamed tapping does not mean that no buffering takes place. Buffering may be required if data is processed before a match can be determined. See the HTTP tap filter :ref:`streaming ` documentation for more information. .. _envoy_v3_api_msg_config.tap.v3.OutputSink: config.tap.v3.OutputSink ------------------------ `[config.tap.v3.OutputSink proto] `_ Tap output sink configuration. .. code-block:: json { "format": "...", "streaming_admin": "{...}", "file_per_tap": "{...}" } .. _envoy_v3_api_field_config.tap.v3.OutputSink.format: format (:ref:`config.tap.v3.OutputSink.Format `) Sink output format. .. _envoy_v3_api_field_config.tap.v3.OutputSink.streaming_admin: streaming_admin (:ref:`config.tap.v3.StreamingAdminSink `) Tap output will be streamed out the :http:post:`/tap` admin endpoint. .. attention:: It is only allowed to specify the streaming admin output sink if the tap is being configured from the :http:post:`/tap` admin endpoint. Thus, if an extension has been configured to receive tap configuration from some other source (e.g., static file, XDS, etc.) configuring the streaming admin output type will fail. Precisely one of :ref:`streaming_admin `, :ref:`file_per_tap ` must be set. .. _envoy_v3_api_field_config.tap.v3.OutputSink.file_per_tap: file_per_tap (:ref:`config.tap.v3.FilePerTapSink `) Tap output will be written to a file per tap sink. Precisely one of :ref:`streaming_admin `, :ref:`file_per_tap ` must be set. .. _envoy_v3_api_enum_config.tap.v3.OutputSink.Format: Enum config.tap.v3.OutputSink.Format ------------------------------------ `[config.tap.v3.OutputSink.Format proto] `_ Output format. All output is in the form of one or more :ref:`TraceWrapper ` messages. This enumeration indicates how those messages are written. Note that not all sinks support all output formats. See individual sink documentation for more information. .. _envoy_v3_api_enum_value_config.tap.v3.OutputSink.Format.JSON_BODY_AS_BYTES: JSON_BODY_AS_BYTES *(DEFAULT)* ⁣Each message will be written as JSON. Any :ref:`body ` data will be present in the :ref:`as_bytes ` field. This means that body data will be base64 encoded as per the `proto3 JSON mappings `_. .. _envoy_v3_api_enum_value_config.tap.v3.OutputSink.Format.JSON_BODY_AS_STRING: JSON_BODY_AS_STRING ⁣Each message will be written as JSON. Any :ref:`body ` data will be present in the :ref:`as_string ` field. This means that body data will be string encoded as per the `proto3 JSON mappings `_. This format type is useful when it is known that that body is human readable (e.g., JSON over HTTP) and the user wishes to view it directly without being forced to base64 decode the body. .. _envoy_v3_api_enum_value_config.tap.v3.OutputSink.Format.PROTO_BINARY: PROTO_BINARY ⁣Binary proto format. Note that binary proto is not self-delimiting. If a sink writes multiple binary messages without any length information the data stream will not be useful. However, for certain sinks that are self-delimiting (e.g., one message per file) this output format makes consumption simpler. .. _envoy_v3_api_enum_value_config.tap.v3.OutputSink.Format.PROTO_BINARY_LENGTH_DELIMITED: PROTO_BINARY_LENGTH_DELIMITED ⁣Messages are written as a sequence tuples, where each tuple is the message length encoded as a `protobuf 32-bit varint `_ followed by the binary message. The messages can be read back using the language specific protobuf coded stream implementation to obtain the message length and the message. .. _envoy_v3_api_enum_value_config.tap.v3.OutputSink.Format.PROTO_TEXT: PROTO_TEXT ⁣Text proto format. .. _envoy_v3_api_msg_config.tap.v3.StreamingAdminSink: config.tap.v3.StreamingAdminSink -------------------------------- `[config.tap.v3.StreamingAdminSink proto] `_ Streaming admin sink configuration. .. code-block:: json {} .. _envoy_v3_api_msg_config.tap.v3.FilePerTapSink: config.tap.v3.FilePerTapSink ---------------------------- `[config.tap.v3.FilePerTapSink proto] `_ The file per tap sink outputs a discrete file for every tapped stream. .. code-block:: json { "path_prefix": "..." } .. _envoy_v3_api_field_config.tap.v3.FilePerTapSink.path_prefix: path_prefix (`string `_, *REQUIRED*) Path prefix. The output file will be of the form _.pb, where is an identifier distinguishing the recorded trace for stream instances (the Envoy connection ID, HTTP stream ID, etc.).