1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// @generated
// This file is @generated by prost-build.
/// \[#not-implemented-hide:\] Stream message for the Tap API. Envoy will open a stream to the server
/// and stream taps without ever expecting a response.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StreamTapsRequest {
/// Identifier data effectively is a structured metadata. As a performance optimization this will
/// only be sent in the first message on the stream.
#[prost(message, optional, tag="1")]
pub identifier: ::core::option::Option<stream_taps_request::Identifier>,
/// The trace id. this can be used to merge together a streaming trace. Note that the trace_id
/// is not guaranteed to be spatially or temporally unique.
#[prost(uint64, tag="2")]
pub trace_id: u64,
/// The trace data.
#[prost(message, optional, tag="3")]
pub trace: ::core::option::Option<super::super::super::data::tap::v3::TraceWrapper>,
}
/// Nested message and enum types in `StreamTapsRequest`.
pub mod stream_taps_request {
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Identifier {
/// The node sending taps over the stream.
#[prost(message, optional, tag="1")]
pub node: ::core::option::Option<super::super::super::super::config::core::v3::Node>,
/// The opaque identifier that was set in the :ref:`output config
/// <envoy_v3_api_field_config.tap.v3.StreamingGrpcSink.tap_id>`.
#[prost(string, tag="2")]
pub tap_id: ::prost::alloc::string::String,
}
}
/// \[#not-implemented-hide:\]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct StreamTapsResponse {
}
include!("envoy.service.tap.v3.tonic.rs");
// @@protoc_insertion_point(module)
|