Skip to content

Instantly share code, notes, and snippets.

@coldclimate
Created July 11, 2012 11:24
Show Gist options
  • Save coldclimate/3089756 to your computer and use it in GitHub Desktop.
Save coldclimate/3089756 to your computer and use it in GitHub Desktop.
Find the slowest 20 running queries in the last 100,000 entries in your mongo logs
tail -100000 mongod.log | gawk -F' ' '{print $NF}' | grep ms$ | sed 's/ms//g' |sort -n | tail -20 | xargs -I {} grep {}ms$ mongod.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment