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
558 B
26 lines
558 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 { |
|
// HTTP message wrapper. |
|
message Message { |
|
// Message headers. |
|
repeated api.v2.core.HeaderValue headers = 1; |
|
|
|
// Message trailers. |
|
repeated api.v2.core.HeaderValue trailers = 2; |
|
} |
|
|
|
// Request message. |
|
Message request = 1; |
|
|
|
// Response message. |
|
Message response = 2; |
|
}
|
|
|