您好,登錄后才能下訂單哦!
#Author Kang
#獲取ESXI主機(jī)的CPU和內(nèi)存使用情況,并統(tǒng)計(jì)百分比
import ssl
import pysphere
from pysphere import VIServer,MORTypes,VIProperty
from pysphere.resources import VimService_services as VI
ssl._create_default_https_context = ssl._create_unverified_context
host_ip = '10.3.151.2'
username = 'root'
passwd = 'password'
s = VIServer()
s.connect(host_ip,username,passwd)
hosts = s.get_hosts()
for host in hosts:
p = VIProperty(s,host)
HostName = p.name
HostCpuUsage = p.summary.quickStats.overallCpuUsage
HostMemoryUsage = p.summary.quickStats.overallMemoryUsage
HostNumCpuCores = p.summary.hardware.numCpuCores
HostMhzPerCore = p.summary.hardware.cpuMhz
HostCpuTotal = (HostNumCpuCores * HostMhzPerCore)
HostTotalMemory = p.summary.hardware.memorySize/ 1048576
HostCpuUsagePercent = ((HostCpuUsage * 100) / HostCpuTotal)
HostMemoryUsagePercent = ((HostMemoryUsage * 100) / HostTotalMemory)
print "%s | CpuUsage=%s MemoryUsage=%s" %(HostName,str(HostCpuUsage),str(HostMemoryUsage))
print "%s | TotalCpu=%s TotalMemory=%s" %(HostName,str(HostCpuTotal),str(HostTotalMemory))
print "%s | CpuUsagePercent=%s MemoryUsagePercent=%s" % (HostName,str(HostCpuUsagePercent), str(HostMemoryUsagePercent))
s.disconnect()
結(jié)果:
10.3.151.9 | CpuUsage=2029 MemoryUsage=95515
10.3.151.9 | TotalCpu=46000 TotalMemory=130845
10.3.151.9 | CpuUsagePercent=4 MemoryUsagePercent=72
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。