我正在使用此脚本获取内存和CPU静态信息
'''
from pysnmp.hlapi import *
errorIndication, errorStatus, errorIndex, varBinds = next(
getCmd(SnmpEngine(),
CommunityData('public', mpModel=0),
UdpTransportTarget(('demo.snmplabs.com', 3161)),
ContextData(),
ObjectType(ObjectIdentity('1.3.6.1.4.1.2021.4.6.0')),
ObjectType(ObjectIdentity('1.3.6.1.4.1.2021.11.10.0')),
ObjectType(ObjectIdentity('1.3.6.1.4.1.2021.10.1.3.3')))
)
if errorIndication:
print(errorIndication)
elif errorStatus:
print('%s at %s' % (errorStatus.prettyPrint(),
errorIndex and varBinds[int(errorIndex) - 1][0] or '?'))
else:
for varBind in varBinds:
print(' = '.join([x.prettyPrint() for x in varBind]))
'''
我得到以下输出
但是,我只需要输出最右边的实际值,并将它们保存为float或int值。