Skip to content

Instantly share code, notes, and snippets.

@mewm
Created February 9, 2018 12:45
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 mewm/8ed6eb322283ed1a70fd078884217045 to your computer and use it in GitHub Desktop.
Save mewm/8ed6eb322283ed1a70fd078884217045 to your computer and use it in GitHub Desktop.
PHP memory

Php processes sorted by memory consumption

ps -ylC php-fpm --sort:rss

Average mem consumption

ps --no-headers -o "rss,cmd" -C php-fpm | awk '{ sum+=$1 } END { printf ("%d%s\n", sum/NR/1024,"M") }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment