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.
17 lines
421 B
17 lines
421 B
syntax = "proto3"; |
|
|
|
package envoy.data.tap.v2alpha; |
|
option java_package = "io.envoyproxy.envoy.data.tap.v2alpha"; |
|
|
|
import "envoy/api/v2/core/base.proto"; |
|
|
|
// [#protodoc-title: HTTP tap data] |
|
|
|
// A fully buffered HTTP trace message. |
|
message HttpBufferedTrace { |
|
// Request headers. |
|
repeated api.v2.core.HeaderValue request_headers = 2; |
|
|
|
// Response headers. |
|
repeated api.v2.core.HeaderValue response_headers = 3; |
|
}
|
|
|