lighthouse-pulse/beacon_node/client/src/metrics.rs

10 lines
259 B
Rust
Raw Normal View History

2020-03-17 22:25:29 +00:00
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"
);
}