Created
January 25, 2013 22:37
-
-
Save danhyun/4638559 to your computer and use it in GitHub Desktop.
get hourly breakdown of requests to apache
This file contains 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
grep "25/Jan" access_log | cut -d[ -f2 | cut -d] -f1 | awk -F: '{print $2":00"}' | sort -n | uniq -c |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment