Update axum prometheus-metrics example (#2516)

Co-authored-by: Dudin.Roman <Roman@HPROMAN>
This commit is contained in:
dayvejones
2024-01-15 14:25:31 +01:00
committed by GitHub
co-authored by Dudin.Roman
parent dd3ff101e2
commit 94901e0fe7
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -110,8 +110,8 @@ async fn track_metrics(req: Request, next: Next) -> impl IntoResponse {
("status", status),
];
metrics::increment_counter!("http_requests_total", &labels);
metrics::histogram!("http_requests_duration_seconds", latency, &labels);
metrics::counter!("http_requests_total", &labels).increment(1);
metrics::histogram!("http_requests_duration_seconds", &labels).record(latency);
response
}