Navigation
This version of the documentation is archived and no longer supported.

db.stats()

On this page

Description

db.stats(scale)

Returns statistics that reflect the use state of a single database.

The db.stats() method has the following parameter:

Parameter Type Description
scale number Optional. The scale at which to deliver results. Unless specified, this command returns all data in bytes.
Returns:A document with statistics reflecting the database system’s state. For an explanation of the output, see dbStats.

The db.stats() method is a wrapper around the dbStats database command.

Example

The following example converts the returned values to kilobytes:

db.stats(1024)

Note

The scale factor rounds values to whole numbers. This can produce unpredictable and unexpected results in some situations.