relay_ourlogs/
lib.rs

1//! Structs and functions needed to ingest Sentry logs.
2
3#![warn(missing_docs)]
4#![doc(
5    html_logo_url = "https://raw.githubusercontent.com/getsentry/relay/master/artwork/relay-icon.png",
6    html_favicon_url = "https://raw.githubusercontent.com/getsentry/relay/master/artwork/relay-icon.png"
7)]
8
9mod otel_to_sentry;
10mod size;
11
12pub use self::otel_to_sentry::otel_to_sentry_log;
13pub use self::size::calculate_size;
14
15pub use opentelemetry_proto::tonic::logs::v1 as otel_logs;