File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -196,6 +196,12 @@ MEV_RELAYS=https://0x98f0ef62f00780cf8eb06701a7d22725b9437d4768bb19b363e882ae871
196196# Prometheus service owner used to uniquely identify user from which metrics are pushed.
197197#SERVICE_OWNER=charon_user
198198
199+ # To get Alerted with Obol Agent monitoring on Discord, specify your Discord ID(s) below.
200+ # Enable developer mode on discord with User Settings > Advanced.
201+ # Then right click on a user's profile picture or name and select Copy ID to get a unique 18-digit number that represents their account.
202+ # Specify multiple discord IDs using comma separation. (e.g. `DISCORD_IDS=123456789098765432,098765432123456789`)
203+ #ALERT_DISCORD_IDS=""
204+
199205# Uncomment these if you have log exporting with Alloy
200206# and want to disable log export on a particular container.
201207#EL_NETHERMIND_ALLOY_MONITORED=false
Original file line number Diff line number Diff line change @@ -196,6 +196,12 @@ MEV_RELAYS=https://0xa15b52576bcbf1072f4a011c0f99f9fb6c66f3e1ff321f11f461d15e31b
196196# Prometheus service owner used to uniquely identify user from which metrics are pushed.
197197#SERVICE_OWNER=charon_user
198198
199+ # To get Alerted with Obol Agent monitoring on Discord, specify your Discord ID(s) below.
200+ # Enable developer mode on discord with User Settings > Advanced.
201+ # Then right click on a user's profile picture or name and select Copy ID to get a unique 18-digit number that represents their account.
202+ # Specify multiple discord IDs using comma separation. (e.g. `DISCORD_IDS=123456789098765432,098765432123456789`)
203+ #ALERT_DISCORD_IDS=""
204+
199205# Uncomment these if you have log exporting with Alloy
200206# and want to disable log export on a particular container.
201207#EL_NETHERMIND_ALLOY_MONITORED=false
Original file line number Diff line number Diff line change @@ -23,9 +23,13 @@ scrape_configs:
2323 - job_name: "charon"
2424 static_configs:
2525 - targets: ["charon:3620"]
26+ relabel_configs:
27+ - target_label: alert_discord_ids
28+ replacement: "$ALERT_DISCORD_IDS"
2629 - job_name: "mev-boost"
2730 static_configs:
2831 - targets: ["mev-mevboost:18551"]
32+
2933 - job_name: "lodestar"
3034 static_configs:
3135 - targets: ["lodestar:5064"]
Original file line number Diff line number Diff line change 1414
1515sed -e " s|\$ PROM_REMOTE_WRITE_TOKEN|${PROM_REMOTE_WRITE_TOKEN} |g" \
1616 -e " s|\$ SERVICE_OWNER|${SERVICE_OWNER} |g" \
17+ -e " s|\$ ALERT_DISCORD_IDS|${ALERT_DISCORD_IDS} |g" \
1718 /etc/prometheus/prometheus.yml.example > /etc/prometheus/prometheus.yml
1819
1920/bin/prometheus \
You can’t perform that action at this time.
0 commit comments