opentelemetry_proto/proto/tonic/
opentelemetry.proto.tracez.v1.rs

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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
// This file is @generated by prost-build.
#[cfg_attr(feature = "with-schemars", derive(schemars::JsonSchema))]
#[cfg_attr(feature = "with-serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(feature = "with-serde", serde(rename_all = "camelCase"))]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TracezCounts {
    #[prost(string, tag = "1")]
    pub spanname: ::prost::alloc::string::String,
    /// \[A\]
    #[prost(uint32, repeated, tag = "2")]
    pub latency: ::prost::alloc::vec::Vec<u32>,
    #[prost(uint32, tag = "3")]
    pub running: u32,
    #[prost(uint32, tag = "4")]
    pub error: u32,
}
#[cfg_attr(feature = "with-schemars", derive(schemars::JsonSchema))]
#[cfg_attr(feature = "with-serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(feature = "with-serde", serde(rename_all = "camelCase"))]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct LatencyData {
    #[prost(bytes = "vec", tag = "1")]
    pub traceid: ::prost::alloc::vec::Vec<u8>,
    #[prost(bytes = "vec", tag = "2")]
    pub spanid: ::prost::alloc::vec::Vec<u8>,
    #[prost(bytes = "vec", tag = "3")]
    pub parentid: ::prost::alloc::vec::Vec<u8>,
    #[prost(fixed64, tag = "4")]
    pub starttime: u64,
    #[prost(fixed64, tag = "5")]
    pub endtime: u64,
    /// \[1\]
    #[prost(message, repeated, tag = "6")]
    pub attributes: ::prost::alloc::vec::Vec<super::super::common::v1::KeyValue>,
    /// \[2\]
    #[prost(message, repeated, tag = "7")]
    pub events: ::prost::alloc::vec::Vec<super::super::trace::v1::span::Event>,
    /// \[3\]
    #[prost(message, repeated, tag = "8")]
    pub links: ::prost::alloc::vec::Vec<super::super::trace::v1::span::Link>,
}
#[cfg_attr(feature = "with-schemars", derive(schemars::JsonSchema))]
#[cfg_attr(feature = "with-serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(feature = "with-serde", serde(rename_all = "camelCase"))]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RunningData {
    #[prost(bytes = "vec", tag = "1")]
    pub traceid: ::prost::alloc::vec::Vec<u8>,
    #[prost(bytes = "vec", tag = "2")]
    pub spanid: ::prost::alloc::vec::Vec<u8>,
    #[prost(bytes = "vec", tag = "3")]
    pub parentid: ::prost::alloc::vec::Vec<u8>,
    #[prost(fixed64, tag = "4")]
    pub starttime: u64,
    /// \[1\]
    #[prost(message, repeated, tag = "5")]
    pub attributes: ::prost::alloc::vec::Vec<super::super::common::v1::KeyValue>,
    /// \[2\]
    #[prost(message, repeated, tag = "6")]
    pub events: ::prost::alloc::vec::Vec<super::super::trace::v1::span::Event>,
    /// \[3\]
    #[prost(message, repeated, tag = "7")]
    pub links: ::prost::alloc::vec::Vec<super::super::trace::v1::span::Link>,
}
#[cfg_attr(feature = "with-schemars", derive(schemars::JsonSchema))]
#[cfg_attr(feature = "with-serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(feature = "with-serde", serde(rename_all = "camelCase"))]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ErrorData {
    #[prost(bytes = "vec", tag = "1")]
    pub traceid: ::prost::alloc::vec::Vec<u8>,
    #[prost(bytes = "vec", tag = "2")]
    pub spanid: ::prost::alloc::vec::Vec<u8>,
    #[prost(bytes = "vec", tag = "3")]
    pub parentid: ::prost::alloc::vec::Vec<u8>,
    #[prost(fixed64, tag = "4")]
    pub starttime: u64,
    /// \[1\]
    #[prost(message, repeated, tag = "5")]
    pub attributes: ::prost::alloc::vec::Vec<super::super::common::v1::KeyValue>,
    /// \[2\]
    #[prost(message, repeated, tag = "6")]
    pub events: ::prost::alloc::vec::Vec<super::super::trace::v1::span::Event>,
    /// \[3\]
    #[prost(message, repeated, tag = "7")]
    pub links: ::prost::alloc::vec::Vec<super::super::trace::v1::span::Link>,
    /// \[4\]
    #[prost(message, optional, tag = "8")]
    pub status: ::core::option::Option<super::super::trace::v1::Status>,
}