1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//! # OpenTelemetry data exporters
//!
//! There are two main types of exports:
//!
//! - Span exporters, which export instances of `Span`.
//! - Measurement exporters, which export data collected by `Meter` instances.
//!
//! Exporters define the interface that protocol-specific exporters must
//! implement so that they can be plugged into OpenTelemetry SDK and support
//! sending of telemetry data.
#[cfg(feature = "metrics")]
pub mod metrics;
#[cfg(feature = "trace")]
pub mod trace;