From 815567a91a23c9d29fa72bb2c7e8a79b97129441 Mon Sep 17 00:00:00 2001 From: Jimmy Chen Date: Mon, 9 Sep 2024 21:02:16 +1000 Subject: [PATCH] Add more granularity to data column proof computation metric (#6371) * Add more granularity to data column proof computation metric to capture more variations between 0.25 and 1 second. --- beacon_node/beacon_chain/src/metrics.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon_node/beacon_chain/src/metrics.rs b/beacon_node/beacon_chain/src/metrics.rs index 79b2fc592b..f15b46fc4b 100644 --- a/beacon_node/beacon_chain/src/metrics.rs +++ b/beacon_node/beacon_chain/src/metrics.rs @@ -1651,7 +1651,7 @@ pub static DATA_COLUMN_SIDECAR_COMPUTATION: LazyLock> = Laz try_create_histogram_vec_with_buckets( "data_column_sidecar_computation_seconds", "Time taken to compute data column sidecar, including cells, proofs and inclusion proof", - Ok(vec![0.1, 0.25, 0.5, 1.0, 2.5, 5.0, 10.0]), + Ok(vec![0.1, 0.15, 0.25, 0.35, 0.5, 0.7, 1.0, 2.5, 5.0, 10.0]), &["blob_count"], ) });