Created
November 2, 2016 21:37
-
-
Save steveinatorx/277ccf7e2b6e016a5471923c24e1e6a8 to your computer and use it in GitHub Desktop.
This file contains 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
// find the latest query that matches criteria in mongodb | |
db.system.profile.find({ "op" : "command", "command.query.Criteria" : {"$exists": true} }, { "command" : 1}).limit(1).sort( { ts : -1 } ).pretty() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment