metered 0.9.0

Fast, ergonomic metrics for Rust!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! A module providing common metrics.

mod error_count;
mod hit_count;
mod in_flight;
mod response_time;
mod throughput;

pub use error_count::ErrorCount;
pub use hit_count::HitCount;
pub use in_flight::InFlight;
pub use response_time::ResponseTime;
pub use throughput::{AtomicTxPerSec, RecordThroughput, Throughput, TxPerSec};