From 8805ef9b202a90b03b9aa5b3ee42583e106310a3 Mon Sep 17 00:00:00 2001 From: realbigsean Date: Thu, 11 Feb 2021 10:34:47 -0500 Subject: [PATCH] fix arenas --- common/warp_utils/src/metrics.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/warp_utils/src/metrics.rs b/common/warp_utils/src/metrics.rs index e08ff121739..ef22a192046 100644 --- a/common/warp_utils/src/metrics.rs +++ b/common/warp_utils/src/metrics.rs @@ -52,7 +52,7 @@ lazy_static::lazy_static! { pub static ref JEMALLOC_ACTIVE: Result = try_create_int_gauge("jemalloc_active", "Total number of bytes in active pages allocated by the application."); pub static ref JEMALLOC_ARENAS: Result = - try_create_int_gauge("jemalloc_active", "Current limit on the number of arenas."); + try_create_int_gauge("jemalloc_arenas", "Current limit on the number of arenas."); } pub fn scrape_health_metrics() {