curl循环监控_shell 监控 tail 文件输出,触发命令?

ruosu0710

2017-03-15 11:20:30 +08:00

目前在用的.

#!/usr/bin/env python

#-*- coding: utf-8 -*-

import subprocess

import time

import datetime

from wxnotice import *

#日志文件是按天产生,则通过在程序中判断文件的产生日期与当前时间,更换监控的日志文件

def catch(logfile,server):

print '监控的日志文件是%s' %logfile

send_notice('od8J4s4pbnj2UTwASk-tKr8hKbEU','异常监控任务启动')

stoptime=datetime.datetime.combine(datetime.date.today(), datetime.time.max)

stoptime = time.strftime('%Y-%m-%d %H:%M:%S',stoptime.timetuple())

print stoptime

popen = subprocess.Popen('tail -f ' + logfile, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)

pid = popen.pid

print('Popen.pid:' + str(pid))

while True:

thistime = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(time.time()))#当前时间

#print thistime

if thistime >= stoptime:

# 终止子进程

popen.kill()

print '杀死 subprocess'

break

line = popen.stdout.readline().strip()

# 判断内容是否有异常

if line.find('Exception')>0:

line=line+popen.stdout.readline().strip()#

line=line+popen.stdout.readline().strip()#

#line=line+popen.stdout.readline().strip()#

#line=line+popen.stdout.readline().strip()#

#line=line+popen.stdout.readline().strip()#多读一行.获取更多的异常信息

openid_array=['od8J4s4pbnj2UTwASk-tKr8hKbEU','od8J4s8xWPDUtrJTXL-bQ9FYias4']

for openid in openid_array:

content='['+server+']'+line

content=content.replace('\"','')

send_notice(openid,content)#发送微信模板通知给管理员

#!/usr/bin/env python

#-*- coding: utf-8 -*-

import sys

from exception import *

filename= '/data/app/tomcat'+sys.argv[1]+'/logs/catalina.out'

print filename

catch(filename,'TOMCAT'+sys.argv[1])

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值