Crate exponential_histogram

Source
Expand description

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.

Structsยง

ExponentialHistogram
An auto-scaling histogram approximation implementation following the opentelemetry exponential histogram algorithm.
SharedExponentialHistogram
An ExponentialHistogram with interior mutability