From 52a63e77b12071b733e2390b1579c7c1cd9f93e9 Mon Sep 17 00:00:00 2001 From: GroovieGermanikus Date: Thu, 23 Nov 2023 11:20:34 +0100 Subject: [PATCH] fix prometheus label --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 1544171..5977ea7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -27,7 +27,7 @@ mod prometheus_sync; lazy_static::lazy_static! { static ref BLOCK_TXS: IntGauge = - register_int_gauge!(opts!("block_arrived", "block seen with n transactions (use for liveness check)")).unwrap(); + register_int_gauge!(opts!("block_arrived", "block seen with n transactions")).unwrap(); static ref BANKING_STAGE_ERROR_COUNT: IntGauge = register_int_gauge!(opts!("bankingstage_banking_errors", "banking_stage errors in block")).unwrap(); static ref TXERROR_COUNT: IntGauge =