Skip to content

Instantly share code, notes, and snippets.

@tadas-s
Last active December 21, 2015 13:59
Show Gist options
  • Save tadas-s/6316807 to your computer and use it in GitHub Desktop.
Save tadas-s/6316807 to your computer and use it in GitHub Desktop.
average apache process size
# approx apache process count
ps -eLf | grep httpd | wc -l
# total and average memory stats
ps -ylC httpd --sort:rss | awk '{sum+=$8; ++n} END {print "Tot="sum"("n")";print "Avg="sum"/"n"="sum/n/1024"MB"}'
@tadas-s
Copy link
Author

tadas-s commented Aug 28, 2013

Just some snippets for Apache tunning

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment