上传者: 38732277
|
上传时间: 2022-04-07 13:50:45
|
文件大小: 179KB
|
文件类型: PDF
Python实现报警信息实时发送至邮箱功能,具体内容如下所示:
程序设计
实现代码
cpu.py
# -*- coding: utf-8 -*-
import psutil
import time
from emailsender import txtMail
from log import myloggers
import gc
class mycpumonitor():
# up是cpu监控的阈值,默认是90%
def __init__(self, up=None):
self.up = 90 if up is None else up
def cpu_monitor(se