use crate::{traits::MiddlewareTrait, Error, Middleware, Result};
use axum::{
extract::{MatchedPath, Request},
middleware,
middleware::Next,
response::IntoResponse,
};
use std::time::Instant;
pub struct Metrics;
impl MiddlewareTrait for Metrics {
fn handle() -> Middleware {
Box::new(|router| Ok(router.layer(middleware::from_fn(metrics))))
}
}
async fn metrics(req: Request, next: Next) -> Result<impl IntoResponse, Error> {
let start = Instant::now();
let path = if let Some(matched_path) = req.extensions().get::<MatchedPath>() {
matched_path.as_str().to_owned()
} else {
req.uri().path().to_owned()
};
let method = req.method().clone();
let response = next.run(req).await;
let latency = start.elapsed().as_secs_f64();
let status = response.status().as_u16().to_string();
let labels = [
("method", method.to_string()),
("path", path),
("status", status),
];
metrics::counter!("http_requests_total", &labels).increment(1);
metrics::histogram!("http_requests_duration_seconds", &labels).record(latency);
Ok(response)
}