-
Type: Question
-
Resolution: Done
-
Priority: Minor - P4
-
None
-
Affects Version/s: None
-
Component/s: Security
-
None
-
Fully Compatible
Have I understand correctly that according to https://docs.mongodb.com/v3.2/reference/method/db.currentOp/ and SERVER-5085 there is possibility to gain list of all connections even if they are waiting (no operations processed) BUT only if there is a special grant for user. And if I use "$ownOps" I cannot see such waiting connections.
In another words next table misses one of the value:
Need grant | Do not need grant (only own info) | |
---|---|---|
Just operations with connections | db.currentOp() | db.currentOp(
{ "$ownOps": true }
) |
Operations with connections and waiting connections | db.currentOp(true) or db.currentOp(
{ "$all": true }
) |
Not supported |