Created
December 3, 2014 08:48
-
-
Save meyju/1ed7bfa0dfdebb51218e to your computer and use it in GitHub Desktop.
Average Apache Process Memory Usage
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ps aux | grep apache2 | grep -v pts | awk 'BEGIN {print "PID RSS COMMAND"} { total += $6; procs += 1; print $2,$6,$11 } END { print "TOTAL: ",total,"kb /",procs,"=",total/procs, "kb" }' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment