-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcosmos_sdk.yml
39 lines (38 loc) · 1.54 KB
/
cosmos_sdk.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
##############################################################################
# Block production
##############################################################################
- alert: BlockProductionSlow
annotations:
message: 'signed blocks on instance {{ $labels.instance }} increases by
less than 1 per minute for more than 3 minutes.'
expr: increase(tendermint_consensus_validator_last_signed_height[1m]) < 1
for: 3m
labels:
severity: warning
- alert: BlockProductionSlow
annotations:
message: 'signed blocks on instance {{ $labels.instance }} increases by
less than 1 per minute for more than 10 minutes.'
expr: increase(tendermint_consensus_validator_last_signed_height[1m]) < 1
for: 10m
labels:
severity: critical
##############################################################################
# Missed Blocks
##############################################################################
- alert: MissedBlocks
annotations:
message: 'block missed on instance {{ $labels.instance }} increases by
less than 1 per minute for more than 3 minutes.'
expr: increase(tendermint_consensus_validator_missed_blocks[1m]) > 1
for: 3m
labels:
severity: warning
- alert: MissedBlocks
annotations:
message: 'block missed on instance {{ $labels.instance }} increases by
less than 1 per minute for more than 10 minutes.'
expr: increase(tendermint_consensus_validator_missed_blocks[1m]) > 1
for: 10m
labels:
severity: critical