Skip to content

Instantly share code, notes, and snippets.

@polsala
Created April 15, 2025 11:25
Show Gist options
  • Select an option

  • Save polsala/3ff148a2f8f8342b73c30393d555be89 to your computer and use it in GitHub Desktop.

Select an option

Save polsala/3ff148a2f8f8342b73c30393d555be89 to your computer and use it in GitHub Desktop.
db.getCollectionInfos().forEach(function(coll) {
var stats = db.getCollection(coll.name).stats();
var sizeGB = (stats.size / (1024 * 1024 * 1024)).toFixed(3);
print(coll.name + ": " + sizeGB + " GB");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment