Skip to content

Instantly share code, notes, and snippets.

@murarisumit
Created May 23, 2017 08:30
Show Gist options
  • Save murarisumit/1b66a6801f13be210525e5e4ce86fbcf to your computer and use it in GitHub Desktop.
Save murarisumit/1b66a6801f13be210525e5e4ce86fbcf to your computer and use it in GitHub Desktop.
Requests made to nginx server, aggregated by IP, and sorted by the number of requests made.
tail -n 300000 /var/log/nginx/access.log | awk '{print $1}' | sort | uniq -c | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment