MongoDBへの接続の現在の数を確認してください

1407 ワード

への接続の現在の数をチェック


Jan 23 ' 12
160

管理データベースに接続し、db.serverStatus()を実行します.
> var status = db.serverStatus()
> status.connections
   {"current" : 21, "available" : 15979}
> 
直接クエリを取得することができます
db.serverStatus().connections
MongoDBのdb.serverStatus().connectionsレスポンスが何を意味するかを理解するために、ドキュメンテーションhereを読んでください.

connections

"connections" : {
   "current" : <num>,


Open Full Answer