Skip to content

Instantly share code, notes, and snippets.

@coodix
Created August 17, 2012 14:16
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save coodix/3379015 to your computer and use it in GitHub Desktop.
Save coodix/3379015 to your computer and use it in GitHub Desktop.
Slow log parser
cat /var/log/php-fpm/php-slow.log | \
grep -v "/lib/vendor\|/lib/.*Filter\|cache/frontend\|+++ dump failed\|pool www\|script_filename" | \
cut -c 22- | grep "^$" -A 1 | grep "/" | \
grep `ls /srv/www/prod/releases/ | tac | head -1` | \
sort | uniq -c | sort -n | less
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment