|
/etc/prometheus/rules/alert.rules.yml > besu-health-alerts
|
|
|
|
|
|
|
|
|
|
|
alert: NoNewBlocks
expr: increase(besu_block_number[10m])
== 0
for: 5m
labels:
severity: critical
annotations:
description: No block has been produced in the last 10 minutes. Network may be stuck.
summary: "\U0001F4C9 No new blocks produced"
|
alert: NodeExporterDown
expr: up{job="node_exporter"}
== 0
for: 1m
labels:
severity: critical
annotations:
description: Prometheus target `node_exporter` is unreachable.
summary: ❌ Node Exporter down on {{ $labels.instance }}
|
alert: PrometheusTargetMissing
expr: up == 0
for: 2m
labels:
severity: critical
annotations:
description: 'Target {{ $labels.instance }} (job: {{ $labels.job }}) is down.'
summary: "\U0001F4E1 Prometheus target down: {{ $labels.job }}"
|
|
|
|
|
|
/etc/prometheus/rules/rpc_alerts.yml > besu_block_lag
|
|
|
|
/etc/prometheus/rules/rpc_alerts.yml > rpc_probes
|
|
|
|
|