在 shell 底下,執行以下
db.adminCommand( { listDatabases: 1 } )
查出 MongoDB 各個 collection 的 size
在 shell 底下,執行以下
var collectionNames = db.getCollectionNames(), stats = [];
collectionNames.forEach(function (n) { stats.push(db[n].stats()); });
stats = stats.sort(function(a, b) { return b['size'] - a['size']; });
for (var c in stats) { print(stats[c]['ns'] + ": " + stats[c]['size'] + " (" + stats[c]['storageSize'] + ")"); }
Example output (first metric is
size
, second is storageSize
)
沒有留言:
張貼留言