Skip to content

Instantly share code, notes, and snippets.

@ryanwitt
Last active December 17, 2015 16:29
Show Gist options
  • Save ryanwitt/5638650 to your computer and use it in GitHub Desktop.
Save ryanwitt/5638650 to your computer and use it in GitHub Desktop.
// 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