此脚本主要用于zabbix监控系统硬盘只用,适用于windows和linux系统,返回值为0为正常,有几个分区的硬盘剩余少于10G或低于10%就为报警阀值(windows的C盘和linux的根分区除外):
#!/bin/env python # -*- coding: utf-8 -*- ########################################################## # @This script is used to check disk free space for zabbix # @Contact: wangwei03@jb51.net # @Name: disk.py # @Function: check disk free space for zabbix # @Author: wangwei ########################################################## import platform import commands def w_disk(): import wmi c = wmi.WMI () i = 0 for disk in c.Win32_LogicalDisk (DriveType=3): a = int(disk.FreeSpace) / (1024*1024*1024) b = int(100.0 * long (disk.FreeSpace) / long (disk.Size)) if disk.Caption == "C:": if (a < 2) or (b < 10): i += 1 else: i += 0 else: if (a < 10) or (b < 10): i += 1 else: i += 0 print i def L_disk(): free = commands.getstatusoutput('df -h|grep dev|egrep -v "tmp|var|shm"') list = free[1].split('\n') i = 0 for disk in range(len(list)): vd = list[disk][6:8] a = list[disk].split()[3] if a[-1] == 'T': a = int(float(a[:-1]))*1024 else: a = int(float(a[:-1])) b = 100 - int(list[disk].split()[4][:-1]) if vd == "da": if (a < 2) or (b < 10): i += 1 else: i += 0 else: if (a < 10) or (b < 10): i += 1 else: i += 0 print i if __name__ == "__main__": os = platform.system() if os == "Windows": w_disk() elif os == "Linux": L_disk()
本文向大家介绍python脚本监控Tomcat服务器的方法,包括了python脚本监控Tomcat服务器的方法的使用技巧和注意事项,需要的朋友参考一下 文章出处:https://blog.csdn.net/sdksdk0/article/details/80933444 作者:朱培 ID:sdksdk0 --------------------------------------
本文向大家介绍Oracle 监控索引使用率脚本分享,包括了Oracle 监控索引使用率脚本分享的使用技巧和注意事项,需要的朋友参考一下 Oracle提供了索引监控特性来判断索引是否被使用。在Oracle 10g中,收集统计信息会使得索引被监控,在Oracle 11g中该现象不复存在。尽管如此,该方式仅提供的是索引是否被使用。索引被使用的频率未能得以体现。下面的脚本将得到索引的使用率,可以很好的度量
本文向大家介绍shell脚本实现磁盘监控系统,包括了shell脚本实现磁盘监控系统的使用技巧和注意事项,需要的朋友参考一下 利用shell脚本实现每隔60秒磁盘内存数据监控 效果如图: 以上就是shell脚本实现磁盘监控系统的详细内容,更多关于shell 磁盘监控的资料请关注呐喊教程其它相关文章!
本文向大家介绍Python代码实现http/https代理服务器的脚本,包括了Python代码实现http/https代理服务器的脚本的使用技巧和注意事项,需要的朋友参考一下 一个几百行代码做出http/https代理服务器的脚本,启动即可做http https透明代理使用 python proxy.py 8992 使用非阻塞io模式,性能还可以。 可以和浏览器一样保持长连接,代码有点乱,不管那么
本文向大家介绍Linux服务器硬件运行状态及故障邮件提醒的监控脚本分享,包括了Linux服务器硬件运行状态及故障邮件提醒的监控脚本分享的使用技巧和注意事项,需要的朋友参考一下 监控硬件运行状况 shell 监控cpu,memory,load average,记录到log,当负载压力时,发电邮通知管理员。 原理: 1.获取cpu,memory,load average的数值 2.判断数值是否超过自定
本文向大家介绍使用python进行服务器的监控,包括了使用python进行服务器的监控的使用技巧和注意事项,需要的朋友参考一下 在linux服务器中,一切皆为文件,就是说,服务器运行的个中信息,其实是可以从某些文件中查询得到的;百度后,你会知道,在Linux系统中,有一个/proc的虚拟文件系统: Linux 系统为管理员提供了非常好的方法,使其可以在系统运行时更改内核,而不需要重新引导内核系统,