Last active
December 14, 2023 00:15
-
-
Save thiagobrabo/8a437aba49905b9c690621f67132ff58 to your computer and use it in GitHub Desktop.
mongodb list top collections size
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
function getTopCollectionSizes(limit = 10) { | |
let counter = 0; | |
db.getCollectionNames().map(function(name) { | |
let collectionStats = db.getCollection(name).stats(); | |
let sizeInMB = (collectionStats["size"] / (1024 * 1024)).toFixed(2); // Convert bytes to megabytes | |
let storageSizeInMB = (collectionStats["storageSize"] / (1024 * 1024)).toFixed(2); // Convert bytes to megabytes | |
return { | |
"name": name, | |
"size": sizeInMB, | |
"storageSize": storageSizeInMB | |
}; | |
}).sort(function(a, b) { | |
return b["size"] - a["size"]; | |
}).forEach(function(x) { | |
if (counter < limit) { | |
let pad = " "; | |
print(x.name + pad.slice(0, Math.max(24 - x.name.length, 0)) + | |
"Size: " + x.size + " MB\t" + | |
"Storage Size: " + x.storageSize + " MB"); | |
counter++; | |
} | |
}); | |
} | |
getTopCollectionSizes(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment