From ea68ccd03416edebaac05a13a12d2b4126da63f3 Mon Sep 17 00:00:00 2001 From: Louis Dureuil Date: Wed, 28 Jun 2023 11:21:50 +0200 Subject: [PATCH] prefix http_* metrics by meilisearch --- meilisearch/src/metrics.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/meilisearch/src/metrics.rs b/meilisearch/src/metrics.rs index 79332f360..b3cbb4576 100644 --- a/meilisearch/src/metrics.rs +++ b/meilisearch/src/metrics.rs @@ -16,7 +16,7 @@ fn create_buckets() -> [f64; 29] { } lazy_static! { - pub static ref HTTP_RESPONSE_TIME_CUSTOM_BUCKETS: [f64; 29] = create_buckets(); + pub static ref MEILISEARCH_HTTP_RESPONSE_TIME_CUSTOM_BUCKETS: [f64; 29] = create_buckets(); pub static ref MEILISEARCH_HTTP_REQUESTS_TOTAL: IntCounterVec = register_int_counter_vec!( opts!("meilisearch_http_requests_total", "Meilisearch HTTP requests total"), &["method", "path"] @@ -39,10 +39,10 @@ lazy_static! { ) .expect("Can't create a metric"); pub static ref MEILISEARCH_HTTP_RESPONSE_TIME_SECONDS: HistogramVec = register_histogram_vec!( - "http_response_time_seconds", - "HTTP response times", + "meilisearch_http_response_time_seconds", + "Meilisearch HTTP response times", &["method", "path"], - HTTP_RESPONSE_TIME_CUSTOM_BUCKETS.to_vec() + MEILISEARCH_HTTP_RESPONSE_TIME_CUSTOM_BUCKETS.to_vec() ) .expect("Can't create a metric"); pub static ref MEILISEARCH_NB_TASKS: IntGaugeVec = register_int_gauge_vec!(