Created
January 10, 2016 10:37
-
-
Save hiquest/8a61b0737937197d210f to your computer and use it in GitHub Desktop.
Count how many times each endpoint has been hit
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
grep 'Started' production.log \ | |
| grep -o '".*"' \ | |
| sed --regexp-extended 's/[0-9]+/:id/' \ | |
| sort \ | |
| uniq -c \ | |
| sort --reverse \ | |
| more |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment