Created
September 14, 2011 14:03
-
-
Save BDQ/1216639 to your computer and use it in GitHub Desktop.
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
#longest actions (total) | |
grep "Completed 200 OK in" log/production.log | cut -d' ' -f 5 | grep '[0-9.]*' -o | sort -n | |
#longest actions (view) | |
# grep "Completed 200 OK in" log/production.log | cut -d' ' -f 7 | grep '[0-9.]*' -o | sort -n | |
# longest actions (database) | |
# grep "Completed 200 OK in" log/production.log | cut -d' ' -f 10 | grep '[0-9.]*' -o | sort -n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment