Skip to content

Instantly share code, notes, and snippets.

@balazs-endresz
Last active August 29, 2015 14:26
Show Gist options
  • Save balazs-endresz/7f209b929bcc9cfaa69c to your computer and use it in GitHub Desktop.
Save balazs-endresz/7f209b929bcc9cfaa69c to your computer and use it in GitHub Desktop.
sort entries in server log by page load time
| grep -E '[0-9]{4,10} msecs'|grep -Eo '(POST|GET) [^ ]*|[0-9]* msecs' | sed -r '$!N;s/([^\n]*)\n([^\n]*)/\2 \1/' |sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment