check-system-info/bin/get_system_info.py

240 lines
7.6 KiB
Python
Raw Normal View History

2023-11-28 10:08:46 +00:00
#!/usr/bin/python3
# -*- coding: utf-8 -*-
2023-11-20 13:59:21 +00:00
import _load
2023-11-27 06:41:33 +00:00
import psutil
2023-11-20 13:38:31 +00:00
import smtplib
import argparse
2023-11-20 13:59:21 +00:00
import yaml
2023-11-20 13:38:31 +00:00
from datetime import datetime
from pathlib import Path
from email.mime.text import MIMEText
from email.header import Header
from email.mime.multipart import MIMEMultipart
# 定义公共的部分
path = Path(__file__)
report_dir = path.parent.parent / "report"
config_file_patch = path.parent.parent / "etc/check_config.yml"
2023-11-20 13:38:31 +00:00
# 初始化目录
if not report_dir.exists():
# shutil.rmtree(data_dir)
report_dir.mkdir()
2023-11-27 06:41:33 +00:00
# 报告文件
week = str(datetime.now().isocalendar()[1])
file_name_week = "ComputerInfos-week-" + week + ".txt"
2023-11-27 06:41:33 +00:00
file_name_today = "ComputerInfos-today.txt"
file_today_path = report_dir/file_name_today
file_week_path = report_dir/file_name_week
2023-11-20 13:38:31 +00:00
2023-11-27 06:41:33 +00:00
# 获取配置文件
with open(config_file_patch, "r", encoding='utf-8') as fy:
config = yaml.safe_load(fy)
# print(config)
need_sendmail = False
# 发邮件
2023-11-20 13:38:31 +00:00
def send_mail():
2023-11-27 06:41:33 +00:00
# 发件人
sender = config["receivers"][0]
2023-11-20 13:38:31 +00:00
# 接收邮件,可以发给多人
receivers = config["receivers"]
2023-11-20 13:38:31 +00:00
# 邮件主体
msg = MIMEMultipart()
2023-11-27 06:41:33 +00:00
# 正文
with open(str(file_today_path), "r", encoding='utf-8') as f: # 打开文本
msgdata = f.read()
message = "{0}周,{1}资源使用情况检测已完成,本次检测内容如下所示,本周的所有信息请查看附件!\n{2}".format(
week, get_IP(), msgdata)
2023-11-20 13:38:31 +00:00
msg.attach(MIMEText(message, 'plain', _charset="utf-8"))
# 发送者
msg['From'] = Header(sender, 'utf-8')
# 接收者
2023-11-27 06:41:33 +00:00
msg['To'] = Header(receivers[0], 'utf-8')
2023-11-20 13:38:31 +00:00
# 主题
2023-11-28 08:08:59 +00:00
error_msg = ""
if need_sendmail:
error_msg = "【资源警告】"
subject = '【长期任务】{0}{1}{2}系统运行信息'.format(error_msg, week, get_IP())
2023-11-20 13:38:31 +00:00
msg['Subject'] = Header(subject, 'utf-8')
2023-11-27 06:41:33 +00:00
# 附件信息
att = MIMEText(open(str(file_week_path), 'rb').read(), 'base64', 'utf-8')
2023-11-20 13:38:31 +00:00
att["Content-Type"] = 'application/octet-stream'
2023-11-27 06:41:33 +00:00
att["Content-Disposition"] = 'attachment; filename="{}"'.format(
file_name_week)
2023-11-20 13:38:31 +00:00
msg.attach(att)
try:
smtpObj = smtplib.SMTP('10.10.110.102')
#身份认证
smtpObj.login(sender,"111111")
2023-11-20 13:38:31 +00:00
smtpObj.sendmail(sender, receivers, msg.as_string())
2023-11-27 06:41:33 +00:00
print("邮件发送成功")
2023-11-20 13:38:31 +00:00
except smtplib.SMTPException:
2023-11-27 06:41:33 +00:00
print("Error: 无法发送邮件")
2023-11-20 13:38:31 +00:00
2023-11-27 06:41:33 +00:00
# 写入文件
2023-11-20 13:38:31 +00:00
def save_txt(datas):
2023-11-27 06:41:33 +00:00
with open(str(file_today_path), 'a+', encoding='utf-8', newline='') as file_txt:
[file_txt.write(str(item)+'\n') for item in datas]
# 合并文件
2023-11-20 13:38:31 +00:00
def save_all_tex():
with open(file_today_path, 'rb') as f1, open(file_week_path, 'ab+') as f2:
f2.write(f1.read())
2023-11-20 13:38:31 +00:00
# 获取本机磁盘使用率和剩余空间G信息
2023-11-27 06:41:33 +00:00
2023-11-20 13:38:31 +00:00
def get_disk_info():
# 循环磁盘分区
content = []
for disk in psutil.disk_partitions():
# 读写方式 光盘 or 有效磁盘类型
if 'cdrom' in disk.opts or disk.fstype == '':
continue
2023-11-21 12:42:19 +00:00
disk_name = disk.mountpoint
disk_info = psutil.disk_usage(disk.mountpoint)
2023-11-20 13:38:31 +00:00
# 磁盘剩余空间单位G
free_disk_size = disk_info.free//1024//1024//1024
# 磁盘总空间单位G
total_disk_size = disk_info.total//1024//1024//1024
2023-11-27 06:41:33 +00:00
# 检测是否超过阈值
error_msg = ""
if disk_info.percent > config["Disk_MAX"]:
error_msg = "\n\t警告: {0}使用率超过{1},请及时处理!".format(
disk_name, str(config["Disk_MAX"]))
global need_sendmail
need_sendmail = True
2023-11-20 13:38:31 +00:00
# 当前磁盘使用率、剩余空间G和磁盘总空间信息
2023-11-27 06:41:33 +00:00
info = "\t{0}\t使用率:{1}% 剩余空间:{2}G 总大小:{3}G {4}".format(
disk_name, str(disk_info.percent), free_disk_size, total_disk_size, error_msg)
2023-11-20 13:38:31 +00:00
# print(info)
# 拼接多个磁盘的信息
content.append(info)
print(content)
save_txt(content)
2023-11-27 06:41:33 +00:00
2023-11-20 13:38:31 +00:00
# 获取某个目录的大小
2023-11-27 06:41:33 +00:00
def get_dir_size(path):
2023-11-20 13:38:31 +00:00
list1 = []
2023-11-20 14:46:22 +00:00
for item in path.iterdir():
if item.is_file():
file_size = file_today_path.stat().st_size
2023-11-27 06:41:33 +00:00
list1.append(file_size)
str_tex = f"\t{item}的大小是{file_size}字节"
2023-11-20 13:38:31 +00:00
print(str_tex)
if config["show_file_size"]:
save_txt([str_tex])
2023-11-20 14:46:22 +00:00
elif item.is_dir():
2023-11-27 06:41:33 +00:00
# print(f"目录: {item}")
2023-11-20 14:46:22 +00:00
save_txt(['\t--------------'])
2023-11-27 06:41:33 +00:00
get_dir_size(item)
2023-11-20 13:38:31 +00:00
2023-11-20 14:46:22 +00:00
str_dir_tex = '\t{0} 的大小为: {1:.4f} MB'.format(path, (sum(list1)/1024/1024))
print(str_dir_tex)
save_txt([str_dir_tex])
2023-11-20 13:38:31 +00:00
# cpu信息
def get_cpu_info():
cpu_percent = psutil.cpu_percent(interval=1)
2023-11-27 06:41:33 +00:00
# 检测是否超过阈值
error_msg = ""
if cpu_percent > config["CPU_MAX"]:
error_msg = "\n\t警告: CPU使用率超过{0},请及时处理!".format(str(config["CPU_MAX"]))
global need_sendmail
need_sendmail = True
cpu_info = ["", "CPU使用率{0}% {1}".format(cpu_percent, error_msg), ""]
2023-11-20 13:38:31 +00:00
print(cpu_info)
# return cpu_info
save_txt(cpu_info)
2023-11-27 06:41:33 +00:00
2023-11-20 13:38:31 +00:00
# 内存信息
def get_memory_info():
virtual_memory = psutil.virtual_memory()
used_memory = virtual_memory.used/1024/1024/1024
free_memory = virtual_memory.free/1024/1024/1024
memory_percent = virtual_memory.percent
2023-11-27 06:41:33 +00:00
# 检测是否超过阈值
error_msg = ""
if memory_percent > config["Memory_MAX"]:
2023-11-28 08:08:59 +00:00
error_msg = "\n\t警告: 内存使用率超过{0},请及时处理!".format(
str(config["Memory_MAX"]))
2023-11-27 06:41:33 +00:00
global need_sendmail
need_sendmail = True
memory_info = ["内存使用:{0:0.2f}G使用率{1:0.1f}%,剩余内存:{2:0.2f}G {3}".format(
2023-11-28 08:08:59 +00:00
used_memory, memory_percent, free_memory, error_msg), ""]
2023-11-20 13:38:31 +00:00
print(memory_info)
# return memory_info
save_txt(memory_info)
def get_IP():
"""获取ipv4地址"""
dic = psutil.net_if_addrs()
ipv4_list = []
for adapter in dic:
snicList = dic[adapter]
for snic in snicList:
# if snic.family.name in {'AF_LINK', 'AF_PACKET'}:
# mac = snic.address
if snic.family.name == 'AF_INET':
ipv4 = snic.address
if ipv4 != '127.0.0.1':
ipv4_list.append(ipv4)
# elif snic.family.name == 'AF_INET6':
# ipv6 = snic.address
print(ipv4_list)
2023-11-27 06:41:33 +00:00
return (ipv4_list[0])
2023-11-20 13:38:31 +00:00
def main():
2023-11-27 06:41:33 +00:00
# 删除之前的文件
if file_today_path.exists():
file_today_path.unlink()
2023-11-27 06:41:33 +00:00
# 公共信息
2023-11-20 13:38:31 +00:00
commoninfo = []
if not file_week_path.exists():
2023-11-20 13:38:31 +00:00
t1 = "本周是第{0}".format(week)
commoninfo.append(t1)
commoninfo.append("")
commoninfo.append("--------------------START--------------------------")
commoninfo.append("检测时间: {0}".format(datetime.now()))
commoninfo.append("检测IP {0}".format(get_IP()))
save_txt(commoninfo)
2023-11-27 06:41:33 +00:00
save_txt(["", "磁盘使用情况:", ""])
2023-11-20 13:38:31 +00:00
get_disk_info()
get_cpu_info()
get_memory_info()
path = config["agent_dir"]
2023-11-20 14:46:22 +00:00
directory_path = Path(path)
2023-11-20 13:38:31 +00:00
save_txt(["{0}目录大小:".format(path)])
2023-11-20 14:46:22 +00:00
get_dir_size(directory_path)
2023-11-20 13:38:31 +00:00
2023-11-27 06:41:33 +00:00
save_txt(['----------------------END----------------------------'])
2023-11-20 13:38:31 +00:00
if __name__ == '__main__':
main()
save_all_tex()
2023-11-27 06:41:33 +00:00
# 默认不发邮件,通过参数控制
2023-11-20 13:38:31 +00:00
parser = argparse.ArgumentParser(description='send email')
parser.add_argument("--send-mail", type=bool, default=False)
args = parser.parse_args()
2023-11-27 06:41:33 +00:00
# 超过阈值的和需要发邮件的
if (args.send_mail or need_sendmail):
2023-11-20 13:38:31 +00:00
send_mail()