nexus-stats 3.0.0

Fixed-memory, zero-allocation streaming statistics for real-time systems
Documentation
//! System monitoring and operational health.

mod drawdown;
mod running;
mod windowed;
mod codel;
mod peak_hold;
mod max_gauge;
mod liveness;
mod event_rate;
mod jitter;
mod error_rate;
mod saturation;

pub use drawdown::*;
pub use running::*;
pub use windowed::*;
pub use codel::*;
pub use peak_hold::*;
pub use max_gauge::*;
pub use liveness::*;
pub use event_rate::*;
pub use jitter::*;
pub use error_rate::*;
pub use saturation::*;