Skip to content

Instantly share code, notes, and snippets.

@deevis
Last active August 29, 2015 14:15
Show Gist options
  • Save deevis/3d34499cd441fe3f3375 to your computer and use it in GitHub Desktop.
Save deevis/3d34499cd441fe3f3375 to your computer and use it in GitHub Desktop.
Show requests by IP address from NGINX access log (for a particular day)
grep "19\/Feb\/2015" /var/log/nginx/access.log.1 | sed 's/\(.*\) - - .*/\1/g' | sort | uniq -c | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment