//! Admin API statistics snapshot.
/// A snapshot of server-wide metrics for the admin stats endpoint.
#[derive(Debug, Clone, serde::Serialize)]pubstructAdminStats{/// Total requests received (across all endpoints).
pubrequests_total:u64,
/// Total generated tokens across all requests.
pubtokens_generated_total:u64,
/// Total prompt tokens received.
pubprompt_tokens_total:u64,
/// Number of currently in-flight requests.
pubactive_requests:u64,
/// Current depth of the inference queue.
pubqueue_depth:u64,
}