use std::time::Instant; pub mod store; pub use store::MetricStore; /// Historical metric data point #[derive(Debug, Clone)] pub struct MetricDataPoint { pub received_at: Instant, }