metrics/metrics-util/src/lib.rs

10 lines
224 B
Rust
Raw Normal View History

2019-04-23 13:32:28 -07:00
//! Helper types and functions used within the metrics ecosystem.
mod bucket;
pub use bucket::AtomicBucket;
2019-04-23 13:32:28 -07:00
mod streaming;
pub use streaming::StreamingIntegers;
2019-04-23 13:32:28 -07:00
mod quantile;
pub use quantile::{parse_quantiles, Quantile};