summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2021-03-17 19:40:16 +0300
committerGitHub <noreply@github.com>2021-03-17 19:40:16 +0300
commit0041eeee3a4505a7c8be3d260fb64f041d82ee5c (patch)
treeaf62803a3983e1a01016ab909f05c4824922654e /web
parent015a6385aa917379010f97e76700258d740cb30e (diff)
health: remove ram_in_swap alarm (#10789)
Diffstat (limited to 'web')
-rw-r--r--web/api/exporters/shell/README.md8
1 files changed, 3 insertions, 5 deletions
diff --git a/web/api/exporters/shell/README.md b/web/api/exporters/shell/README.md
index b919045f23..9d44a37070 100644
--- a/web/api/exporters/shell/README.md
+++ b/web/api/exporters/shell/README.md
@@ -38,14 +38,12 @@ echo ${NETDATA_SYSTEM_CPU_VISIBLETOTAL}
# what about alarms?
set | grep "^NETDATA_ALARM_SYSTEM_SWAP_"
-NETDATA_ALARM_SYSTEM_SWAP_RAM_IN_SWAP_STATUS=CRITICAL
-NETDATA_ALARM_SYSTEM_SWAP_RAM_IN_SWAP_VALUE=53
NETDATA_ALARM_SYSTEM_SWAP_USED_SWAP_STATUS=CLEAR
NETDATA_ALARM_SYSTEM_SWAP_USED_SWAP_VALUE=51
-# let's get the current status of the alarm 'ram in swap'
-echo ${NETDATA_ALARM_SYSTEM_SWAP_RAM_IN_SWAP_STATUS}
-CRITICAL
+# let's get the current status of the alarm 'used swap'
+echo ${NETDATA_ALARM_SYSTEM_SWAP_USED_SWAP_STATUS}
+CLEAR
# is it fast?
time curl -s 'http://localhost:19999/api/v1/allmetrics' >/dev/null