mirror of
https://github.com/sigp/lighthouse.git
synced 2026-04-25 16:58:28 +00:00
* Use `E` for `EthSpec` globally * Fix tests * Merge branch 'unstable' into e-ethspec * Merge branch 'unstable' into e-ethspec # Conflicts: # beacon_node/execution_layer/src/engine_api.rs # beacon_node/execution_layer/src/engine_api/http.rs # beacon_node/execution_layer/src/engine_api/json_structures.rs # beacon_node/execution_layer/src/test_utils/handle_rpc.rs # beacon_node/store/src/partial_beacon_state.rs # consensus/types/src/beacon_block.rs # consensus/types/src/beacon_block_body.rs # consensus/types/src/beacon_state.rs # consensus/types/src/config_and_preset.rs # consensus/types/src/execution_payload.rs # consensus/types/src/execution_payload_header.rs # consensus/types/src/light_client_optimistic_update.rs # consensus/types/src/payload.rs # lcli/src/parse_ssz.rs
33 lines
1.2 KiB
Rust
33 lines
1.2 KiB
Rust
use crate::SlotClock;
|
|
pub use lighthouse_metrics::*;
|
|
use types::{EthSpec, Slot};
|
|
|
|
lazy_static! {
|
|
pub static ref PRESENT_SLOT: Result<IntGauge> =
|
|
try_create_int_gauge("slotclock_present_slot", "The present wall-clock slot");
|
|
pub static ref PRESENT_EPOCH: Result<IntGauge> =
|
|
try_create_int_gauge("slotclock_present_epoch", "The present wall-clock epoch");
|
|
pub static ref SLOTS_PER_EPOCH: Result<IntGauge> =
|
|
try_create_int_gauge("slotclock_slots_per_epoch", "Slots per epoch (constant)");
|
|
pub static ref SECONDS_PER_SLOT: Result<IntGauge> = try_create_int_gauge(
|
|
"slotclock_slot_time_seconds",
|
|
"The duration in seconds between each slot"
|
|
);
|
|
}
|
|
|
|
/// Update the global metrics `DEFAULT_REGISTRY` with info from the slot clock.
|
|
pub fn scrape_for_metrics<E: EthSpec, U: SlotClock>(clock: &U) {
|
|
let present_slot = match clock.now() {
|
|
Some(slot) => slot,
|
|
_ => Slot::new(0),
|
|
};
|
|
|
|
set_gauge(&PRESENT_SLOT, present_slot.as_u64() as i64);
|
|
set_gauge(
|
|
&PRESENT_EPOCH,
|
|
present_slot.epoch(E::slots_per_epoch()).as_u64() as i64,
|
|
);
|
|
set_gauge(&SLOTS_PER_EPOCH, E::slots_per_epoch() as i64);
|
|
set_gauge(&SECONDS_PER_SLOT, clock.slot_duration().as_secs() as i64);
|
|
}
|