nexus-stats-core 3.0.1

Core types and utilities shared across nexus-stats subcrates
Documentation
//! System monitoring and operational health.

mod codel;
mod drawdown;
mod error_rate;
mod event_rate;
#[cfg(any(feature = "std", feature = "libm"))]
mod hawkes;
mod jitter;
mod liveness;
mod max_gauge;
mod peak_hold;
mod running;
mod saturation;
pub(crate) mod windowed;

pub use codel::*;
pub use drawdown::*;
pub use error_rate::*;
pub use event_rate::*;
#[cfg(any(feature = "std", feature = "libm"))]
pub use hawkes::*;
pub use jitter::*;
pub use liveness::*;
pub use max_gauge::*;
pub use peak_hold::*;
pub use running::*;
pub use saturation::*;
pub use windowed::*;