fix: metrics typo (#8593)

This commit is contained in:
DaniPopes
2024-06-04 17:20:37 +02:00
committed by GitHub
parent 8d95a750d1
commit 05255bec31

View File

@ -14,5 +14,5 @@ const LABELS: [(&str, &str); 6] = [
/// This exposes reth's version information over prometheus.
pub fn register_version_metrics() {
let _gauge = gauge!("reth_version_info", &LABELS);
let _gauge = gauge!("info", &LABELS);
}