summaryrefslogtreecommitdiffstats
path: root/health/guides/ram/used_swap.md
diff options
context:
space:
mode:
Diffstat (limited to 'health/guides/ram/used_swap.md')
-rw-r--r--health/guides/ram/used_swap.md24
1 files changed, 0 insertions, 24 deletions
diff --git a/health/guides/ram/used_swap.md b/health/guides/ram/used_swap.md
deleted file mode 100644
index 48b2c61022..0000000000
--- a/health/guides/ram/used_swap.md
+++ /dev/null
@@ -1,24 +0,0 @@
-### Understand the alert
-
-If the system needs more memory resources than your available RAM, inactive pages in memory can be moved into the swap space (or swap file). The Swap space (or swap file) is located on hard drives, which have a slower access time than physical memory.
-
-The Netdata Agent calculates the percentage of the used swap. This alert indicates high swap memory utilization. It may be a sign that the system has experienced memory pressure, which can affect the
-performance of your system. If there is no RAM and swap available, OOM Killer can start killing processes.
-
-This alert is triggered in warning state when the percentage of used swap is between 80-90% and in critical state when it is between 90-98%.
-
-### Troubleshoot the alert
-
-- Check per-process RAM usage to find the top consumers
-
-Linux:
-```
-top -b -o +%MEM | head -n 22
-```
-FreeBSD:
-```
-top -b -o res | head -n 22
-```
-
-It would be helpful to close any of the main consumer processes, but Netdata strongly suggests knowing exactly what processes you are closing and being certain that they are not necessary.
-