Python实现VMware自动化资源巡检

推送效果:

E:\PYPJ1\Scripts\python.exe C:\Users\PycharmProjects\pythonProject\main.py 
自动化巡检-执行时间:2024-03-25 14:47:04
Connected to vCenter
Found datacenter: CN-SH-Datacenter----------存储资源指标----------
资源总容量:193.93TB
总利用率:59.89%
总已用容量:116.14TB
总空闲容量:77.79TB
健康阈值内总可用容量(<80%)39.40TB
VMware可用容量:14.05TB
NAS可用容量:25.34TB
宿主机存储资源负载分布()2/8/8(//低)----------内存资源指标----------
资源总容量: 8941 GB
总利用率:38.87%
总已用容量: 3475 GB
总空闲容量: 5466 GB
健康阈值内总可用容量(<80%)3677 GB
宿主机内存资源负载分布()0/1/17(//)

python代码:

注:关于存储我只过滤了以"Data-"开头的存储,因为那个是我的数据存储,其他的都是系统存储可以忽略。

from pyVim import connect
from pyVmomi import vim
import ssl
import time
from datetime import datetime, timedelta# 脚本运行时间
starttime = datetime.now().strftime('%Y-%m-%d %H:%M:%S')
start_time = time.time()
print("自动化巡检-执行时间:" + starttime)# 创建一个不验证SSL证书的上下文
context = ssl.create_default_context()
context.check_hostname = False
context.verify_mode = ssl.CERT_NONE# vCenter Server IP地址或主机名
vc_host = '192.168.1.1'
# vCenter登录凭据(用户名、密码)
username = 'test@vsphere.local'
password = 'qwe123456'
port = 443  # 默认vCenter端口def calculate_memory_metrics(host):summary = host.summarymemory_usage = summary.quickStats.overallMemoryUsagememory_capacity = summary.hardware.memorySize# 计算内存使用情况(以GB为单位)memory_usage_gb = int(memory_usage / 1024)memory_capacity_gb = int(memory_capacity / 1024 / 1024 / 1024)memory_free_gb = memory_capacity_gb - memory_usage_gbreturn memory_usage_gb, memory_capacity_gb, memory_free_gbdef get_storage_free_capacity(storage_info, storage_name):for storage in storage_info:if storage[0] == storage_name:return storage[1] - storage[2]return Nonedef process_storage_info(storage_info):print()print("----------存储资源指标----------")# 存储资源总容量total_capacity = sum(storage[1] for storage in storage_info)# 已用容量used_capacity = sum(storage[2] for storage in storage_info)# 空闲容量free_capacity = total_capacity - used_capacity# 利用率usage_percentage = (used_capacity / total_capacity) * 100# 主机资源分布high_usage = [storage for storage in storage_info if storage[3] > 80]medium_usage = [storage for storage in storage_info if 60 <= storage[3] <= 80]low_usage = [storage for storage in storage_info if storage[3] < 60]host_distribution = f"{len(high_usage)}/{len(medium_usage)}/{len(low_usage)}"# 可用容量available_capacity = sum((storage[1] * 0.8) - storage[2] for storage in storage_info if storage[3] < 80)free_capacity_data_25 = get_storage_free_capacity(storage_info, "Data-25")free_vmware = available_capacity - free_capacity_data_25# 构建输出字符串output = f"资源总容量:{total_capacity:.2f}TB\n总利用率:{usage_percentage:.2f}%\n"output += f"总已用容量:{used_capacity:.2f}TB\n总空闲容量:{free_capacity:.2f}TB\n"output += f"健康阈值内总可用容量(<80%):{available_capacity:.2f}TB\n"output += f"VMware可用容量:{free_vmware:.2f}TB\nNAS可用容量:{free_capacity_data_25:.2f}TB\n"output += f"宿主机存储资源负载分布(台):{host_distribution}(高/中/低)\n"print(output)def connect_vcenter():try:# 使用自定义的SSL上下文建立与vCenter服务器的连接service_instance = connect.SmartConnect(host=vc_host, user=username, pwd=password, port=port, sslContext=context)# 现在可以使用service_instance访问vCenter的内容print("Connected to vCenter")return service_instanceexcept Exception as e:print("Failed to connect to the vCenter server:", e)return Nonedef get_storage_info(service_instance):storages = []content = service_instance.RetrieveContent()# 获取所有数据中心datacenters = content.rootFolder.childEntityfor datacenter in datacenters:if isinstance(datacenter, vim.Datacenter):print("Found datacenter:", datacenter.name)# 获取数据中心下的所有存储datastores = datacenter.datastorefor datastore in datastores:if isinstance(datastore, vim.Datastore) and datastore.name.startswith("Data-"):# 获取存储容量信息summary = datastore.summarystorage_name = datastore.namestorage_capacity = summary.capacity / 1024 ** 4storage_used_capacity = (summary.capacity - summary.freeSpace) / 1024 ** 4storage_usage_percentage = ((summary.capacity - summary.freeSpace) / summary.capacity) * 100storages.append((storage_name, storage_capacity, storage_used_capacity, storage_usage_percentage))return storagesdef disconnect_vcenter(service_instance):# 断开与vCenter服务器的连接if service_instance:connect.Disconnect(service_instance)def main():# 连接vCenter服务器service_instance = connect_vcenter()if service_instance:# 处理存储指标storages = get_storage_info(service_instance)process_storage_info(storages)# 获取vCenter中所有宿主机content = service_instance.RetrieveContent()container = content.rootFolderview_type = [vim.HostSystem]recursive = Truecontainer_view = content.viewManager.CreateContainerView(container, view_type, recursive)total_memory = 0used_memory = 0free_memory = 0high_usage_hosts = 0medium_usage_hosts = 0low_usage_hosts = 0# 遍历所有宿主机for host in container_view.view:memory_usage, memory_capacity, memory_free = calculate_memory_metrics(host)# 累计总量、已用和空闲内存total_memory += memory_capacityused_memory += memory_usagefree_memory += memory_free# 根据内存使用率判断宿主机的负载usage_percentage = (memory_usage / memory_capacity) * 100if usage_percentage > 80:high_usage_hosts += 1elif 60 <= usage_percentage <= 80:medium_usage_hosts += 1else:low_usage_hosts += 1## 打印宿主机名称和内存使用情况# print("宿主机名称:", host.name)# print("已用内存:", memory_usage, "GB")# print("总内存容量:", memory_capacity, "GB")# print("剩余内存:", memory_free, "GB")# print()# 计算健康阈值内的总可用容量healthy_threshold_capacity = 0if total_memory > 0:for host in container_view.view:memory_usage, memory_capacity, memory_free = calculate_memory_metrics(host)usage_percentage = (memory_usage / memory_capacity) * 100if usage_percentage < 80:healthy_threshold_capacity += (memory_capacity * 0.8) - memory_usageelse:healthy_threshold_capacity += 0# 打印内存资源指标print("----------内存资源指标----------")print("资源总容量:", total_memory, "GB")print("总利用率:{:.2f}%".format((used_memory / total_memory) * 100))print("总已用容量:", used_memory, "GB")print("总空闲容量:", free_memory, "GB")print("健康阈值内总可用容量(<80%):", int(healthy_threshold_capacity), "GB")print("宿主机内存资源负载分布(台){}/{}/{}(高/中/低)".format(high_usage_hosts, medium_usage_hosts, low_usage_hosts))# 断开与vCenter服务器的连接disconnect_vcenter(service_instance)if __name__ == "__main__":main()

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/779725.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

实验报告-04

实验名称&#xff1a;实验四 递推问题&#xff08;一&#xff09; 实验目的&#xff1a;熟练掌握一些递推问题的处理方法&#xff1a;仔细分析&#xff0c;不断尝试推理&#xff0c;充分利用数学知识&#xff0c;找出问题中的内在规律&#xff0c;抽象出递推的数学模型。 实验…

【c 语言 】malloc函数详解

&#x1f388;个人主页&#xff1a;豌豆射手^ &#x1f389;欢迎 &#x1f44d;点赞✍评论⭐收藏 &#x1f917;收录专栏&#xff1a;C语言 &#x1f91d;希望本文对您有所裨益&#xff0c;如有不足之处&#xff0c;欢迎在评论区提出指正&#xff0c;让我们共同学习、交流进步&…

安卓手机APP开发者的第一件事:安装安卓工作台

安卓手机APP开发者的第一件事:安装安卓工作台 安装安卓工作台仅需要一些点击。首先检查软件对系统需求。 然后下载最新版本的安卓工作台。 在windows系统下的安装 需求项 最低配置 推荐配置 操作系统 64位的windows8 最新版本的64位的windows 内存 8GB …

LeetCode 热题 100 题解(一):哈希部分

《LeetCode热题 100》 经过了两个多月&#xff0c;终于刷完了代码随想录的题目&#xff0c;现在准备开始挑战热题一百了&#xff0c;接下来我会将自己的题解以博客的形式同步发到力扣和 c 站&#xff0c;希望在接下来的征程中与大家共勉&#xff01; 题组一&#xff1a;哈希 题…

day22.二叉树part08

day22.二叉树part08 235.二叉搜索树的最近公共祖先 原题链接 代码随想录链接 思路&#xff1a;因为本题是二叉搜索树&#xff0c;利用它的特性可以从上往下进行递归遍历树&#xff0c;这里需要理解一点就是如果遍历到的一个节点发现该节点的值正好位于节点p和节点q的值中间…

Git实现提交代码自动更新package.json版本号

此文章主要讲诉如何通过git提交代码来自动更新我们的版本号&#xff0c;也可以指定固定分支才能更新 只要涉及到package version的项目都可以&#xff0c;例如&#xff1a;Vue、React、Node等等 前提是当前项目已经关联了Git仓库 一、编写我们的Node更新版本逻辑&#xff0c;名…

Debezium日常分享系列之:Debezium 2.6.0.CR1发布

Debezium日常分享系列之&#xff1a;Debezium 2.6.0.CR1发布 一、重大改变1.MySQL2.SQL Server3.Vitess 二、新功能和改进1.OpenLogReplicator 的 XML 支持2.Debezium 服务器的 TRACE 级别日志记录3.新的统一快照模式4.Cassandra 可配置分区模式 Debezium 2.6.0.CR1版本包含许多…

QSplashScreen

以前打红警的时候进入游戏界面会有一个启动界面&#xff0c;比如美国是有伞兵&#xff0c;英国有狙击手&#xff0c;韩国有黑鹰战机的一些介绍&#xff0c;这些就是启动界面&#xff0c;就是由QSplashScreen这个类来实现的。 QSplashScreen 是 Qt 框架中的一个类&#xff0c;用…

jsp用户登录界面

主界面 <% page contentType"text/html;charsetUTF-8" language"java" %> <html> <head><meta charset"UTF-8"><title>登录界面</title> </head> <body bgcolor"#faebd7"> <form…

HarmonyOS实战开发-UIAbility和自定义组件生命周期

介绍 本文档主要描述了应用运行过程中UIAbility和自定义组件的生命周期。对于UIAbility&#xff0c;描述了Create、Foreground、Background、Destroy四种生命周期。对于页面和自定义组件描述了aboutToAppear、onPageShow、onPageHide、onBackPress、aboutToDisappear五种生命周…

公司防泄密软件有哪些?|六款值得老板收藏的公司防泄密软件

文件数据是企业极为重要的知识产权&#xff0c;关系到企业的核心竞争力&#xff0c;对企业的发展至关重要&#xff0c;甚至直接影响到企业的生存和发展。 企业泄密事件也是屡屡发生&#xff0c;如何保护企业核心机密文件的安全已成为影响企业快速发展的重要因素。 针对企业数据…

1.Netty介绍及NIO三大组件

Netty网络编程Netty的底层是NIO&#xff08;非阻塞IO&#xff09;&#xff0c;常用的多线程和线程池使用的是阻塞IO&#xff0c;其效率并不高。支持高并发&#xff0c;性能好高性能的服务端程序、客户端程序 NIO三大组件 一、Channel 读写数据的双向传输通道 常见的传输通道…

【干货分享】OpenHarmony轻量系统适配方案

1. 简介 本文在不改变原有系统基础框架的基础上&#xff0c; 介绍了一种OpenAtom OpenHarmony&#xff08;以下简称“OpenHarmony”&#xff09;轻量系统适配方案。 本方案使用的是 OpenHarmony v3.2 Release版本源码。 2. 方案设计 本文使用的硬件模块的主要特性及功能如…

fast_bev学习笔记

目录 一. 简述二. 输入输出三. github资源四. 复现推理过程4.1 cuda tensorrt 版 一. 简述 原文:Fast-BEV: A Fast and Strong Bird’s-Eye View Perception Baseline FAST BEV是一种高性能、快速推理和部署友好的解决方案&#xff0c;专为自动驾驶车载芯片设计。该框架主要包…

day 41 动归 04

01背包问题 二维 dp[i][j] 表示在物品i时&#xff0c;背包在j容量下的最大价值&#xff0c;递推公式为 dp[i][j] Math.max(dp[i-1][j] , dp[i-1][j-weight[i]] value[i]); 第一个时不放物品i&#xff0c;其价值等于在物品i-1时背包在j容量下的最大价值&#xff0c;第二个是放…

Oracle里的优化器

目录 一、RBO 二、CBO 1、集的势&#xff08;cardinality&#xff09; 2、可选择率&#xff08;Selectivity&#xff09; 3、可传递性 4、CBO的局限性 三、优化器基础知识 1、优化器的模式 2、结果集&#xff08;row source&#xff09; 3、访问数据的方法 优化器&am…

tab切换组件,可横向自适应滑动

示例图&#xff1a; 注&#xff1a;需要引入Jquery <!DOCTYPE html> <html><head><meta charset"utf-8"><title></title><style>.tabs-box {width: 100%;height: auto;}.tab-header-box {display: flex;overflow: hidden…

2024年的抖音电商,将很难出现超级爆品,选品思路要及时改变

我是王路飞。 2024年以前的抖音电商市场&#xff0c;如果用一句话来形容的话&#xff0c;就是“风浪越大鱼越贵”。 但是从今年过完年之后&#xff0c;细心的商家可能发现了&#xff0c;以前的套路好像不管用了。 现在的市场利益分配方式变了&#xff01; 2024年的抖音电商…

Python程序怎么打包成exe文件

前言 pyinstaller可以将.py文件打包成.exe可执行文件&#xff0c;即使别人的电脑上没有搭建Python环境&#xff0c;也是可以直接运行程序的。 pyinstaller安装 首先打开cmd&#xff0c;在里面输入下面这一行命令&#xff0c;回车即可。 pip install pyinstaller 我运行命令…

【详细讲解Android Debug Bridge各种命令及用法的文章】

&#x1f525;博主&#xff1a;程序员不想YY啊&#x1f525; &#x1f4ab;CSDN优质创作者&#xff0c;CSDN实力新星&#xff0c;CSDN博客专家&#x1f4ab; &#x1f917;点赞&#x1f388;收藏⭐再看&#x1f4ab;养成习惯 &#x1f308;希望本文对您有所裨益&#xff0c;如有…