forked from powerfulseal/powerfulseal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
seal.alerts.yml
50 lines (50 loc) · 1.66 KB
/
seal.alerts.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
40
41
42
43
44
45
46
47
48
49
50
- name: PowerfulSeal Alerts
rules:
- alert: pod_kills_failing
expr: rate(seal_pod_kills_total{status="failure"}[5m]) > 0
for: 5m
annotations:
summary: Pod kills failing for {{ $labels.namespace }}/{{ $labels.name }}
description: >
PowerfulSeal has been unable to kill {{ $labels.namespace }}/{{ $labels.name }}
for a while now.
labels:
type: seal
- alert: node_kills_failing
expr: rate(seal_node_stopped_total{status="failed"}[5m]) > 0
for: 5m
annotations:
summary: Node stops failing for {{ $labels.name }}
description: >
PowerfulSeal has been unable to kill node {{ $labels.name }} with UID
{{ $labels.uid }} for a while now.
labels:
type: mute
- alert: command_executions_failing
expr: rate(seal_execute_failed_total{status="failed"}[5m]) > 0
for: 5m
annotations:
summary: Node command executions failing for {{ $labels.name }}
description: >
PowerfulSeal has been unable to successfully execute commands on node
{{ $labels.name }} with UID {{ $labels.uid }} for a while now.
labels:
type: seal
- alert: filtering_to_empty_set
expr: rate(seal_empty_filter_total[10m]) > 0
for: 10m
annotations:
summary: Filtering stage returning empty sets
description: >
The filtering stage is returning empty sets.
labels:
type: seal
- alert: matching_to_empty_set
expr: rate(seal_empty_match_total[10m]) > 0
for: 10m
annotations:
summary: Matching stage returning empty sets
description: >
The matching for {{ $labels.source }} is returning empty sets
labels:
type: seal