-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate otel files up front and add tooling to generate it again
- Loading branch information
Showing
14 changed files
with
860 additions
and
36 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// This file is @generated by prost-build. | ||
pub mod opentelemetry { | ||
pub mod proto { | ||
pub mod collector { | ||
pub mod trace { | ||
pub mod v1 { | ||
include!("opentelemetry.proto.collector.trace.v1.rs"); | ||
} | ||
} | ||
} | ||
pub mod common { | ||
pub mod v1 { | ||
include!("opentelemetry.proto.common.v1.rs"); | ||
} | ||
} | ||
pub mod resource { | ||
pub mod v1 { | ||
include!("opentelemetry.proto.resource.v1.rs"); | ||
} | ||
} | ||
pub mod trace { | ||
pub mod v1 { | ||
include!("opentelemetry.proto.trace.v1.rs"); | ||
} | ||
} | ||
} | ||
} |
240 changes: 240 additions & 0 deletions
240
fpx/src/models/otel/opentelemetry.proto.collector.trace.v1.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,240 @@ | ||
// This file is @generated by prost-build. | ||
#[allow(clippy::derive_partial_eq_without_eq)] | ||
#[derive(Clone, PartialEq, ::prost::Message)] | ||
pub struct ExportTraceServiceRequest { | ||
/// An array of ResourceSpans. | ||
/// For data coming from a single resource this array will typically contain one | ||
/// element. Intermediary nodes (such as OpenTelemetry Collector) that receive | ||
/// data from multiple origins typically batch the data before forwarding further and | ||
/// in that case this array will contain multiple elements. | ||
#[prost(message, repeated, tag = "1")] | ||
pub resource_spans: ::prost::alloc::vec::Vec< | ||
super::super::super::trace::v1::ResourceSpans, | ||
>, | ||
} | ||
#[allow(clippy::derive_partial_eq_without_eq)] | ||
#[derive(Clone, PartialEq, ::prost::Message)] | ||
pub struct ExportTraceServiceResponse { | ||
/// The details of a partially successful export request. | ||
/// | ||
/// If the request is only partially accepted | ||
/// (i.e. when the server accepts only parts of the data and rejects the rest) | ||
/// the server MUST initialize the `partial_success` field and MUST | ||
/// set the `rejected_<signal>` with the number of items it rejected. | ||
/// | ||
/// Servers MAY also make use of the `partial_success` field to convey | ||
/// warnings/suggestions to senders even when the request was fully accepted. | ||
/// In such cases, the `rejected_<signal>` MUST have a value of `0` and | ||
/// the `error_message` MUST be non-empty. | ||
/// | ||
/// A `partial_success` message with an empty value (rejected_<signal> = 0 and | ||
/// `error_message` = "") is equivalent to it not being set/present. Senders | ||
/// SHOULD interpret it the same way as in the full success case. | ||
#[prost(message, optional, tag = "1")] | ||
pub partial_success: ::core::option::Option<ExportTracePartialSuccess>, | ||
} | ||
#[allow(clippy::derive_partial_eq_without_eq)] | ||
#[derive(Clone, PartialEq, ::prost::Message)] | ||
pub struct ExportTracePartialSuccess { | ||
/// The number of rejected spans. | ||
/// | ||
/// A `rejected_<signal>` field holding a `0` value indicates that the | ||
/// request was fully accepted. | ||
#[prost(int64, tag = "1")] | ||
pub rejected_spans: i64, | ||
/// A developer-facing human-readable message in English. It should be used | ||
/// either to explain why the server rejected parts of the data during a partial | ||
/// success or to convey warnings/suggestions during a full success. The message | ||
/// should offer guidance on how users can address such issues. | ||
/// | ||
/// error_message is an optional field. An error_message with an empty value | ||
/// is equivalent to it not being set. | ||
#[prost(string, tag = "2")] | ||
pub error_message: ::prost::alloc::string::String, | ||
} | ||
/// Generated server implementations. | ||
pub mod trace_service_server { | ||
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)] | ||
use tonic::codegen::*; | ||
/// Generated trait containing gRPC methods that should be implemented for use with TraceServiceServer. | ||
#[async_trait] | ||
pub trait TraceService: Send + Sync + 'static { | ||
/// For performance reasons, it is recommended to keep this RPC | ||
/// alive for the entire life of the application. | ||
async fn export( | ||
&self, | ||
request: tonic::Request<super::ExportTraceServiceRequest>, | ||
) -> std::result::Result< | ||
tonic::Response<super::ExportTraceServiceResponse>, | ||
tonic::Status, | ||
>; | ||
} | ||
/// Service that can be used to push spans between one Application instrumented with | ||
/// OpenTelemetry and a collector, or between a collector and a central collector (in this | ||
/// case spans are sent/received to/from multiple Applications). | ||
#[derive(Debug)] | ||
pub struct TraceServiceServer<T: TraceService> { | ||
inner: _Inner<T>, | ||
accept_compression_encodings: EnabledCompressionEncodings, | ||
send_compression_encodings: EnabledCompressionEncodings, | ||
max_decoding_message_size: Option<usize>, | ||
max_encoding_message_size: Option<usize>, | ||
} | ||
struct _Inner<T>(Arc<T>); | ||
impl<T: TraceService> TraceServiceServer<T> { | ||
pub fn new(inner: T) -> Self { | ||
Self::from_arc(Arc::new(inner)) | ||
} | ||
pub fn from_arc(inner: Arc<T>) -> Self { | ||
let inner = _Inner(inner); | ||
Self { | ||
inner, | ||
accept_compression_encodings: Default::default(), | ||
send_compression_encodings: Default::default(), | ||
max_decoding_message_size: None, | ||
max_encoding_message_size: None, | ||
} | ||
} | ||
pub fn with_interceptor<F>( | ||
inner: T, | ||
interceptor: F, | ||
) -> InterceptedService<Self, F> | ||
where | ||
F: tonic::service::Interceptor, | ||
{ | ||
InterceptedService::new(Self::new(inner), interceptor) | ||
} | ||
/// Enable decompressing requests with the given encoding. | ||
#[must_use] | ||
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self { | ||
self.accept_compression_encodings.enable(encoding); | ||
self | ||
} | ||
/// Compress responses with the given encoding, if the client supports it. | ||
#[must_use] | ||
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self { | ||
self.send_compression_encodings.enable(encoding); | ||
self | ||
} | ||
/// Limits the maximum size of a decoded message. | ||
/// | ||
/// Default: `4MB` | ||
#[must_use] | ||
pub fn max_decoding_message_size(mut self, limit: usize) -> Self { | ||
self.max_decoding_message_size = Some(limit); | ||
self | ||
} | ||
/// Limits the maximum size of an encoded message. | ||
/// | ||
/// Default: `usize::MAX` | ||
#[must_use] | ||
pub fn max_encoding_message_size(mut self, limit: usize) -> Self { | ||
self.max_encoding_message_size = Some(limit); | ||
self | ||
} | ||
} | ||
impl<T, B> tonic::codegen::Service<http::Request<B>> for TraceServiceServer<T> | ||
where | ||
T: TraceService, | ||
B: Body + Send + 'static, | ||
B::Error: Into<StdError> + Send + 'static, | ||
{ | ||
type Response = http::Response<tonic::body::BoxBody>; | ||
type Error = std::convert::Infallible; | ||
type Future = BoxFuture<Self::Response, Self::Error>; | ||
fn poll_ready( | ||
&mut self, | ||
_cx: &mut Context<'_>, | ||
) -> Poll<std::result::Result<(), Self::Error>> { | ||
Poll::Ready(Ok(())) | ||
} | ||
fn call(&mut self, req: http::Request<B>) -> Self::Future { | ||
let inner = self.inner.clone(); | ||
match req.uri().path() { | ||
"/opentelemetry.proto.collector.trace.v1.TraceService/Export" => { | ||
#[allow(non_camel_case_types)] | ||
struct ExportSvc<T: TraceService>(pub Arc<T>); | ||
impl< | ||
T: TraceService, | ||
> tonic::server::UnaryService<super::ExportTraceServiceRequest> | ||
for ExportSvc<T> { | ||
type Response = super::ExportTraceServiceResponse; | ||
type Future = BoxFuture< | ||
tonic::Response<Self::Response>, | ||
tonic::Status, | ||
>; | ||
fn call( | ||
&mut self, | ||
request: tonic::Request<super::ExportTraceServiceRequest>, | ||
) -> Self::Future { | ||
let inner = Arc::clone(&self.0); | ||
let fut = async move { | ||
<T as TraceService>::export(&inner, request).await | ||
}; | ||
Box::pin(fut) | ||
} | ||
} | ||
let accept_compression_encodings = self.accept_compression_encodings; | ||
let send_compression_encodings = self.send_compression_encodings; | ||
let max_decoding_message_size = self.max_decoding_message_size; | ||
let max_encoding_message_size = self.max_encoding_message_size; | ||
let inner = self.inner.clone(); | ||
let fut = async move { | ||
let inner = inner.0; | ||
let method = ExportSvc(inner); | ||
let codec = tonic::codec::ProstCodec::default(); | ||
let mut grpc = tonic::server::Grpc::new(codec) | ||
.apply_compression_config( | ||
accept_compression_encodings, | ||
send_compression_encodings, | ||
) | ||
.apply_max_message_size_config( | ||
max_decoding_message_size, | ||
max_encoding_message_size, | ||
); | ||
let res = grpc.unary(method, req).await; | ||
Ok(res) | ||
}; | ||
Box::pin(fut) | ||
} | ||
_ => { | ||
Box::pin(async move { | ||
Ok( | ||
http::Response::builder() | ||
.status(200) | ||
.header("grpc-status", "12") | ||
.header("content-type", "application/grpc") | ||
.body(empty_body()) | ||
.unwrap(), | ||
) | ||
}) | ||
} | ||
} | ||
} | ||
} | ||
impl<T: TraceService> Clone for TraceServiceServer<T> { | ||
fn clone(&self) -> Self { | ||
let inner = self.inner.clone(); | ||
Self { | ||
inner, | ||
accept_compression_encodings: self.accept_compression_encodings, | ||
send_compression_encodings: self.send_compression_encodings, | ||
max_decoding_message_size: self.max_decoding_message_size, | ||
max_encoding_message_size: self.max_encoding_message_size, | ||
} | ||
} | ||
} | ||
impl<T: TraceService> Clone for _Inner<T> { | ||
fn clone(&self) -> Self { | ||
Self(Arc::clone(&self.0)) | ||
} | ||
} | ||
impl<T: std::fmt::Debug> std::fmt::Debug for _Inner<T> { | ||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { | ||
write!(f, "{:?}", self.0) | ||
} | ||
} | ||
impl<T: TraceService> tonic::server::NamedService for TraceServiceServer<T> { | ||
const NAME: &'static str = "opentelemetry.proto.collector.trace.v1.TraceService"; | ||
} | ||
} |
Oops, something went wrong.