Skip to content

Instantly share code, notes, and snippets.

@meyju
Created December 3, 2014 08:48
Show Gist options
  • Save meyju/1ed7bfa0dfdebb51218e to your computer and use it in GitHub Desktop.
Save meyju/1ed7bfa0dfdebb51218e to your computer and use it in GitHub Desktop.
Average Apache Process Memory Usage
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