lighthouse-pulse/beacon_node/client/src/metrics.rs
2020-03-18 09:25:29 +11:00

10 lines
259 B
Rust

use lazy_static::lazy_static;
pub use lighthouse_metrics::*;
lazy_static! {
pub static ref SYNC_SLOTS_PER_SECOND: Result<IntGauge> = try_create_int_gauge(
"sync_slots_per_second",
"The number of blocks being imported per second"
);
}