Last active
December 17, 2015 16:29
-
-
Save ryanwitt/5638650 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
// Check mongodb working set size (Mongo 2.4+). | |
// Paste this into mongo console, get back size in GB | |
db.runCommand({ | |
serverStatus:1, workingSet:1, metrics:0, locks:0 | |
}).workingSet.pagesInMemory * 4096 / (Math.pow(2,30)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment