Created
May 23, 2017 08:30
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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