Commands Available Only in M0, M2, and M5 Clusters and Serverless Instances
On this page
The following command is specific to Atlas free-tier and shared-tier clusters and Serverless instances:
atlasSize
Returns the cumulative size across all databases in free-tier and shared-tier clusters and Serverless instances 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.
Example Request
db.runCommand({atlasSize:1})
Example Response
{ "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 }