gpt4 book ai didi

python - MongoDB workingSet by pymongo

转载 作者:可可西里 更新时间:2023-11-01 09:31:43 29 4
gpt4 key购买 nike

我尝试使用 pymongo 获取“workingSet”指标。在 MongoDB 中只是 db.runCommand( { serverStatus: 1, workingSet: 1 } )。我在 python 中尝试过

from pymongo.mongo_client import MongoClient
connection = MongoClient('localhost', 27017)
db = connection['admin']
workingSetMetrics = db.command("serverStatus", "workingSet")
print 'workingSetMetrics: ', workingSetMetrics

我的方法行不通。它的输出不是任何“workingSet”指标。

知道如何在 python 中以编程方式获取这些指标吗?

最佳答案

>>> import pymongo
>>> c = pymongo.MongoClient()
>>> c['admin'].command('serverStatus', workingSet=True)['workingSet']
{u'note': u'thisIsAnEstimate', u'computationTimeMicros': 4555, u'pagesInMemory': 7, u'overSeconds': 388}

关于python - MongoDB workingSet by pymongo,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18722547/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com