- Reference >
- Database Commands >
- Diagnostic Commands >
- dbStats
dbStats¶
On this page
Definition¶
-
dbStats
¶ The
dbStats
command returns storage statistics for a given database. The command takes the following syntax:{ dbStats: 1, scale: 1 }
The values of the options above do not affect the output of the command. The
scale
option allows you to specify how to scale byte values. For example, ascale
value of1024
will display the results in kilobytes rather than in bytes:{ dbStats: 1, scale: 1024 }
Note
Scaling rounds values to whole numbers.
In the
mongo
shell, thedb.stats()
function provides a wrapper arounddbStats
.
Behavior¶
The time required to run the command depends on the total size of the database. Because the command must touch all data files, the command may take several seconds to run.
Accuracy after Unexpected Shutdown¶
After an unclean shutdown of a mongod
using the Wired Tiger storage engine, count and size statistics reported by
dbStats
may be inaccurate.
The amount of drift depends on the number of insert, update, or delete
operations performed between the last checkpoint and the unclean shutdown. Checkpoints
usually occur every 60 seconds. However, mongod
instances running
with non-default --syncdelay
settings may have more or less frequent
checkpoints.
Run validate
on each collection on the mongod
to
to restore the correct statistics after an unclean shutdown.
Output¶
-
dbStats.
db
¶ Contains the name of the database.
-
dbStats.
collections
¶ Contains a count of the number of collections in that database.
-
dbStats.
objects
¶ Contains a count of the number of objects (i.e. documents) in the database across all collections.
-
dbStats.
avgObjSize
¶ The average size of each document in bytes. This is the
dataSize
divided by the number of documents.
-
dbStats.
dataSize
¶ The total size in bytes of the uncompressed data held in this database. The
scale
argument affects this value. ThedataSize
will decrease when you remove documents.For databases using the MMAPv1 storage engine,
dataSize
includes preallocated space and the padding factor. ThedataSize
will not decrease when documents shrink.For databases using the WiredTiger storage engine,
dataSize
may be larger thanstorageSize
if compression is enabled. ThedataSize
will decrease when documents shrink.
-
dbStats.
storageSize
¶ The total amount of space in bytes allocated to collections in this database for document storage. The
scale
argument affects this value. ThestorageSize
does not decrease as you remove or shrink documents. This value may be smaller thandataSize
for databases using the WiredTiger storage engine with compression enabled.
-
dbStats.
numExtents
¶ Contains a count of the number of extents in the database across all collections.
-
dbStats.
indexes
¶ Contains a count of the total number of indexes across all collections in the database.
-
dbStats.
indexSize
¶ The total size in bytes of all indexes created on this database. The
scale
arguments affects this value.
-
dbStats.
fileSize
¶ The total size in bytes of the data files that hold the database. This value includes preallocated space and the padding factor. The value of
fileSize
only reflects the size of the data files for the database and not the namespace file.The
scale
argument affects this value. Only present when using themmapv1
storage engine.
-
dbStats.
nsSizeMB
¶ The total size of the namespace files (i.e. that end with
.ns
) for this database. You cannot change the size of the namespace file after creating a database, but you can change the default size for all new namespace files with thensSize
runtime option.Only present when using the
mmapv1
storage engine.See also
The
nsSize
option, and Maximum Namespace File Size
-
dbStats.
dataFileVersion
¶ New in version 2.4.
Document that contains information about the on-disk format of the data files for the database. Only present when using the
mmapv1
storage engine.
-
dbStats.dataFileVersion.
major
¶ New in version 2.4.
The major version number for the on-disk format of the data files for the database. Only present when using the
mmapv1
storage engine.
-
dbStats.dataFileVersion.
minor
¶ New in version 2.4.
The minor version number for the on-disk format of the data files for the database. Only present when using the
mmapv1
storage engine.
-
dbStats.
extentFreeList
¶ New in version 3.0.0.
-
dbStats.extentFreeList.
num
¶ New in version 3.0.0.
Number of extents in the freelist. Only present when using the
mmapv1
storage engine.
-
dbStats.extentFreeList.
size
¶ New in version 3.0.0.
Total size of the extents on the freelist.
The
scale
argument affects this value. Only present when using themmapv1
storage engine.