summaryrefslogtreecommitdiffstats
path: root/health
diff options
context:
space:
mode:
authorVladimir Kobal <vlad@prokk.net>2021-03-12 09:48:16 +0200
committerGitHub <noreply@github.com>2021-03-12 09:48:16 +0200
commit88fa66957558ccf8b30194d5fee68bdf9a94bcf2 (patch)
tree22b36921842a430d8ec8e501fdfe0b609a8eca99 /health
parente6edabeb05e9581801750ad8f749013c907625d0 (diff)
Add Working Set charts to the cgroups plugin (#10712)
Diffstat (limited to 'health')
-rw-r--r--health/health.d/cgroups.conf13
1 files changed, 0 insertions, 13 deletions
diff --git a/health/health.d/cgroups.conf b/health/health.d/cgroups.conf
index 79ece53f97..0157f3efed 100644
--- a/health/health.d/cgroups.conf
+++ b/health/health.d/cgroups.conf
@@ -26,16 +26,3 @@ template: cgroup_ram_in_use
delay: down 15m multiplier 1.5 max 1h
info: RAM used by cgroup
to: sysadmin
-
-template: cgroup_ram_and_swap_in_use
- on: cgroup.mem_usage
- os: linux
- hosts: *
- calc: ($ram + $swap) * 100 / $memory_and_swap_limit
- units: %
- every: 10s
- warn: $this > (($status >= $WARNING) ? (80) : (90))
- crit: $this > (($status == $CRITICAL) ? (90) : (98))
- delay: down 15m multiplier 1.5 max 1h
- info: RAM and Swap used by cgroup
- to: sysadmin