Querying connection information in MongoDB

Posted in: Technical Track

As with all other database platforms, daily administration and troubleshooting of MongoDB often begins with analyzing database activity. It can be helpful to see all connections from within MongoDB, which you can do by running:

db.$cmd.sys.inprog.findOne({$all:1});
or
db.currentOp(true);
where the “true” makes the command include idle connections. But often there’s so many connections that unless you capture the output in a script file or some similar thing, it’s kind of useless.

Thanks to a hint given by Scott Hernandez in the mongodb-user forum, we can use the line

db.currentOp(true).inprog.forEach(function(o){if( ) printjson(o)});
to show a subset that is more manageable. For instance, we might want to show all connections from a particular application server:

db.currentOp(true).inprog.forEach(function(o){if(o.client.indexOf(“10.0.1.77”) != -1 ) printjson(o)});
or from the MongoDB logs we’ll see a particular connectionId and want to know where it came from:

db.currentOp(true).inprog.forEach(function(o){if(o.connectionId == 8606 ) printjson(o)});
This will then show all the connection info for that connectionId:

{
“opid” : 7117752,
“active” : false,
“lockType” : “read”,
“waitingForLock” : false,
“op” : “query”,
“ns” : “player_data.player_answerchoice”,
“query” : {
“$query” : {
“poll_id” : ObjectId(“4f58e08db3e93217c2000008”)
}
},
“client” : “10.0.1.77:59542”,
“desc” : “conn”,
“threadId” : “0x49e31940”,
“connectionId” : 8606,
“numYields” : 0
}

email
Want to talk with an expert? Schedule a call with our team to get the conversation started.

No comments

Leave a Reply

Your email address will not be published. Required fields are marked *