python2 监控服务器资源

******************************内存监控*********************************
*******************时间: 2019-08-24 16:50:20 ******************
总内存: 65958920
空闲内存: 37296548
给文件的缓冲大小: 310288
高速缓冲存储器使用的大小: 8991808
被高速缓冲存储用的交换空间大小: 7160
给文件的缓冲大小: 310288
交换内存利用率: 4.35586183351
内存利用率: 29.35 %
****************************内核线程、虚拟内存、磁盘、陷阱和 CPU 活动的统计信息监控****************************
*******************时间: 2019-08-24 16:50:22 ******************
等待运行进程的数量: 1
处于不间断状态的进程: 0
使用虚拟内存(swap)的总量: 365396
空闲的内存总量: 37298132
用作缓冲的内存总量: 310288
用作缓存的内存总量: 8991816
交换出内存总量 : 0
交换入内存总量 : 0
从一个块设备接收: 0
发送到块设备: 0
每秒的中断数: 9751
每秒的上下文切换数: 7514
用户空间上进程运行的时间百分比: 3
内核空间上进程运行的时间百分比: 2
闲置时间百分比: 95
等待IO的时间百分比: 0
从虚拟机偷取的时间百分比: 0
***************************************cpu监控***************************************
*******************时间: 2019-08-24 16:50:23 ******************
CPU数目: 24
************************负载均衡监控****************************
*******************时间: 2019-08-24 16:50:24 ******************
系统5分钟前的平均负载: 0.16
系统10分钟前的平均负载: 0.08
系统15分钟前的平均负载: 0.06
分子是正在运行的进程数,分母为总进程数: 3/968
最近运行的进程id: 25222
************************磁盘空间监控****************************
*******************时间: 2019-08-24 16:50:24 ******************
文件系统: /dev/sda3 容量: 1.8T 已用: 133G 可用: 1.7T 已用%挂载点: 8%
文件系统: tmpfs 容量: 32G 已用: 12K 可用: 32G 已用%挂载点: 1%
文件系统: /dev/sda1 容量: 477M 已用: 57M 可用: 395M 已用%挂载点: 13%
文件系统: /dev/sdb1 容量: 440G 已用: 71M 可用: 436G 已用%挂载点: 1%
******************************端口监控*********************************
*******************时间: 2019-08-24 16:50:25 ******************
1 1
#################################################

!/usr/bin/env python

-- coding: utf-8 --

@Time : 2017/11/27 15:59

@Desc : 服务器监控代码

@File : monitorserver.py

@Software: PyCharm

import commands
import re

import time
import threading

"""

内存监控

"""
def mem_info(ip):
cm="ssh -q root@{0} 'cat /proc/meminfo'".format(ip)
status,output = commands.getstatusoutput(cm)
mem = output
mem_values = re.findall("(\d+)\ kB", mem)
MemTotal = mem_values[0]
MemFree = mem_values[1]
Buffers = mem_values[2]
Cached = mem_values[3]
SwapCached=mem_values[4]
SwapTotal = mem_values[13]
SwapFree = mem_values[14]
print '******************************内存监控*********************************'
print "*******************时间:", time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()), "******************"
print "总内存:",MemTotal
print "空闲内存:", MemFree
print "给文件的缓冲大小:",Buffers
print "高速缓冲存储器使用的大小:", Cached
print "被高速缓冲存储用的交换空间大小:", SwapCached
print "给文件的缓冲大小:", Buffers
if int(SwapTotal) == 0:
print "交换内存总共为:0"
else:
Rate_Swap = 100 - 100int(SwapFree)/float(SwapTotal)
print "交换内存利用率:", Rate_Swap
Free_Mem = int(MemFree) + int(Buffers) + int(Cached)
Used_Mem = int(MemTotal) - Free_Mem
Rate_Mem = 100
Used_Mem/float(MemTotal)
print "内存利用率:", str("%.2f" % Rate_Mem), "%"

"""
内核线程、虚拟内存、磁盘、陷阱和 CPU 活动的统计信息
"""
def vm_stat_info(ip):
cm="ssh -q root@{0} 'vmstat 1 2 | tail -n 1'".format(ip)
status,output = commands.getstatusoutput(cm)
vmstat_info = output.strip().split()
processes_waiting = vmstat_info[7]
processes_sleep = vmstat_info[8]
swpd = vmstat_info[9]
free = vmstat_info[10]
buff = vmstat_info[11]
cache = vmstat_info[12]
si = vmstat_info[13]
so = vmstat_info[14]
io_bi = vmstat_info[15]
io_bo = vmstat_info[16]
system_interrupt = vmstat_info[17]
system_context_switch = vmstat_info[18]
cpu_user = vmstat_info[19]
cpu_sys = vmstat_info[20]
cpu_idle = vmstat_info[21]
cpu_wait = vmstat_info[22]
st=vmstat_info[23]
print '****************************内核线程、虚拟内存、磁盘、陷阱和 CPU 活动的统计信息监控****************************'
print "*******************时间:", time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()), "******************"
print "等待运行进程的数量:", processes_waiting
print "处于不间断状态的进程:", processes_sleep
print "使用虚拟内存(swap)的总量:", swpd
print "空闲的内存总量:", free
print "用作缓冲的内存总量:", buff
print "用作缓存的内存总量:", cache
print "交换出内存总量 :", si
print "交换入内存总量 :", so
print "从一个块设备接收:", io_bi
print "发送到块设备:", io_bo
print "每秒的中断数:", system_interrupt
print "每秒的上下文切换数:", system_context_switch
print "用户空间上进程运行的时间百分比:", cpu_user
print "内核空间上进程运行的时间百分比:", cpu_sys
print "闲置时间百分比:", cpu_idle
print "等待IO的时间百分比:", cpu_wait
print "从虚拟机偷取的时间百分比:", st

'''
cpu监控
'''
def cpu_info(ip):
cm="ssh -q root@{0} 'cat /proc/cpuinfo'".format(ip)
status,output = commands.getstatusoutput(cm)
cpuinfo = output
cpu_num = re.findall('processor.*?(\d+)', cpuinfo)[-1]
cpu_num = str(int(cpu_num) + 1)
print '***************************************cpu监控***************************************'
print "*******************时间:", time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()), "******************"
print u"CPU数目:", cpu_num

"""
负载均衡
"""
def load_stat(ip):
cm="ssh -q root@{0} 'cat /proc/loadavg'".format(ip)
status,output = commands.getstatusoutput(cm)
loadavgs = output.strip().split()
print '************************负载均衡监控****************************'
print "*******************时间:",time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()),"******************"
print "系统5分钟前的平均负载:", loadavgs[7]
print "系统10分钟前的平均负载:", loadavgs[8]
print "系统15分钟前的平均负载:", loadavgs[9]
print "分子是正在运行的进程数,分母为总进程数:",loadavgs[10]
print "最近运行的进程id:", loadavgs[11]

"""
磁盘空间监控
"""
def disk_stat(ip):
cm="ssh -q root@{0} 'df -h'".format(ip)
status,output = commands.getstatusoutput(cm)
disk = output
disklist = disk.strip().split('\n')
disklists=[]
for disk in disklist[3:]:
disklists.append(disk.strip().split())
print '************************磁盘空间监控****************************'
print "*******************时间:", time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()), "******************"
for i in disklists:
print "\t文件系统:", i[0],
print "\t容量:", i[1],
print "\t已用:", i[2],
print "\t可用:", i[3],
print "\t已用%挂载点:", i[4]

"""
端口监控
一般是远程服务器用户名用户
"""
def getComStr(ip,port,pro):
cm="ssh -q root@{0} 'netstat -tpln|grep 60001|wc -l;ps aux|grep -v grep|grep java|wc -l'".format(ip)
status,output = commands.getstatusoutput(cm)
com = output.split("\n")
print '******************************端口监控*********************************'
print "*******************时间:", time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()), "******************"
print com[2],com[3]

"""
第一种执行
"""
def alltask():
try:
threads = []
t1 = threading.Thread(target=mem_info)
threads.append(t1)
t2 = threading.Thread(target=vm_stat_info)
threads.append(t2)
t3 = threading.Thread(target=cpu_info)
threads.append(t3)
t4 = threading.Thread(target=load_stat)
threads.append(t4)
t5 = threading.Thread(target=ionetwork)
threads.append(t5)
t6 = threading.Thread(target=disk_stat)
threads.append(t6)
t7 = threading.Thread(target=getComStr)
threads.append(t7)
for n in range(len(threads)):
threads[n].start()
except Exception, e:
print str(e)

"""
第二种执行
"""
if name == 'main':
try:
mem_info('113.219.129.32')
vm_stat_info('113.219.129.32')
cpu_info('113.219.129.32')
load_stat('113.219.129.32')
disk_stat('113.219.129.32')
getComStr('113.219.129.32',"","")
except Exception, e:
print str(e)

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,222评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,455评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,720评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,568评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,696评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,879评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,028评论 3 409
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,773评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,220评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,550评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,697评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,360评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,002评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,782评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,010评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,433评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,587评论 2 350

推荐阅读更多精彩内容

  • 用户响应时间=服务器响应时间+网络时间 系统性能分析思路 (1)整体系统CPU利用率 (2)内存利用率 (3)磁盘...
    是小亦啊阅读 1,810评论 0 8
  • !/bin/bash ##############################################...
    酸菜牛肉阅读 192评论 0 0
  • 一、MemCache简介 session MemCache是一个自由、源码开放、高性能、分布式的分布式内存对象缓存...
    李伟铭MIng阅读 3,789评论 2 13
  • 中午看了一篇文章,其中罗列了作为一个幸福的人需要的几个条件。 一开始看得津津有味,还觉得十分有道理,不禁想给人家一...
    奈何奈何奈可何阅读 484评论 11 13
  • 人很容易知道一点就以为知道全部。 万事的确是相通的,但一叶障目,放任猜想只能收获假象。
    划然变轩昂阅读 143评论 0 0