Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions launcher/src/backend/Monitoring.js
Original file line number Diff line number Diff line change
Expand Up @@ -1114,7 +1114,7 @@ export class Monitoring {
PrysmBeaconService: ["beacon_clock_time_slot", "beacon_head_slot"], // OK - query for job="prysm_beacon"!
NimbusBeaconService: ["beacon_slot", "beacon_head_slot"], // OK - query for job="nimbus"
LodestarBeaconService: ["beacon_clock_slot", "beacon_head_slot"], // OK - query for job="lodestar_beacon"
// GrandineBeaconService: ["", "beacon_head_slot"], // NOT OK Current Slot is not available - query for job="grandine_beacon"
GrandineBeaconService: ["beacon_head_slot", "beacon_head_slot"], // NOT OK Current Slot (based on genesis time and clock) is not available - query for job="grandine_beacon"
},
execution: {
GethService: ["chain_head_header", "chain_head_block"], // OK - query for job="geth"
Expand All @@ -1128,7 +1128,7 @@ export class Monitoring {

// Prometheus job definitions
const jobs = {
//GrandineBeaconService: "grandine_beacon",
GrandineBeaconService: "grandine_beacon",
TekuBeaconService: "teku_beacon",
LighthouseBeaconService: "lighthouse_beacon",
PrysmBeaconService: "prysm_beacon",
Expand Down