litellm-rs 0.4.16

A high-performance AI Gateway written in Rust, providing OpenAI-compatible APIs with intelligent routing, load balancing, and enterprise features
Documentation
//! Metrics collection and aggregation
//!
//! This module provides comprehensive metrics collection for monitoring and observability.

#![allow(dead_code)]

mod background;
mod bounded;
mod collector;
mod getters;
mod helpers;
mod system;
mod types;

#[cfg(test)]
mod tests;

// Re-export the main MetricsCollector struct
pub use collector::MetricsCollector;