Skip to content

Instantly share code, notes, and snippets.

@lukecav
Created May 6, 2021 15:14
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 lukecav/5cb3d55dc649c7ad321dd3cf0d141d27 to your computer and use it in GitHub Desktop.
Save lukecav/5cb3d55dc649c7ad321dd3cf0d141d27 to your computer and use it in GitHub Desktop.
Find the PHP-FPM usage and PHP-FPM average
ps -ylC php-fpm --sort:rss
ps --no-headers -o "rss,cmd" -C php-fpm | awk '{ sum+=$1 } END { printf ("%d%s\n", sum/NR/1024,"Mb") }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment