#open-telemetry #api-bindings #grpc #protobuf #tremor

tremor-otelapis

OpenTelemetry v1 API binding based on tonic/prost

9 releases

0.3.0 Dec 19, 2022
0.2.5 Jul 5, 2022
0.2.4 Apr 21, 2022
0.2.3 Mar 17, 2022
0.1.1 Mar 12, 2021

#1905 in Network programming

Download history 138/week @ 2023-11-20 106/week @ 2023-11-27 9/week @ 2023-12-04 50/week @ 2023-12-11 3/week @ 2024-01-15 1/week @ 2024-02-12 11/week @ 2024-02-19 31/week @ 2024-02-26 33/week @ 2024-03-04

76 downloads per month

Apache-2.0

47KB
618 lines

CNCF Early Stage Sandbox Project

CNCF Streaming & Messaging


Quality Checks License Checks Security Checks CII Best Practices GitHub

OpenTelemetry support for Tremor

Status

This library exists to support OpenTelemetry based connectivity within tremor.

Tremor can expose client and server OpenTelemetry endpoints based on the gRPC protocol specification for OpenTelemetry.

About

A tonic-build based data-binding and utility code for OpenTelemetry v1 primarily for use in the tremor project for OpenTelemetry v1 interoperability, integration and interworking.


The code in the gen folder was seeded by tonic-build.

The code in the src folder extends the generated source with utility code to allow for convenient usage and definition of tonic-based gRPC servers. Specifically, this library is designed for use by the Tremor Project but has no dependencies on tremor and can be used standalone.

This library does not provide an API or SDK designed for use as a tracing facility. The official OpenTelemetry Rust project is a complete OpenTelemetry SDK designed for that purpose. It uses the same underlying protocol buffer definitions and will be a better target for projects that require OpenTelemetry based observability instrumentation and iteroperability with the wider observability ecosystem through third party crates.

This library is designed for system integration and interoperability and is not recommended for use as a tracing SDK or for instrumentation as that is well covered already by the OpenTelemetry Rust crate. For instrumentation, use the official crate.

For those projects that need basic interworking, interoperability or integration with OpenTelemetry based systems at a wire level, this project may be useful.

Minimal dependencies for Cargo.toml

[dependencies]
tremor-otelapis = { version = "0.1", features = ["otel-all"] }
tonic = { version = "0.4", features = ["tls"] }
prost = "0.7"
prost-types = "0.7"
tokio = { version = "1.1", features = ["rt-multi-thread", "time", "fs", "macros"] }

Example OpenTelemetry Log client.

Note that clients simply use the generated client stub code from tonic-build. This library adds no extra utility or convenience.

async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let channel = Endpoint::from_static("http://0.0.0.0:4316")
        .connect()
        .await?;

    let mut client = LogsServiceClient::new(channel);

    let resource_logs = ResourceLogs {
        ...
    };

    client
        .export(ExportLogsServiceRequest {
            resource_logs: vec![resource_logs],
        })
        .await?;

    Ok(())
}

Example OpenTelemetry Log Server.

Note that we use utility code to expose the server side functionality. We pass through the generated Protocol Buffer message data binding generated code unadorned. The data bindings for protocol buffer messages are generated by tonic-build.

The tonic-build in turns builds on prost-build.

fn on_logs(
    request: tonic::Request<ExportLogsServiceRequest>,
) -> Result<tonic::Response<ExportLogsServiceResponse>, tonic::Status> {
    println!("Got a request from {:?}", request.remote_addr());
    let reply = ExportLogsServiceResponse::default();
    Ok(tonic::Response::new(reply))
}

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let addr = "0.0.0.0:4317".parse()?;
    let svc = otelapis::logs::make_service(Box::new(on_logs));
    Server::builder().add_service(svc).serve(addr).await?;

    Ok(())
}

Example async-channel based OpenTelemetry server

For ease of integration with async runtimes such as tremor:

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let addr = "0.0.0.0:4317".parse()?;
    let (tx, rx) = bounded(128);
    tremor_otelapis::all::make(addr, tx).await?;

    // ...

    loop {
        match rx.try_recv() {
            Ok(OpenTelemetryEvents::Metrics(metrics)) => {
                // Do something with metrics request
            }
            Ok(OpenTelemetryEvents::Logs(log)) => {
                // Do something with log request
            }
            Ok(OpenTelemetryEvents::Trace(trace)) => {
                // Do something with trace request
            }
            _ => error!("Unsupported"),
        };
   }

   // ...
}

Dependencies

~13–26MB
~433K SLoC