Skip to main content

stele/
lib.rs

1//! A common, simplified representation for various types of telemetry data.
2
3#![deny(warnings)]
4#![deny(missing_docs)]
5
6mod events;
7pub use self::events::*;
8
9mod metrics;
10pub use self::metrics::*;
11
12mod service_checks;
13pub use self::service_checks::*;
14
15mod traces;
16pub use self::traces::*;