relay_spans/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Structs and functions needed to ingest OpenTelemetry spans.

#![warn(missing_docs)]
#![doc(
    html_logo_url = "https://raw.githubusercontent.com/getsentry/relay/master/artwork/relay-icon.png",
    html_favicon_url = "https://raw.githubusercontent.com/getsentry/relay/master/artwork/relay-icon.png"
)]

pub use crate::span::otel_to_sentry_span;

pub use opentelemetry_proto::tonic::trace::v1 as otel_trace;

mod span;
mod status_codes;