MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Come ottenere l'occupazione corrente del pool di connessioni sul client utilizzando il driver mongo .net?

puoi usare questo comando:

db.serverStatus()['connections']
{
    "current" : 18,
    "available" : 999982,
    "totalCreated" : 2175,
    "active" : 8,
    "exhaustIsMaster" : 6,
    "awaitingTopologyChanges" : 6
}

per eseguirlo tramite il driver, dovresti usare:var doc = db.RunCommand<BsonDocument>("{ serverStatus : 1 }");