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

db.serverStatus()

db.serverStatus()

Returns a document that provides an overview of the database process’s state.

This command provides a wrapper around the database command serverStatus.

Changed in version 2.4: In 2.4 you can dynamically suppress portions of the db.serverStatus() output, or include suppressed sections in a document passed to the db.serverStatus() method, as in the following example:

db.serverStatus( { repl: 0, indexCounters: 0, locks: 0 } )
db.serverStatus( { workingSet: 1, metrics: 0, locks: 0 } )

db.serverStatus() includes all fields by default, except workingSet, by default.

Note

You may only dynamically include top-level fields from the serverStatus document that are not included by default. You can exclude any field that db.serverStatus() includes by default.

See also

serverStatus for complete documentation of the output of this function.