码迷,mamicode.com
首页 > 编程语言 > 详细

python实现监控URL的一个值小于规定的值--邮件报警

时间:2016-12-16 18:51:12      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:user   email   rom   type   sendmail   cep   cab   lis   tor   

监控URL的一个值小于规定的值--邮件报警

#!/usr/bin/env python
#-*- coding:utf-8 -*-
__author__ = liudong
import urllib,sys,urllib,json,smtplib
from email.mime.text import MIMEText
mailto_list=[liudong@researchina.cn]
mail_host="smtp.exmail.qq.com"
mail_user="liudong@researchina.cn"
mail_pass="abcABC123"
mail_postfix="researchina.cn"
def send_mail(to_list,sub,content):
     me="hello"+"<"+mail_user+"@"+mail_postfix+">"
     msg = MIMEText(content,_subtype=plain)
     msg[Subject] = sub
     msg[From] = me
     msg[To] = ";".join(to_list)
     try:
         server = smtplib.SMTP(mail_host,25)
         server.set_debuglevel(1)
         server.login(mail_user,mail_pass)
         server.sendmail(me, to_list, msg.as_string())
         server.close()
     except :
         return False
url = "http://storm.yqing.cn/api/v1/cluster/summary"
wp = urllib.urlopen(url).read()
#content = wp.read()
#print(wp)
a = json.loads(wp)
b = (a["supervisors"])
 #print(b)
if b < 3:
    send_mail(mailto_list,Storm UI,Please check immediately error)

 

python实现监控URL的一个值小于规定的值--邮件报警

标签:user   email   rom   type   sendmail   cep   cab   lis   tor   

原文地址:http://www.cnblogs.com/liuyansheng/p/6187853.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!