Skip to content

Instantly share code, notes, and snippets.

@aqt01
Created January 7, 2019 18:44
Show Gist options
  • Save aqt01/9dcd0164392deb09e8759a39105771a3 to your computer and use it in GitHub Desktop.
Save aqt01/9dcd0164392deb09e8759a39105771a3 to your computer and use it in GitHub Desktop.
Count nginx requests by status codes
sudo cat /var/log/nginx/access.log | cut -d '"' -f3 | cut -d ' ' -f2 | sort | uniq -c | sort -rn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment