Skip to content

Commit a4e3f36

Browse files
authored
Update metrics.rs (#6863)
Fixes #5206, a low-hanging fruit.
1 parent 2193f6a commit a4e3f36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

beacon_node/beacon_chain/src/metrics.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ pub static BLOCK_PROCESSING_POST_EXEC_PROCESSING: LazyLock<Result<Histogram>> =
108108
try_create_histogram_with_buckets(
109109
"beacon_block_processing_post_exec_pre_attestable_seconds",
110110
"Time between finishing execution processing and the block becoming attestable",
111-
linear_buckets(5e-3, 5e-3, 10),
111+
linear_buckets(0.01, 0.01, 15),
112112
)
113113
});
114114
pub static BLOCK_PROCESSING_DATA_COLUMNS_WAIT: LazyLock<Result<Histogram>> = LazyLock::new(|| {

0 commit comments

Comments
 (0)