RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
Python之获取HostEsxi主机信息

代码

#Author Kang
#获取ESXI主机的CPU和内存使用情况,并统计百分比

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()

结果:
10.3.151.9 | CpuUsage=2029 MemoryUsage=95515
10.3.151.9 | TotalCpu=46000 TotalMemory=130845
10.3.151.9 | CpuUsagePercent=4 MemoryUsagePercent=72

Python 之 获取Host Esxi 主机信息

创新互联建站-专业网站定制、快速模板网站建设、高性价比巴州网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式巴州网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖巴州地区。费用合理售后完善,10余年实体公司更值得信赖。


当前文章:Python之获取HostEsxi主机信息
网页URL:http://cqwzjz.cn/article/jsjpcp.html