Skip to content

Instantly share code, notes, and snippets.

@karan9
Created October 12, 2020 10:54
Show Gist options
  • Save karan9/cf55632074edea158973a9d32f7f07bb to your computer and use it in GitHub Desktop.
Save karan9/cf55632074edea158973a9d32f7f07bb to your computer and use it in GitHub Desktop.
var colls = db.getCollectionNames();
var ret = [];
colls.forEach(function(coll) {
var stats = db.getCollection(coll).stats();
ret.push({ "name": coll, "stats": stats});
})
printjson(ret)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment