Skip to content

Commit

Permalink
Generate otel files up front and add tooling to generate it again
Browse files Browse the repository at this point in the history
  • Loading branch information
hatchan committed Jun 28, 2024
1 parent c810a9f commit 689af67
Show file tree
Hide file tree
Showing 14 changed files with 860 additions and 36 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion fpx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ edition = "2021"
authors = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
build = "build.rs"

[features]
embed-studio = [] # When enabled it will embed Studio from frontend/dist
Expand Down
24 changes: 0 additions & 24 deletions fpx/build.rs

This file was deleted.

10 changes: 3 additions & 7 deletions fpx/src/api/grpc.rs
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
use crate::data::{DbError, Store};
use crate::events::ServerEvents;
use crate::models::TraceAdded;
use protos::opentelemetry::proto::collector::trace::v1::trace_service_server::TraceService;
use protos::opentelemetry::proto::collector::trace::v1::{
use crate::models::otel::opentelemetry::proto::collector::trace::v1::trace_service_server::TraceService;
use crate::models::otel::opentelemetry::proto::collector::trace::v1::{
ExportTraceServiceRequest, ExportTraceServiceResponse,
};

pub mod protos {
tonic::include_proto!("opentelemetry_proto");
}
use crate::models::TraceAdded;

#[derive(Clone)]
pub struct GrpcService {
Expand Down
2 changes: 1 addition & 1 deletion fpx/src/commands/dev.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
use crate::api::grpc::protos::opentelemetry::proto::collector::trace::v1::trace_service_server::TraceServiceServer;
use crate::api::grpc::GrpcService;
use crate::api::{self};
use crate::data::migrations::migrate;
use crate::data::{DataPath, Store};
use crate::events::Events;
use crate::initialize_fpx_dir;
use crate::models::otel::opentelemetry::proto::collector::trace::v1::trace_service_server::TraceServiceServer;
use anyhow::{Context, Result};
use std::future::IntoFuture;
use std::{path::PathBuf, process::exit};
Expand Down
5 changes: 3 additions & 2 deletions fpx/src/models.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
use rand::Rng;
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

use rand::Rng;
use std::collections::BTreeMap;

pub mod otel;

pub const FPX_WEBSOCKET_ID_HEADER: &str = "fpx-websocket-id";

/// Messages that are send from the server to the client.
Expand Down
27 changes: 27 additions & 0 deletions fpx/src/models/otel/mod.rs
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 fpx/src/models/otel/opentelemetry.proto.collector.trace.v1.rs
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";
}
}
Loading

0 comments on commit 689af67

Please sign in to comment.