- Reference >
- mongo Shell Methods >
- Database Methods >
- db.serverStatus()
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 } )
serverStatus includes all fields by default, except workingSet rangeDeleter, and some content in the repl document.
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 serverStatus includes by default.
See also
serverStatus for complete documentation of the output of this function.