- Reference >
- Database Profiler Output
Database Profiler Output¶
On this page
The database profiler captures data information about read and write operations, cursor operations, and database commands. To configure the database profile and set the thresholds for capturing profile data, see the Analyze Performance of Database Operations section.
The database profiler writes data in the system.profile collection,
which is a capped collection. To view the profiler’s output,
use normal MongoDB queries on the system.profile collection.
Note
Because the database profiler writes data to the
system.profile collection in a
database, the profiler will profile some write activity, even for
databases that are otherwise read-only.
Example system.profile Document¶
The documents in the system.profile collection have the following form. This
example document reflects an update operation:
Output Reference¶
For any single operation, the documents created by the database profiler will include a subset of the following fields. The precise selection of fields in these documents depends on the type of operation.
-
system.profile.ts¶ The timestamp of the operation.
-
system.profile.op¶ The type of operation. The possible values are:
insertqueryupdateremovegetmorecommand
-
system.profile.ns¶ The namespace the operation targets. Namespaces in MongoDB take the form of the database, followed by a dot (
.), followed by the name of the collection.
-
system.profile.query¶ The query document used. See Query Specification Documents for more information on these documents, and Meta Query Operator Quick Reference for more information.
-
system.profile.command¶ The command operation.
-
system.profile.updateobj¶ The update document passed in during an update operation.
-
system.profile.cursorid¶ The ID of the cursor accessed by a
getmoreoperation.
-
system.profile.ntoreturn¶ Changed in version 2.2: In 2.0, MongoDB includes this field for
queryandcommandoperations. In 2.2, this information MongoDB also includes this field forgetmoreoperations.The number of documents the operation specified to return. For example, the
profilecommand would return one document (a results document) so thentoreturnvalue would be1. Thelimit(5)command would return five documents so thentoreturnvalue would be5.If the
ntoreturnvalue is0, the command did not specify a number of documents to return, as would be the case with a simplefind()command with no limit specified.
-
system.profile.ntoskip¶ New in version 2.2.
The number of documents the
skip()method specified to skip.
-
system.profile.nscanned¶ The number of documents that MongoDB scans in the index in order to carry out the operation.
In general, if
nscannedis much higher thannreturned, the database is scanning many objects to find the target objects. Consider creating an index to improve this.
-
system.profile.moved¶ If
movedhas a value oftrueindicates that the update operation moved one or more documents to a new location on disk. These operations take more time than in-place updates, and typically occur when documents grow as a result of document growth.
-
system.profile.nmoved¶ New in version 2.2.
The number of documents moved on disk by the operation.
-
system.profile.nupdated¶ New in version 2.2.
The number of documents updated by the operation.
-
system.profile.keyUpdates¶ New in version 2.2.
The number of index keys the update changed in the operation. Changing an index key carries a small performance cost because the database must remove the old key and inserts a new key into the B-tree index.
-
system.profile.numYield¶ New in version 2.2.
The number of times the operation yielded to allow other operations to complete. Typically, operations yield when they need access to data that MongoDB has not yet fully read into memory. This allows other operations that have data in memory to complete while MongoDB reads in data for the yielding operation. For more information, see the FAQ on when operations yield.
-
system.profile.lockStats¶ New in version 2.2.
The time in microseconds the operation spent acquiring and holding locks. This field reports data for the following lock types:
R- global read lockW- global write lockr- database-specific read lockw- database-specific write lock
-
system.profile.lockStats.timeLockedMicros¶ The time in microseconds the operation held a specific lock. For operations that require more than one lock, like those that lock the
localdatabase to update the oplog, then this value may be longer than the total length of the operation (i.e.millis.)
-
system.profile.lockStats.timeAcquiringMicros¶ The time in microseconds the operation spent waiting to acquire a specific lock.
-
system.profile.nreturned¶ The number of documents returned by the operation.
-
system.profile.responseLength¶ The length in bytes of the operation’s result document. A large
responseLengthcan affect performance. To limit the size of the result document for a query operation, you can use any of the following:
-
system.profile.millis¶ The time in milliseconds for the server to perform the operation. This time does not include network time nor time to acquire the lock.
-
system.profile.client¶ The IP address or hostname of the client connection where the operation originates.
For some operations, such as
db.eval(), the client is0.0.0.0:0instead of an actual client.
-
system.profile.user¶ The authenticated user who ran the operation.