Skip to content

Instantly share code, notes, and snippets.

@bdossantos
Created February 26, 2013 16:04
Show Gist options
  • Save bdossantos/5039608 to your computer and use it in GitHub Desktop.
Save bdossantos/5039608 to your computer and use it in GitHub Desktop.
php5-fpm memory usage
ps -ylC php5-fpm --sort:rss | awk '!/RSS/ { s+=$8 } END { printf "%s\n", "Total memory used by PHP-FPM child processes: "; printf "%dM\n", s/1024 }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment