@@ -1656,7 +1656,7 @@ pub static BLOB_SIDECAR_INCLUSION_PROOF_COMPUTATION: LazyLock<Result<Histogram>>
1656
1656
} ) ;
1657
1657
pub static DATA_COLUMN_SIDECAR_COMPUTATION : LazyLock < Result < HistogramVec > > = LazyLock :: new ( || {
1658
1658
try_create_histogram_vec_with_buckets (
1659
- "data_column_sidecar_computation_seconds " ,
1659
+ "beacon_data_column_sidecar_computation_seconds " ,
1660
1660
"Time taken to compute data column sidecar, including cells, proofs and inclusion proof" ,
1661
1661
Ok ( vec ! [ 0.1 , 0.15 , 0.25 , 0.35 , 0.5 , 0.7 , 1.0 , 2.5 , 5.0 , 10.0 ] ) ,
1662
1662
& [ "blob_count" ] ,
@@ -1665,7 +1665,7 @@ pub static DATA_COLUMN_SIDECAR_COMPUTATION: LazyLock<Result<HistogramVec>> = Laz
1665
1665
pub static DATA_COLUMN_SIDECAR_INCLUSION_PROOF_VERIFICATION : LazyLock < Result < Histogram > > =
1666
1666
LazyLock :: new ( || {
1667
1667
try_create_histogram (
1668
- "data_column_sidecar_inclusion_proof_verification_seconds " ,
1668
+ "beacon_data_column_sidecar_inclusion_proof_verification_seconds " ,
1669
1669
"Time taken to verify data_column sidecar inclusion proof" ,
1670
1670
)
1671
1671
} ) ;
@@ -1847,7 +1847,7 @@ pub static KZG_VERIFICATION_BATCH_TIMES: LazyLock<Result<Histogram>> = LazyLock:
1847
1847
pub static KZG_VERIFICATION_DATA_COLUMN_SINGLE_TIMES : LazyLock < Result < Histogram > > =
1848
1848
LazyLock :: new ( || {
1849
1849
try_create_histogram_with_buckets (
1850
- "kzg_verification_data_column_single_seconds " ,
1850
+ "beacon_kzg_verification_data_column_single_seconds " ,
1851
1851
"Runtime of single data column kzg verification" ,
1852
1852
Ok ( vec ! [
1853
1853
0.0005 , 0.001 , 0.0015 , 0.002 , 0.003 , 0.004 , 0.005 , 0.007 , 0.01 , 0.02 , 0.05 ,
@@ -1857,7 +1857,7 @@ pub static KZG_VERIFICATION_DATA_COLUMN_SINGLE_TIMES: LazyLock<Result<Histogram>
1857
1857
pub static KZG_VERIFICATION_DATA_COLUMN_BATCH_TIMES : LazyLock < Result < Histogram > > =
1858
1858
LazyLock :: new ( || {
1859
1859
try_create_histogram_with_buckets (
1860
- "kzg_verification_data_column_batch_seconds " ,
1860
+ "beacon_kzg_verification_data_column_batch_seconds " ,
1861
1861
"Runtime of batched data column kzg verification" ,
1862
1862
Ok ( vec ! [
1863
1863
0.002 , 0.004 , 0.006 , 0.008 , 0.01 , 0.012 , 0.015 , 0.02 , 0.03 , 0.05 , 0.07 ,
@@ -1910,38 +1910,38 @@ pub static DATA_AVAILABILITY_OVERFLOW_STORE_CACHE_SIZE: LazyLock<Result<IntGauge
1910
1910
pub static DATA_AVAILABILITY_RECONSTRUCTION_TIME : LazyLock < Result < Histogram > > =
1911
1911
LazyLock :: new ( || {
1912
1912
try_create_histogram (
1913
- "data_availability_reconstruction_time_seconds " ,
1913
+ "beacon_data_availability_reconstruction_time_seconds " ,
1914
1914
"Time taken to reconstruct columns" ,
1915
1915
)
1916
1916
} ) ;
1917
1917
pub static DATA_AVAILABILITY_RECONSTRUCTED_COLUMNS : LazyLock < Result < IntCounter > > =
1918
1918
LazyLock :: new ( || {
1919
1919
try_create_int_counter (
1920
- "data_availability_reconstructed_columns_total " ,
1920
+ "beacon_data_availability_reconstructed_columns_total " ,
1921
1921
"Total count of reconstructed columns" ,
1922
1922
)
1923
1923
} ) ;
1924
1924
1925
1925
pub static KZG_DATA_COLUMN_RECONSTRUCTION_ATTEMPTS : LazyLock < Result < IntCounter > > =
1926
1926
LazyLock :: new ( || {
1927
1927
try_create_int_counter (
1928
- "kzg_data_column_reconstruction_attempts " ,
1928
+ "beacon_kzg_data_column_reconstruction_attempts " ,
1929
1929
"Count of times data column reconstruction has been attempted" ,
1930
1930
)
1931
1931
} ) ;
1932
1932
1933
1933
pub static KZG_DATA_COLUMN_RECONSTRUCTION_FAILURES : LazyLock < Result < IntCounter > > =
1934
1934
LazyLock :: new ( || {
1935
1935
try_create_int_counter (
1936
- "kzg_data_column_reconstruction_failures " ,
1936
+ "beacon_kzg_data_column_reconstruction_failures " ,
1937
1937
"Count of times data column reconstruction has failed" ,
1938
1938
)
1939
1939
} ) ;
1940
1940
1941
1941
pub static KZG_DATA_COLUMN_RECONSTRUCTION_INCOMPLETE_TOTAL : LazyLock < Result < IntCounterVec > > =
1942
1942
LazyLock :: new ( || {
1943
1943
try_create_int_counter_vec (
1944
- "kzg_data_column_reconstruction_incomplete_total " ,
1944
+ "beacon_kzg_data_column_reconstruction_incomplete_total " ,
1945
1945
"Count of times data column reconstruction attempts did not result in an import" ,
1946
1946
& [ "reason" ] ,
1947
1947
)
0 commit comments