Skip to content

Commit

Permalink
Fix alert about delay between best and finalized block (paritytech#9150)
Browse files Browse the repository at this point in the history
* Fix alert about delay between best and finalized block

* Revert debugging changes
  • Loading branch information
tomaka authored Jun 23, 2021
1 parent 01ff4ce commit 7170fda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .maintain/monitoring/alerting-rules/alerting-rules.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ groups:
# Under the assumption of an average block production of 6 seconds,
# "best" and "finalized" being more than 10 blocks apart would imply
# more than a 1 minute delay between block production and finalization.
expr: '(polkadot_block_height_number{status="best"} - ignoring(status)
polkadot_block_height_number{status="finalized"}) > 10'
expr: '(polkadot_block_height{status="best"} - ignoring(status)
polkadot_block_height{status="finalized"}) > 10'
for: 8m
labels:
severity: critical
Expand Down

0 comments on commit 7170fda

Please sign in to comment.