Unverified Commit 86984e32 authored by OlivierDehaene's avatar OlivierDehaene Committed by GitHub
Browse files

fix: metrics unbounded memory (#2528)

parent 71e42686
...@@ -2136,9 +2136,12 @@ async fn start( ...@@ -2136,9 +2136,12 @@ async fn start(
.unwrap(); .unwrap();
// .set_buckets_for_metric(skipped_matcher, &skipped_buckets) // .set_buckets_for_metric(skipped_matcher, &skipped_buckets)
// .unwrap(); // .unwrap();
let prom_handle = builder // See: https://github.com/metrics-rs/metrics/issues/467#issuecomment-2022755151
.install_recorder() let (recorder, _) = builder
.expect("failed to install metrics recorder"); .build()
.expect("failed to build prometheus recorder");
let prom_handle = recorder.handle();
metrics::set_global_recorder(recorder).expect("Failed to set global recorder");
// Metrics descriptions // Metrics descriptions
metrics::describe_counter!("tgi_request_success", "Number of successful requests"); metrics::describe_counter!("tgi_request_success", "Number of successful requests");
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment