Skip to content

Commit

Permalink
Update metrics.rs (#6863)
Browse files Browse the repository at this point in the history
Fixes #5206, a low-hanging fruit.
  • Loading branch information
kamuik16 authored Feb 6, 2025
1 parent 2193f6a commit a4e3f36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beacon_node/beacon_chain/src/metrics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ pub static BLOCK_PROCESSING_POST_EXEC_PROCESSING: LazyLock<Result<Histogram>> =
try_create_histogram_with_buckets(
"beacon_block_processing_post_exec_pre_attestable_seconds",
"Time between finishing execution processing and the block becoming attestable",
linear_buckets(5e-3, 5e-3, 10),
linear_buckets(0.01, 0.01, 15),
)
});
pub static BLOCK_PROCESSING_DATA_COLUMNS_WAIT: LazyLock<Result<Histogram>> = LazyLock::new(|| {
Expand Down

0 comments on commit a4e3f36

Please sign in to comment.