-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathservice_checks.json
56 lines (56 loc) · 2.18 KB
/
service_checks.json
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
51
52
53
54
55
56
[
{
"agent_version": "5.6.0",
"integration":"kubernetes",
"check": "kubernetes_state.node.ready",
"statuses": ["ok", "critical"],
"groups": ["host", "node"],
"name": "Node Ready",
"description": "Returns `CRITICAL` if a cluster node is not ready. Returns `OK` otherwise."
},
{
"agent_version": "5.6.0",
"integration":"kubernetes",
"check": "kubernetes_state.node.out_of_disk",
"statuses": ["ok", "critical"],
"groups": ["host", "node"],
"name": "Node Out Of Disk",
"description": "Returns `CRITICAL` if a cluster node is out of disk space. Returns `OK` otherwise."
},
{
"agent_version": "5.6.0",
"integration":"kubernetes",
"check": "kubernetes_state.node.disk_pressure",
"statuses": ["ok", "critical"],
"groups": ["host", "node"],
"name": "Node Disk Pressure",
"description": "Returns `CRITICAL` if a cluster node is in a disk pressure state. Returns `OK` otherwise."
},
{
"agent_version": "5.6.0",
"integration":"kubernetes",
"check": "kubernetes_state.node.memory_pressure",
"statuses": ["ok", "critical"],
"groups": ["host", "node"],
"name": "Node Memory Pressure",
"description": "Returns `CRITICAL` if a cluster node is in a memory pressure state. Returns `OK` otherwise."
},
{
"agent_version": "5.6.0",
"integration":"kubernetes",
"check": "kubernetes_state.node.network_unavailable",
"statuses": ["ok", "critical"],
"groups": ["host", "node"],
"name": "Node Network Unavailable",
"description": "Returns `CRITICAL` if a cluster node is in a network unavailable state. Returns `OK` otherwise."
},
{
"agent_version": "5.6.0",
"integration":"kubernetes",
"check": "kubernetes_state.pod.phase",
"statuses": ["ok", "critical", "warning", "unknown"],
"groups": ["host", "pod"],
"name": "Pod Phase",
"description": "Returns `CRITICAL` if the pod is in phase `Failed`, `WARNING` if it is `Pending`, `UNKNOWN` if it is `Unknown` or `OK` otherwise."
}
]