1
2
3
4
5
6
7
8
9
//! Helper types and functions used within the metrics ecosystem.
mod bucket;
pub use bucket::AtomicBucket;

mod streaming;
pub use streaming::StreamingIntegers;

mod quantile;
pub use quantile::{parse_quantiles, Quantile};