Skip to content

Instantly share code, notes, and snippets.

@jetsuit
Created January 31, 2018 17:17
Show Gist options
  • Save jetsuit/80d146a999f7e93557233097a1caf986 to your computer and use it in GitHub Desktop.
Save jetsuit/80d146a999f7e93557233097a1caf986 to your computer and use it in GitHub Desktop.
Get PHP-FPM memory usage
ps -eo size,pid,user,command --sort -size | awk '{ hr=$1/1024 ; printf("%13.2f Mb ",hr) } { for ( x=4 ; x<=NF ; x++ ) { printf("%s ",$x) } print "" }' | grep php-fpm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment