|
You can get all the client connection information from the expanded current operation information:
>db.currentOp(true)
|
... {
|
"opid" : 148754,
|
"active" : false,
|
"op" : "insert",
|
"ns" : "",
|
"insert" : {
|
|
},
|
"client" : "127.0.0.1:52445",
|
"desc" : "conn28",
|
"threadId" : "0x112fab000",
|
"connectionId" : 28,
|
"locks" : {
|
"^test" : "W"
|
},
|
"waitingForLock" : true,
|
"numYields" : 0,
|
"lockStats" : {
|
"timeLockedMicros" : {
|
|
},
|
"timeAcquiringMicros" : {
|
|
}
|
}
|
...
|
Each entry with a client address and description of connXXXX is a client connection.
It is best to ask questions like this on the forum (https://groups.google.com/forum/#!forum/mongodb-user) instead of filing issues in the server project first.
|