User Tools

Site Tools


ram_diagnostics

This is an old revision of the document!


Command organises ps output by rss
RSS stands for Resident Set Size
This is a actual number in kilobytes of how much RAM the current process is using.

ps -Fe --sort:-rss

ps -Fe --sort:-rss | head -11

Find the ram usage of a specific service:
ps --no-headers -o "rss,cmd" -C httpd | awk '{ sum+=$1 }
END { printf ("\nRAM statistics\n--------------\n") }
END { printf ("Total RAM:           %d%s\n", sum/1024, "M") }
END { printf ("Total processes:     %d\n", NR) }
END { printf ("Average RAM/process: %d%s\n", sum/NR/1024, "M\n") }'

ram_diagnostics.1430064229.txt.gz · Last modified: 2024/05/23 07:26 (external edit)

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki