python

关注公众号 jb51net

关闭
首页 > 脚本专栏 > python > python磁盘空间使用

利用python检查磁盘空间使用情况的代码实现

作者:pyliumy

本文将向读者展示如何利用Python编写自动化脚本,以检查磁盘空间使用情况,无论你是经验丰富的系统管理员,还是对Python自动化充满兴趣的开发者,本文都将为你提供实用的脚本示例和详细的解析步骤,帮助你快速掌握磁盘空间监控的自动化方法,需要的朋友可以参考下

一.前言

在信息技术飞速发展的今天,数据量的激增使得磁盘空间管理成为系统运维中的一项基础而关键的任务。磁盘空间的不足不仅会影响系统性能,更可能导致服务中断,给企业带来不可估量的损失。因此,及时准确地监控磁盘空间使用情况,对于保障系统稳定性和数据安全至关重要。

面对日益增长的存储需求,手动检查磁盘空间的方式不仅效率低下,而且容易出错。自动化磁盘空间检查成为了解决这一问题的必然选择。自动化工具可以24小时不间断地监控磁盘状态,一旦发现问题,立即发出警告,大大提高了运维的响应速度和准确性。

Python,作为一种简单易学且功能强大的编程语言,在系统管理领域有着广泛的应用。其丰富的库支持和灵活的脚本编写能力,使其成为实现自动化运维任务的理想选择。

本文将向读者展示如何利用Python编写自动化脚本,以检查磁盘空间使用情况。无论你是经验丰富的系统管理员,还是对Python自动化充满兴趣的开发者,本文都将为你提供实用的脚本示例和详细的解析步骤,帮助你快速掌握磁盘空间监控的自动化方法。

二.使用的库介绍

三.代码实现以及解析

import os
import shutil
import glob
import smtplib
from email.mime.text import MIMEText
from email.header import Header
 
# 邮件发送函数
def send_email(subject, message, to_email):
    from_email = "your_email@example.com"
    email_password = "your_email_password"
 
    msg = MIMEText(message, 'plain', 'utf-8')
    msg['From'] = Header(from_email)
    msg['To'] = Header(to_email)
    msg['Subject'] = Header(subject)
 
    try:
        server = smtplib.SMTP('smtp.example.com', 587)
        server.starttls()
        server.login(from_email, email_password)
        server.sendmail(from_email, [to_email], msg.as_string())
        server.quit()
        print("邮件发送成功")
    except smtplib.SMTPException as e:
        print("错误:无法发送邮件", e)
 
# 检查磁盘空间并清理
def check_and_clean_disk(space_threshold=80, log_dir='/path/to/logs'):
    total, used, free = os.popen('df -h /').readlines()[1].split()
    usage_percent = int(used.strip('%'))  # 获取磁盘使用率
 
    if usage_percent > space_threshold:
        print(f"磁盘使用率 {usage_percent}% 超过阈值 {space_threshold}%,开始清理。")
 
        # 清理操作:删除指定目录下30天前的日志文件
        for log_file in glob.glob(os.path.join(log_dir, '*.log')):
            if os.path.getctime(log_file) < time.time() - 30 * 86400:
                shutil.rmtree(log_file)
                print(f"删除旧日志文件:{log_file}")
 
        # 发送邮件通知
        send_email(
            "磁盘空间清理通知",
            f"磁盘空间使用率超过 {space_threshold}%,已自动清理。当前使用率为:{usage_percent}%",
            "admin_email@example.com"
        )
    else:
        print(f"磁盘使用率正常:{usage_percent}%。")
 
if __name__ == "__main__":
    check_and_clean_disk()

3.1导入模块

import os
import shutil
import glob
import smtplib
from email.mime.text import MIMEText
from email.header import Header

3.2邮件发送函数 send_email

def send_email(subject, message, to_email):
    from_email = "your_email@example.com"
    email_password = "your_email_password"
 
    msg = MIMEText(message, 'plain', 'utf-8')
    msg['From'] = Header(from_email)
    msg['To'] = Header(to_email)
    msg['Subject'] = Header(subject)
 
    try:
        server = smtplib.SMTP('smtp.example.com', 587)
        server.starttls()
        server.login(from_email, email_password)
        server.sendmail(from_email, [to_email], msg.as_string())
        server.quit()
        print("邮件发送成功")
    except smtplib.SMTPException as e:
        print("错误:无法发送邮件", e)

3.3检查磁盘空间函数 check_and_clean_disk

def check_and_clean_disk(space_threshold=80, log_dir='/path/to/logs'):
    total, used, free = os.popen('df -h /').readlines()[1].split()
    usage_percent = int(used.strip('%'))  # 获取磁盘使用率
 
    if usage_percent > space_threshold:
        print(f"磁盘使用率 {usage_percent}% 超过阈值 {space_threshold}%,开始清理。")
 
        # 清理操作:删除指定目录下30天前的日志文件
        for log_file in glob.glob(os.path.join(log_dir, '*.log')):
            if os.path.getctime(log_file) < time.time() - 30 * 86400:
                shutil.rmtree(log_file)
                print(f"删除旧日志文件:{log_file}")
 
        # 发送邮件通知管理员
        send_email(
            "磁盘空间清理通知",
            f"磁盘空间使用率超过 {space_threshold}%,已自动清理。当前使用率为:{usage_percent}%",
            "admin_email@example.com"
        )
    else:
        print(f"磁盘使用率正常:{usage_percent}%。")

3.4主程序逻辑

if __name__ == "__main__":
    check_and_clean_disk()

四.致谢

非常感谢您阅读我的博客!如果您有任何问题、建议或想了解特定主题,请随时告诉我。您的反馈对我非常重要,我将继续努力提供高质量的内容。

到此这篇关于利用python检查磁盘空间使用情况的代码实现的文章就介绍到这了,更多相关python磁盘空间使用内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文