Skip to content

Commit

Permalink
Add more granularity to data column proof computation metric (#6371)
Browse files Browse the repository at this point in the history
* Add more granularity to data column proof computation metric to capture more variations between 0.25 and 1 second.
  • Loading branch information
jimmygchen authored Sep 9, 2024
1 parent 873748d commit 815567a
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 @@ -1651,7 +1651,7 @@ pub static DATA_COLUMN_SIDECAR_COMPUTATION: LazyLock<Result<HistogramVec>> = 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"],
)
});
Expand Down

0 comments on commit 815567a

Please sign in to comment.