Skip to content

Instantly share code, notes, and snippets.

@djudd
Created June 21, 2013 18:41
Show Gist options
  • Save djudd/5833350 to your computer and use it in GitHub Desktop.
Save djudd/5833350 to your computer and use it in GitHub Desktop.
Get stats for all collections >= 1GB
db.getCollectionNames().forEach(function(c) {s = db[c].stats(1024*1024*1024); if (s.size > 0) { printjson(s); }})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment