Skip to content

Instantly share code, notes, and snippets.

@raoulwegat
Last active September 16, 2023 04:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raoulwegat/d54a7aeb5368048cf949966d0888fd46 to your computer and use it in GitHub Desktop.
Save raoulwegat/d54a7aeb5368048cf949966d0888fd46 to your computer and use it in GitHub Desktop.
PHP-FPM Average Memory Usage.md

Get PHP-FPM Average 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