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.
This commit is contained in:
Jimmy Chen
2024-09-09 21:02:16 +10:00
committed by GitHub
parent 873748d2c3
commit 815567a91a

View File

@@ -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"],
)
});