-
Notifications
You must be signed in to change notification settings - Fork 205
Open
Description
I've written some Axum middleware to record the number of times each HTTP request is processed, and I'm hitting problems with actually recording the metrics.
What I've done so far is this:
pub async fn record_metrics<B>(
registry: Extension<prometheus::Registry>,
request: Request<B>,
next: Next<B>,
) -> Response {
let uri = request.uri().to_string();
let response = next.run(request).await;
let counter = CounterVec::new(Opts::new("http_request", "HTTP Requests"), &["uri", "status_code"]).unwrap();
registry.register(Box::new(counter.clone())).unwrap();
counter.with_label_values(&[&uri, response.status().as_str()]).inc();
response
}
And the call to registry.register() returns AlreadyReg on all incoming requests after the first one.
Is there some easy way to get back the already registered metric so that I can increment that instead?
I've looked at calling registry.gather() to try and find it, but can't trivially work out how to find the correct entry in the returned set.
Cheers
Metadata
Metadata
Assignees
Labels
No labels