exponential-histogram 0.2.1

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

mod exponential_histogram;
mod shared;

pub use exponential_histogram::ExponentialHistogram;
pub use shared::SharedExponentialHistogram;