From e808fda02cccc06a7b3a413f44371dd17c682279 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Thu, 9 Mar 2023 19:24:03 +0200 Subject: [PATCH] engine_api_response_time renamed to engine_api_request_duration_seconds --- beacon_chain/eth1/eth1_monitor.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beacon_chain/eth1/eth1_monitor.nim b/beacon_chain/eth1/eth1_monitor.nim index a420ae704..67483255f 100644 --- a/beacon_chain/eth1/eth1_monitor.nim +++ b/beacon_chain/eth1/eth1_monitor.nim @@ -259,9 +259,9 @@ declareCounter engine_api_responses, "Number of successful requests to the newPayload Engine API end-point", labels = ["url", "request", "status"] -declareHistogram engine_api_response_time, +declareHistogram engine_api_request_duration_seconds, "Time(s) used to generate signature usign remote signer", - buckets = [0.1, 0.25, 0.5, 1.0, 2.0, 5.0], + buckets = [0.005, 0.01, 0.025, 0.05, 0.1, 0.25, 0.5, 1.0, 2.5, 5.0], labels = ["url", "request"] declareCounter engine_api_timeouts,