Skip to content

Instantly share code, notes, and snippets.

@vxf
Last active August 29, 2015 14:04
Show Gist options
  • Save vxf/fef72cb63eb6368e2b5c to your computer and use it in GitHub Desktop.
Save vxf/fef72cb63eb6368e2b5c to your computer and use it in GitHub Desktop.
Top 10 hours in the apache log with 500 errors
cat other_vhosts_access.log | awk '$10 == 500 { print $5 $6}' | grep -o -e "../.../....:.." | sort | uniq -c | sort -r -n -k 1,1 | head -n 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment