Skip to content

Instantly share code, notes, and snippets.

@parsibox
Created May 13, 2020 07:34
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 parsibox/776aee0714295e0611b81578608719e7 to your computer and use it in GitHub Desktop.
Save parsibox/776aee0714295e0611b81578608719e7 to your computer and use it in GitHub Desktop.
get nginx response time from log
cat /var/log/nginx/access.log | awk -F 'time:' '{print $2}' | sort | uniq -c | sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment