1 2 3 4 5 6 7 8 9 10
//! Observability module //! //! Provides Prometheus metrics, distributed tracing and structured logging pub mod metrics; pub mod http_server; pub use metrics::RediqMetrics; #[cfg(feature = "metrics-http")] pub use http_server::MetricsServer;