metrics-runtime 0.13.1

A batteries-included metrics library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Core data types for metrics.
mod counter;
pub use counter::Counter;

mod gauge;
pub use gauge::Gauge;

mod histogram;
pub use histogram::{AtomicWindowedHistogram, Histogram};

mod snapshot;
pub use snapshot::Snapshot;