summaryrefslogtreecommitdiffstats
path: root/src/health/health.d/cgroups.conf
blob: 52ca0262423de5d31cb6bb8c6537436849a00df0 (plain)
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
57
58
59
60
61
62
63
64
65
66
67
# you can disable an alarm notification by setting the 'to' line to: silent

   template: cgroup_10min_cpu_usage
         on: cgroup.cpu_limit
      class: Utilization
       type: Cgroups
  component: CPU
host labels: _os=linux
     lookup: average -10m unaligned
      units: %
      every: 1m
       warn: $this > (($status == $CRITICAL) ? (85) : (95))
      delay: down 15m multiplier 1.5 max 1h
    summary: Cgroup ${label:cgroup_name} CPU utilization
       info: Cgroup ${label:cgroup_name} average CPU utilization over the last 10 minutes
         to: silent

   template: cgroup_ram_in_use
         on: cgroup.mem_usage
      class: Utilization
       type: Cgroups
  component: Memory
host labels: _os=linux
       calc: ($ram) * 100 / $memory_limit
      units: %
      every: 10s
       warn: $this > (($status >= $WARNING)  ? (80) : (90))
       crit: $this > (($status == $CRITICAL) ? (90) : (98))
      delay: down 15m multiplier 1.5 max 1h
    summary: Cgroup ${label:cgroup_name} memory utilization
       info: Cgroup ${label:cgroup_name} memory utilization
         to: silent

# ---------------------------------K8s containers--------------------------------------------

   template: k8s_cgroup_10min_cpu_usage
         on: k8s.cgroup.cpu_limit
      class: Utilization
       type: Cgroups
  component: CPU
host labels: _os=linux
     lookup: average -10m unaligned
      units: %
      every: 1m
       warn: $this > (($status >= $WARNING)  ? (75) : (85))
      delay: down 15m multiplier 1.5 max 1h
    summary: Container ${label:k8s_container_name} pod ${label:k8s_pod_name} CPU utilization
       info: Container ${label:k8s_container_name} of pod ${label:k8s_pod_name} of namespace ${label:k8s_namespace}, \
             average CPU utilization over the last 10 minutes
         to: silent

   template: k8s_cgroup_ram_in_use
         on: k8s.cgroup.mem_usage
      class: Utilization
       type: Cgroups
  component: Memory
host labels: _os=linux
       calc: ($ram) * 100 / $memory_limit
      units: %
      every: 10s
       warn: $this > (($status >= $WARNING)  ? (80) : (90))
       crit: $this > (($status == $CRITICAL) ? (90) : (98))
      delay: down 15m multiplier 1.5 max 1h
    summary: Container ${label:k8s_container_name} pod ${label:k8s_pod_name} memory utilization
       info: container ${label:k8s_container_name} of pod ${label:k8s_pod_name} of namespace ${label:k8s_namespace}, \
             memory utilization
         to: silent