Total response time is 0 . Average response time is 0
Current number of document in the profile
MongoDB
Enterprise > db.system.profile.count();
1030
MongoDB
Enterprise >
Slow performing query
The below query will show the sql query which is greater
than 10milli seconds .
MongoDB
Enterprise > db.system.profile.find( { "millis" : { $gt:10}} )
{
"op" : "command", "ns" :
"admin.doccollect", "command" : { "create" :
"doccollect", "$db" : "admin" },
"numYield" : 0, "locks" : { "Global" : {
"acquireCount" : { "r" : NumberLong(1), "w" :
NumberLong(1) } }, "Database" : { "acquireCount" : {
"W" : NumberLong(1) } } }, "responseLength" : 38,
"protocol" : "op_msg", "millis" : 29, "ts" :
ISODate("2018-10-14T03:26:48.352Z"), "client" : "127.0.0.1",
"appName" : "MongoDB Shell", "allUsers" : [ ],
"user" : "" }
{
"op" : "insert", "ns" :
"admin.docccollect", "command" : { "insert" :
"docccollect", "ordered" : true, "$db" :
"admin" }, "ninserted" : 1, "keysInserted" : 1,
"numYield" : 0, "locks" : { "Global" : {
"acquireCount" : { "r" : NumberLong(3), "w" :
NumberLong(3) } }, "Database" : { "acquireCount" : {
"W" : NumberLong(3) } }, "Collection" : { "acquireCount"
: { "w" : NumberLong(2) } } }, "responseLength" : 45,
"protocol" : "op_msg", "millis" : 27,
"ts" : ISODate("2018-10-14T03:26:53.671Z"),
"client" : "127.0.0.1", "appName" : "MongoDB
Shell", "allUsers" : [ ], "user" : "" }
MongoDB
Enterprise >
MongoDB
Enterprise > db.system.profile.find().sort( { millis: -1}). limit(1)
{
"op" : "command", "ns" :
"admin.doccollect", "command" : { "create" :
"doccollect", "$db" : "admin" },
"numYield" : 0, "locks" : { "Global" : {
"acquireCount" : { "r" : NumberLong(1), "w" :
NumberLong(1) } }, "Database" : { "acquireCount" : {
"W" : NumberLong(1) } } }, "responseLength" : 38,
"protocol" : "op_msg", "millis" : 29,
"ts" : ISODate("2018-10-14T03:26:48.352Z"),
"client" : "127.0.0.1", "appName" : "MongoDB
Shell", "allUsers" : [ ], "user" : "" }
MongoDB
Enterprise >
Listing Top 10 slow queries :
MongoDB
Enterprise > db.system.profile.find().sort( { natural:-1}). limit(10);
{
"op" : "command", "ns" :
"admin.system.profile", "command" : { "count" :
"system.profile", "query" : { }, "fields" : { }, "$db" : "admin" },
"keysExamined" : 0, "docsExamined" : 0,
"numYield" : 0, "locks" : { "Global" : {
"acquireCount" : { "r" : NumberLong(1) } },
"Database" : { "acquireCount" : { "r" :
NumberLong(1) } }, "Collection" : { "acquireCount" : {
"r" : NumberLong(1) } } }, "responseLength" : 45,
"protocol" : "op_msg", "millis" : 0,
"planSummary" : "COUNT", "execStats" : {
"stage" : "COUNT", "nReturned" : 0,
"executionTimeMillisEstimate" : 0, "works" : 1,
"advanced" : 0, "needTime" : 0, "needYield" : 0,
"saveState" : 0, "restoreState" : 0, "isEOF" : 1,
"invalidates" : 0, "nCounted" : 0, "nSkipped" : 0
}, "ts" : ISODate("2018-10-14T02:28:59.248Z"),
"client" : "127.0.0.1", "appName" : "MongoDB
Shell", "allUsers" : [ ], "user" : "" }
{
"op" : "command", "ns" :
"admin.system.profile", "command" : { "count" :
"system.profile", "query" : { }, "fields" : { }, "$db" : "admin" },
"keysExamined" : 0, "docsExamined" : 0, "numYield"
: 0, "locks" : { "Global" : { "acquireCount" : {
"r" : NumberLong(1) } }, "Database" : {
"acquireCount" : { "r" : NumberLong(1) } },
"Collection" : { "acquireCount" : { "r" :
NumberLong(1) } } }, "responseLength" : 45, "protocol" :
"op_msg", "millis" : 0, "planSummary" :
"COUNT", "execStats" : { "stage" :
"COUNT", "nReturned" : 0,
"executionTimeMillisEstimate" : 0, "works" : 1,
"advanced" : 0, "needTime" : 0, "needYield" : 0,
"saveState" : 0, "restoreState" : 0, "isEOF" : 1,
"invalidates" : 0, "nCounted" : 1, "nSkipped" : 0
}, "ts" : ISODate("2018-10-14T02:29:37.614Z"),
"client" : "127.0.0.1", "appName" : "MongoDB
Shell", "allUsers" : [ ], "user" : "" }
{
"op" : "query", "ns" :
"admin.system.profile", "command" : { "find" :
"system.profile", "filter" : { "millis" : {
"$gt" : 0 } }, "limit" : 5, "singleBatch" :
false, "sort" : { "$natural" : -1 }, "$db" :
"admin" }, "keysExamined" : 0, "docsExamined" : 2,
"cursorExhausted" : true, "numYield" : 0,
"nreturned" : 0, "locks" : { "Global" : {
"acquireCount" : { "r" : NumberLong(1) } },
"Database" : { "acquireCount" : { "r" :
NumberLong(1) } }, "Collection" : { "acquireCount" : {
"r" : NumberLong(1) } } }, "responseLength" : 109,
"protocol" : "op_msg", "millis" : 0,
"planSummary" : "COLLSCAN", "execStats" : {
"stage" : "LIMIT", "nReturned" : 0,
"executionTimeMillisEstimate" : 0, "works" : 4,
"advanced" : 0, "needTime" : 3, "needYield" : 0,
"saveState" : 0, "restoreState" : 0, "isEOF" : 1,
"invalidates" : 0, "limitAmount" : 5,
"inputStage" : { "stage" : "COLLSCAN",
"filter" : { "millis" : { "$gt" : 0 } },
"nReturned" : 0, "executionTimeMillisEstimate" : 0,
"works" : 4, "advanced" : 0, "needTime" : 3,
"needYield" : 0, "saveState" : 0, "restoreState"
: 0, "isEOF" : 1, "invalidates" : 0, "direction"
: "backward", "docsExamined" : 2 } }, "ts" :
ISODate("2018-10-14T02:29:37.615Z"), "client" :
"127.0.0.1", "appName" : "MongoDB Shell",
"allUsers" : [ ], "user" : "" }
{
"op" : "command", "ns" :
"admin.system.profile", "command" : { "count" :
"system.profile", "query" : { }, "fields" : { }, "$db" : "admin" },
"keysExamined" : 0, "docsExamined" : 0,
"numYield" : 0, "locks" : { "Global" : {
"acquireCount" : { "r" : NumberLong(1) } },
"Database" : { "acquireCount" : { "r" :
NumberLong(1) } }, "Collection" : { "acquireCount" : {
"r" : NumberLong(1) } } }, "responseLength" : 45,
"protocol" : "op_msg", "millis" : 0,
"planSummary" : "COUNT", "execStats" : {
"stage" : "COUNT", "nReturned" : 0,
"executionTimeMillisEstimate" : 0, "works" : 1,
"advanced" : 0, "needTime" : 0, "needYield" : 0,
"saveState" : 0, "restoreState" : 0, "isEOF" : 1,
"invalidates" : 0, "nCounted" : 3, "nSkipped" : 0
}, "ts" : ISODate("2018-10-14T02:29:51.799Z"),
"client" : "127.0.0.1", "appName" : "MongoDB
Shell", "allUsers" : [ ], "user" : "" }
{
"op" : "query", "ns" :
"admin.system.profile", "command" : { "find" :
"system.profile", "filter" : { "millis" : {
"$gt" : 0 } }, "limit" : 5, "singleBatch" :
false, "sort" : { "$natural" : -1 }, "$db" :
"admin" }, "keysExamined" : 0, "docsExamined" :
4, "cursorExhausted" : true, "numYield" : 0,
"nreturned" : 0, "locks" : { "Global" : {
"acquireCount" : { "r" : NumberLong(1) } },
"Database" : { "acquireCount" : { "r" : NumberLong(1)
} }, "Collection" : { "acquireCount" : { "r" :
NumberLong(1) } } }, "responseLength" : 109, "protocol" :
"op_msg", "millis" : 0, "planSummary" :
"COLLSCAN", "execStats" : { "stage" :
"LIMIT", "nReturned" : 0,
"executionTimeMillisEstimate" : 0, "works" : 6,
"advanced" : 0, "needTime" : 5, "needYield" : 0,
"saveState" : 0, "restoreState" : 0, "isEOF" : 1,
"invalidates" : 0, "limitAmount" : 5, "inputStage"
: { "stage" : "COLLSCAN", "filter" : {
"millis" : { "$gt" : 0 } }, "nReturned" : 0,
"executionTimeMillisEstimate" : 0, "works" : 6,
"advanced" : 0, "needTime" : 5, "needYield" : 0,
"saveState" : 0, "restoreState" : 0, "isEOF" : 1,
"invalidates" : 0, "direction" : "backward",
"docsExamined" : 4 } }, "ts" :
ISODate("2018-10-14T02:29:51.800Z"), "client" :
"127.0.0.1", "appName" : "MongoDB Shell",
"allUsers" : [ ], "user" : "" }
{
"op" : "command", "ns" :
"admin.system.profile", "command" : { "aggregate"
: "system.profile", "pipeline" : [ { "$group" : {
"_id" : "$op", "count" : { "$sum" : 1
}, "max response time" : { "$max" : "$millis" },
"avg response time" : { "$avg" : "$millis" } } }
], "cursor" : { },
"$db" : "admin" }, "keysExamined" : 0,
"docsExamined" : 5, "cursorExhausted" : true,
"numYield" : 0, "nreturned" : 2, "locks" : {
"Global" : { "acquireCount" : { "r" :
NumberLong(2) } }, "Database" : { "acquireCount" : {
"r" : NumberLong(2) } }, "Collection" : {
"acquireCount" : { "r" : NumberLong(2) } } },
"responseLength" : 287, "protocol" : "op_msg",
"millis" : 0, "planSummary" : "COLLSCAN",
"ts" : ISODate("2018-10-14T03:22:26.783Z"),
"client" : "127.0.0.1", "appName" : "MongoDB
Shell", "allUsers" : [ ], "user" : "" }
{
"op" : "command", "ns" :
"admin.doccollect", "command" : { "create" :
"doccollect", "$db" : "admin" },
"numYield" : 0, "locks" : { "Global" : {
"acquireCount" : { "r" : NumberLong(1), "w" :
NumberLong(1) } }, "Database" : { "acquireCount" : {
"W" : NumberLong(1) } } }, "responseLength" : 38,
"protocol" : "op_msg", "millis" : 29,
"ts" : ISODate("2018-10-14T03:26:48.352Z"),
"client" : "127.0.0.1", "appName" : "MongoDB
Shell", "allUsers" : [ ], "user" : "" }
{
"op" : "insert", "ns" :
"admin.docccollect", "command" : { "insert" :
"docccollect", "ordered" : true, "$db" :
"admin" }, "ninserted" : 1, "keysInserted" : 1,
"numYield" : 0, "locks" : { "Global" : {
"acquireCount" : { "r" : NumberLong(3), "w" :
NumberLong(3) } }, "Database" : { "acquireCount" : {
"W" : NumberLong(3) } }, "Collection" : { "acquireCount"
: { "w" : NumberLong(2) } } }, "responseLength" : 45,
"protocol" : "op_msg", "millis" : 27,
"ts" : ISODate("2018-10-14T03:26:53.671Z"),
"client" : "127.0.0.1", "appName" : "MongoDB
Shell", "allUsers" : [ ], "user" : "" }
{
"op" : "insert", "ns" :
"admin.docccollect", "command" : { "insert" :
"docccollect", "ordered" : true, "$db" : "admin"
}, "ninserted" : 1, "keysInserted" : 1,
"numYield" : 0, "locks" : { "Global" : {
"acquireCount" : { "r" : NumberLong(1), "w" :
NumberLong(1) } }, "Database" : { "acquireCount" : {
"W" : NumberLong(1) } }, "Collection" : {
"acquireCount" : { "w" : NumberLong(1) } } },
"responseLength" : 45, "protocol" : "op_msg",
"millis" : 0, "ts" :
ISODate("2018-10-14T03:26:53.672Z"), "client" :
"127.0.0.1", "appName" : "MongoDB Shell",
"allUsers" : [ ], "user" : "" }
{
"op" : "insert", "ns" :
"admin.docccollect", "command" : { "insert" :
"docccollect", "ordered" : true, "$db" :
"admin" }, "ninserted" : 1, "keysInserted" : 1,
"numYield" : 0, "locks" : { "Global" : {
"acquireCount" : { "r" : NumberLong(1), "w" :
NumberLong(1) } }, "Database" : { "acquireCount" : {
"W" : NumberLong(1) } }, "Collection" : {
"acquireCount" : { "w" : NumberLong(1) } } },
"responseLength" : 45, "protocol" : "op_msg",
"millis" : 0, "ts" : ISODate("2018-10-14T03:26:53.673Z"),
"client" : "127.0.0.1", "appName" : "MongoDB
Shell", "allUsers" : [ ], "user" : "" }
MongoDB
Enterprise >
List only queries
MongoDB
Enterprise > db.system.profile.find().sort ( { $natural: -1}). limit(10)
{
"op" : "command", "ns" :
"admin.system.profile", "command" : { "aggregate"
: "system.profile", "pipeline" : [ { "$group" : {
"_id" : "$op", "count" : { "$sum" : 1
}, "max response time" : { "$max" : "$millis" },
"avg response time" : { "$avg" : "$millis" } } }
], "cursor" : { },
"$db" : "admin" }, "keysExamined" : 0,
"docsExamined" : 1029, "cursorExhausted" : true,
"numYield" : 8, "nreturned" : 3, "locks" : {
"Global" : { "acquireCount" : { "r" :
NumberLong(10) } }, "Database" : { "acquireCount" : {
"r" : NumberLong(10) } }, "Collection" : {
"acquireCount" : { "r" : NumberLong(10) } } }, "responseLength"
: 376, "protocol" : "op_msg", "millis" : 1,
"planSummary" : "COLLSCAN", "ts" :
ISODate("2018-10-14T03:35:09.032Z"), "client" :
"127.0.0.1", "appName" : "MongoDB Shell",
"allUsers" : [ ], "user" : "" }
{
"op" : "query", "ns" :
"admin.docccollect", "command" : { "find" :
"docccollect", "filter" : { "SL_No" : 6 },
"$db" : "admin" }, "keysExamined" : 0,
"docsExamined" : 1000, "cursorExhausted" : true,
"numYield" : 7, "nreturned" : 2, "locks" : {
"Global" : { "acquireCount" : { "r" : NumberLong(8)
} }, "Database" : { "acquireCount" : { "r" :
NumberLong(8) } }, "Collection" : { "acquireCount" : {
"r" : NumberLong(8) } } }, "responseLength" : 186,
"protocol" : "op_msg", "millis" : 0,
"planSummary" : "COLLSCAN", "execStats" : {
"stage" : "COLLSCAN", "filter" : {
"SL_No" : { "$eq" : 6 } }, "nReturned" : 2,
"executionTimeMillisEstimate" : 0, "works" : 1002,
"advanced" : 2, "needTime" : 999, "needYield" :
0, "saveState" : 7, "restoreState" : 7, "isEOF" :
1, "invalidates" : 0, "direction" : "forward",
"docsExamined" : 1000 }, "ts" :
ISODate("2018-10-14T03:35:02.745Z"), "client" :
"127.0.0.1", "appName" : "MongoDB Shell",
"allUsers" : [ ], "user" : "" }
{
"op" : "query", "ns" :
"admin.docccollect", "command" : { "find" :
"docccollect", "filter" : { "SL_No" : 9 },
"$db" : "admin" }, "keysExamined" : 0,
"docsExamined" : 1000, "cursorExhausted" : true,
"numYield" : 7, "nreturned" : 2, "locks" : {
"Global" : { "acquireCount" : { "r" :
NumberLong(8) } }, "Database" : { "acquireCount" : {
"r" : NumberLong(8) } }, "Collection" : {
"acquireCount" : { "r" : NumberLong(8) } } },
"responseLength" : 186, "protocol" : "op_msg",
"millis" : 0, "planSummary" : "COLLSCAN",
"execStats" : { "stage" : "COLLSCAN",
"filter" : { "SL_No" : { "$eq" : 9 } }, "nReturned"
: 2, "executionTimeMillisEstimate" : 0, "works" : 1002,
"advanced" : 2, "needTime" : 999, "needYield" :
0, "saveState" : 7, "restoreState" : 7, "isEOF" :
1, "invalidates" : 0, "direction" : "forward",
"docsExamined" : 1000 }, "ts" :
ISODate("2018-10-14T03:34:56.815Z"), "client" :
"127.0.0.1", "appName" : "MongoDB Shell",
"allUsers" : [ ], "user" : "" }
{
"op" : "query", "ns" :
"admin.docccollect", "command" : { "find" :
"docccollect", "filter" : { "SL_No" : 20 },
"$db" : "admin" }, "keysExamined" : 0,
"docsExamined" : 1000, "cursorExhausted" : true,
"numYield" : 7, "nreturned" : 2, "locks" : {
"Global" : { "acquireCount" : { "r" :
NumberLong(8) } }, "Database" : { "acquireCount" : {
"r" : NumberLong(8) } }, "Collection" : {
"acquireCount" : { "r" : NumberLong(8) } } }, "responseLength"
: 186, "protocol" : "op_msg", "millis" : 0,
"planSummary" : "COLLSCAN", "execStats" : {
"stage" : "COLLSCAN", "filter" : {
"SL_No" : { "$eq" : 20 } }, "nReturned" : 2,
"executionTimeMillisEstimate" : 0, "works" : 1002,
"advanced" : 2, "needTime" : 999, "needYield" :
0, "saveState" : 7, "restoreState" : 7, "isEOF" :
1, "invalidates" : 0, "direction" : "forward",
"docsExamined" : 1000 }, "ts" :
ISODate("2018-10-14T03:34:45.520Z"), "client" :
"127.0.0.1", "appName" : "MongoDB Shell", "allUsers"
: [ ], "user" : "" }
{
"op" : "query", "ns" :
"admin.docccolect", "command" : { "find" :
"docccolect", "filter" : { " SL_No " : 17 },
"$db" : "admin" }, "keysExamined" : 0,
"docsExamined" : 0, "cursorExhausted" : true,
"numYield" : 0, "nreturned" : 0, "locks" : {
"Global" : { "acquireCount" : { "r" :
NumberLong(1) } }, "Database" : { "acquireCount" : {
"r" : NumberLong(1) } }, "Collection" : {
"acquireCount" : { "r" : NumberLong(1) } } },
"responseLength" : 105, "protocol" : "op_msg",
"millis" : 0, "planSummary" : "EOF",
"execStats" : { "stage" : "EOF",
"nReturned" : 0, "executionTimeMillisEstimate" : 0,
"works" : 0, "advanced" : 0, "needTime" : 0,
"needYield" : 0, "saveState" : 0, "restoreState"
: 0, "isEOF" : 1, "invalidates" : 0 }, "ts" :
ISODate("2018-10-14T03:34:20.706Z"), "client" :
"127.0.0.1", "appName" : "MongoDB Shell",
"allUsers" : [ ], "user" : "" }
{
"op" : "query", "ns" :
"admin.docccolect", "command" : { "find" :
"docccolect", "filter" : { " SL_No " : 1 },
"$db" : "admin" }, "keysExamined" : 0,
"docsExamined" : 0, "cursorExhausted" : true,
"numYield" : 0, "nreturned" : 0, "locks" : {
"Global" : { "acquireCount" : { "r" :
NumberLong(1) } }, "Database" : { "acquireCount" : {
"r" : NumberLong(1) } }, "Collection" : {
"acquireCount" : { "r" : NumberLong(1) } } },
"responseLength" : 105, "protocol" : "op_msg",
"millis" : 0, "planSummary" : "EOF",
"execStats" : { "stage" : "EOF",
"nReturned" : 0, "executionTimeMillisEstimate" : 0,
"works" : 0, "advanced" : 0, "needTime" : 0,
"needYield" : 0, "saveState" : 0, "restoreState"
: 0, "isEOF" : 1, "invalidates" : 0 }, "ts" :
ISODate("2018-10-14T03:34:11.094Z"), "client" :
"127.0.0.1", "appName" : "MongoDB Shell",
"allUsers" : [ ], "user" : "" }
{
"op" : "query", "ns" :
"admin.docccolect", "command" : { "find" :
"docccolect", "filter" : { "SL_No" : 1 },
"$db" : "admin" }, "keysExamined" : 0, "docsExamined"
: 0, "cursorExhausted" : true, "numYield" : 0,
"nreturned" : 0, "locks" : { "Global" : {
"acquireCount" : { "r" : NumberLong(1) } },
"Database" : { "acquireCount" : { "r" :
NumberLong(1) } }, "Collection" : { "acquireCount" : {
"r" : NumberLong(1) } } }, "responseLength" : 105,
"protocol" : "op_msg", "millis" : 0,
"planSummary" : "EOF", "execStats" : {
"stage" : "EOF", "nReturned" : 0, "executionTimeMillisEstimate"
: 0, "works" : 0, "advanced" : 0, "needTime" : 0,
"needYield" : 0, "saveState" : 0, "restoreState"
: 0, "isEOF" : 1, "invalidates" : 0 }, "ts" :
ISODate("2018-10-14T03:34:06.717Z"), "client" :
"127.0.0.1", "appName" : "MongoDB Shell",
"allUsers" : [ ], "user" : "" }
{
"op" : "query", "ns" :
"admin.docccolect", "command" : { "find" :
"docccolect", "filter" : { "SL_No" : 1 },
"$db" : "admin" }, "keysExamined" : 0,
"docsExamined" : 0, "cursorExhausted" : true,
"numYield" : 0, "nreturned" : 0, "locks" : {
"Global" : { "acquireCount" : { "r" :
NumberLong(1) } }, "Database" : { "acquireCount" : {
"r" : NumberLong(1) } }, "Collection" : {
"acquireCount" : { "r" : NumberLong(1) } } },
"responseLength" : 105, "protocol" : "op_msg",
"millis" : 0, "planSummary" : "EOF",
"execStats" : { "stage" : "EOF",
"nReturned" : 0, "executionTimeMillisEstimate" : 0,
"works" : 0, "advanced" : 0, "needTime" : 0,
"needYield" : 0, "saveState" : 0, "restoreState"
: 0, "isEOF" : 1, "invalidates" : 0 }, "ts" :
ISODate("2018-10-14T03:33:58.759Z"), "client" :
"127.0.0.1", "appName" : "MongoDB Shell",
"allUsers" : [ ], "user" : "" }
{
"op" : "query", "ns" :
"admin.docccolect", "command" : { "find" :
"docccolect", "filter" : { "SL_No" : 8 },
"$db" : "admin" }, "keysExamined" : 0,
"docsExamined" : 0, "cursorExhausted" : true,
"numYield" : 0, "nreturned" : 0, "locks" : {
"Global" : { "acquireCount" : { "r" :
NumberLong(1) } }, "Database" : { "acquireCount" : {
"r" : NumberLong(1) } }, "Collection" : {
"acquireCount" : { "r" : NumberLong(1) } } },
"responseLength" : 105, "protocol" : "op_msg",
"millis" : 0, "planSummary" : "EOF",
"execStats" : { "stage" : "EOF",
"nReturned" : 0, "executionTimeMillisEstimate" : 0,
"works" : 0, "advanced" : 0, "needTime" : 0,
"needYield" : 0, "saveState" : 0, "restoreState"
: 0, "isEOF" : 1, "invalidates" : 0 }, "ts" :
ISODate("2018-10-14T03:33:53.087Z"), "client" :
"127.0.0.1", "appName" : "MongoDB Shell",
"allUsers" : [ ], "user" : "" }
{
"op" : "query", "ns" :
"admin.docccolect", "command" : { "find" :
"docccolect", "filter" : { "SL_No" : 8 },
"$db" : "admin" }, "keysExamined" : 0,
"docsExamined" : 0, "cursorExhausted" : true,
"numYield" : 0, "nreturned" : 0, "locks" : {
"Global" : { "acquireCount" : { "r" :
NumberLong(1) } }, "Database" : { "acquireCount" : {
"r" : NumberLong(1) } }, "Collection" : {
"acquireCount" : { "r" : NumberLong(1) } } }, "responseLength"
: 105, "protocol" : "op_msg", "millis" : 0,
"planSummary" : "EOF", "execStats" : {
"stage" : "EOF", "nReturned" : 0,
"executionTimeMillisEstimate" : 0, "works" : 0,
"advanced" : 0, "needTime" : 0, "needYield" : 0,
"saveState" : 0, "restoreState" : 0, "isEOF" : 1,
"invalidates" : 0 }, "ts" :
ISODate("2018-10-14T03:33:25.562Z"), "client" :
"127.0.0.1", "appName" : "MongoDB Shell",
"allUsers" : [ ], "user" : "" }
MongoDB
Enterprise >