opentelemetry_exporter_geneva/
lib.rs

1//! The OpenTelemetry Geneva exporter will enable applications to use OpenTelemetry API
2//! to capture the telemetry events, and write to Microsoft internal backend.
3
4#![warn(missing_debug_implementations, missing_docs)]
5
6mod logs;
7mod trace;
8
9pub use logs::*;
10pub use trace::*;