exponential_histogram/
lib.rs

1//! An auto-scaling approximate histogram, following the opentelemetry algorithm.
2//!
3//! Quick and convenient, but there are quicker histogram implementations available.
4//! The auto-scaling nature of the exponential histogram in this crate offers you
5//! precision that is relative to the spread of the data observed in each observation
6//! window.
7//!
8//!
9
10mod exponential_histogram;
11mod shared;
12
13pub use exponential_histogram::ExponentialHistogram;
14pub use shared::SharedExponentialHistogram;