python实现巡检系统(solaris)示例

使用python + shell 编写,是一个简易solaris系统巡检程序

复制代码 代码如下:
#!/usr/bin/python -u
#-*- coding:utf-8 -*-
”’
程序:solaris_status.py
author: gyh9711
功能:
 系统状态信息获取

语言: 
 sh + python

注意:
 部分调用命令需要用到root权限

测试情况:
 系统版本:solaris10 系统测试ok 
 测试服务器型号:sun 6900 6800 v445 v440 M3000 M5000
内容:

”’
import time
import sys
import os
import re
# import pprint

def getNow():
 return time.strftime(“%Y-%m-%d %H:%M:%S”,time.localtime())

def puts(mess,_type=”print”):

 if _type == “log”:
  sys.stdout.write(“[%s] %s” % (getNow(),mess))
 else:
  sys.stdout.write(“%s” % mess)
 #pprint.pprint(mess)

def getCommand(cmd):
 return [t.rstrip() for t in os.popen(cmd).readlines()]

#通过系统状态信息:

#系统基本情况
puts(“=”*60)
puts(“检查时间 %s” % getNow())
puts(“-“*60)
puts(“系统基本信息”)
for i in getCommand(“showrev”):
 puts(i)
puts(“=”*60)
puts(“”)
puts(“主机名称: %s ” % getCommand(“hostname”)[0])
puts(“处理器core数: %s ” % getCommand(“mpstat |awk ‘END{print NR-1}'”)[0])
puts(“系统负载情况: %s ” % getCommand(“uptime”)[0])
puts(“系统进程数: %s ” % getCommand(“ps -ef |wc -l”)[0])
puts(“用户运行进程情况”)
psAll = getCommand(”’ps -ef  |awk ‘{print $1}’ |sort |uniq -c |grep -v “UID””’)
puts(“%s%s” %(“用户”.ljust(20),”进程数”.ljust(10)))
puts(“-“*60)
for i in psAll:
 _user = re.split(r”s+”,i)[1:]
 #print _user
 puts(“%s%s” %(_user[1].ljust(20),_user[0].ljust(10)))
puts(“-“*60)

puts(“”)
puts(“%s%s%s”%(“=”*30,”状态信息”,”=”*30))
puts(“”)
puts(“处理器使用情况: %s %%” % getCommand(“vmstat 1 2 |tail -1 |awk ‘{print 100-$22}'”)[0])
puts(“内存使用情况: %s %% 总大小:%s [M]” % (getCommand(”’vmstat 1 2 |tail -1 |awk ‘{printf(“%d”,$5/1024/MEMALL*100);}’ MEMALL=`prtconf |grep -i “^memory” |awk ‘{print $3}’`”’)[0],getCommand(”’prtconf |grep -i “^memory” |awk ‘{print $3}”’)[0]))
puts(“swap使用情况: %s” % (getCommand(“swap -s”)[0]))
puts(“”)
puts(“%s%s%s”%(“=”*30,”磁盘空间使用情况”,”=”*30))

for i in getCommand(”’awk ‘{if($3 != “”) {print $3}}’ /etc/vfstab |egrep -v “mount|to|-” |xargs df -h”’):
 puts(i)
puts(“%s%s%s”%(“=”*30,”网络情况”,”=”*30))

puts(“网络接口状态”)
for i in getCommand(”’for i in `ifconfig -a |egrep “^{hme|qfe|ge|ce|eri|bge|nge|e1000g}” |cut -d: -f1`; do /sbin/dladm show-dev $i; done”’):
 puts(i)
puts(“网络接口IP及数据进出情况”)
for i in getCommand(“netstat -in”):
 puts(i)

puts(“网络接口流量情况”)
for i in getCommand(”’for i in `ifconfig -a |egrep “^{hme|qfe|ge|ce|eri|bge|nge|e1000g}” |cut -d: -f1`; do netstat -I $i; done”’):
 puts(i)
puts(” 网络ARP缓存信息”)
for i in getCommand(“netstat -anp”):
 puts(i)
puts(“”)
puts(” 路由表情况”)
for i in getCommand(“netstat -rn”):
 puts(i)
puts(“”)

puts(“%s%s%s”%(“=”*30,”系统主要服务及状态[svcs]”,”=”*30))
for i in getCommand(”’svcs”’):
 puts(i)
puts(“%s%s%s”%(“=”*30,”服务硬件状态[prtdiag]”,”=”*30))
for i in getCommand(”’prtdiag -v”’):
 puts(i)

# puts(getCommand(“showrev”))
#硬件状态信息
#puts(getCommand(“prtdiag -v”))

#cpu情况
#puts(getCommand(“mpstat”))
#puts(getCommand(“sar -u”))

#物理内存大小
#puts(getCommand(”’/usr/sbin/prtdiag -v |grep “^Memory””’))
#虚拟内存
#puts(getCommand(”’vmstat 1 2”’))
#puts(getCommand(”’swap -s”’))

#=================磁盘IO情况=================
#puts(getCommand(”’iostat -xtc”’))  #

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。

发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/2289016.html

(0)
上一篇 2025年2月27日 23:37:40
下一篇 2025年2月25日 11:10:24

AD推荐 黄金广告位招租... 更多推荐

发表回复

登录后才能评论