For AI agents: a documentation index is available at https://www.mongodb.com/docs/llms.txt — markdown versions of all pages are available by appending .md to any URL path.
Docs Menu

Commands Available in Flex and Free clusters

The following command is specific to Atlas Flex clusters and Free clusters (formerly known as M0):

Returns the cumulative size across all databases for the following database statistics:

{
"totals": {
"collections": [number-total-collections],
"views": [number-total-views],
"objects": [number-total-objects],
"avgObjSize": [number-average-across-all],
"dataSize": [number-total-dataSize],
"storageSize": [number-total-storageSize],
"numExtents": [number-total-numExtents],
"indexes": [number-total-indexes],
"indexSize": [number-total-indexSize],
"fileSize": [number-total-fileSize],
"numDatabases": [number-total-databases],
"indexSize": [number-total-indexSize]
},
"atlasSize": [number-total-data-plus-total-index-size],
"ok": 1
}

The atlasSize field represents the combination of the total size of data and indexes in the cluster.

db.runCommand({atlasSize:1})
{
"totals" : {
"collections" : 11,
"views" : 0,
"objects" : NumberLong(530025),
"avgObjSize" : 277.0923742138365,
"dataSize" : NumberLong(532890980),
"storageSize" : NumberLong(555319296),
"numExtents" : NumberLong(0),
"indexes" : 11,
"indexSize" : NumberLong(4792320),
"fileSize" : NumberLong(0),
"numDatabases" : 4
},
"atlasSize" : NumberLong(537683300),
"ok" : 1
}

On this page