relay_ourlogs/
lib.rs

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

#![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::ourlog::otel_to_sentry_log;

pub use opentelemetry_proto::tonic::logs::v1::LogRecord as OtelLog;

mod ourlog;