Skip to content

Commit

Permalink
Fix incorrect data column metric name (#6761)
Browse files Browse the repository at this point in the history
* Fix incorrect data column metric name.
  • Loading branch information
jimmygchen authored Jan 8, 2025
1 parent 7ec748a commit 80cfbea
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 @@ -1693,7 +1693,7 @@ pub static DATA_COLUMN_SIDECAR_GOSSIP_VERIFICATION_TIMES: LazyLock<Result<Histog
pub static DATA_COLUMNS_SIDECAR_PROCESSING_SUCCESSES: LazyLock<Result<IntCounter>> =
LazyLock::new(|| {
try_create_int_counter(
"beacon_blobs_column_sidecar_processing_successes_total",
"beacon_data_column_sidecar_processing_successes_total",
"Number of data column sidecars verified for gossip",
)
});
Expand Down

0 comments on commit 80cfbea

Please sign in to comment.