Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions source/reference/server-status.txt
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ mem

.. status:: mem.virtual

:status:`mem.virtual` displays the quantity, in bytes, of virtual memory
:status:`mem.virtual` displays the quantity, in megabytes (MB), of virtual memory
used by the :program:`mongod` process. In typical deployments this value
is slightly larger than :status:`mem.mapped`. If this value is
significantly (i.e. gigabytes) larger than :status:`mem.mapped`,
Expand All @@ -428,10 +428,19 @@ mem

.. status:: mem.mapped

The value of :status:`mem.mapped` provides the amount of mapped memory by
The value of :status:`mem.mapped` provides the amount of mapped memory,
in megabytes (MB), by
the database. Because MongoDB uses memory-mapped files, this value
is likely to be to be roughly equivalent to the total size of your
database or databases.

.. status:: mem.mappedWithJournal

:status:`mem.mappedWithJournal` provides the amount of
mapped memory, in megabytes (MB), including the memory used for
journaling.
This value will always be twice the value of :status:`mem.mapped`.
This field is only included if journaling is enabled.

.. _server-status-connections:

Expand Down