Skip to content

Instantly share code, notes, and snippets.

@hiquest
Created January 10, 2016 10:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hiquest/8a61b0737937197d210f to your computer and use it in GitHub Desktop.
Save hiquest/8a61b0737937197d210f to your computer and use it in GitHub Desktop.
Count how many times each endpoint has been hit
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