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
成都创新互联公司主营月湖网站建设的网络公司,主营网站建设方案,重庆APP开发,月湖h5小程序制作搭建,月湖网站营销推广欢迎月湖等地区企业咨询另外有需要云服务器可以了解下创新互联cdcxhl.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
网页题目:Python之获取HostEsxi主机信息-创新互联
URL分享:http://scgulin.cn/article/hooeo.html