From 836a93cd967ea198085acf07af17c9a34beadbcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20Stuczy=C5=84ski?= Date: Wed, 8 Jan 2025 11:26:40 +0100 Subject: [PATCH] fixed client session histogram buckets (#5316) --- nym-node/nym-node-metrics/src/prometheus_wrapper.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nym-node/nym-node-metrics/src/prometheus_wrapper.rs b/nym-node/nym-node-metrics/src/prometheus_wrapper.rs index 2d61ee55c4..cfee39ee3e 100644 --- a/nym-node/nym-node-metrics/src/prometheus_wrapper.rs +++ b/nym-node/nym-node-metrics/src/prometheus_wrapper.rs @@ -18,8 +18,8 @@ const CLIENT_SESSION_DURATION_BUCKETS: &[f64] = &[ 900., // 15min - 1h 3600., // 1h - 12h 43200., // 12h - 23.5h - 88200., // 23.5h - 24.5h - 86400., // 24.5h - 72h + 84600., // 23.5h - 24.5h + 88200., // 24.5h - 72h 259200., // 72h+ (implicitly) ];