您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
公司有需求,需要短信报警,所以才有了如下的东西。
第三方:smsbao.com 收费是1分钱一条,买的多当然就更便宜,我们买的是700元/10000条。
缺点:
1、发送内容只能有70字节,超过了就会拆分成多条短信。所以得对发送内容进行优化。
2、发送信息的号码不同
优点:
1、通过http接口,所好进行调整
2、信息一般在1-3秒之内发送完毕
朋友们如果觉得麻烦,可以试试OneAlert一键集成nagios,轻松实现微信、电话、邮件、短信、APP的告警通知。http://www.onealert.com/activity/nagios.html
nagios commands.cgf内容如下:
vim /usr/local/nagios/etc/objects/commands.cfg
# 'notify-host-by-smsbao' command definition define command{ command_name notify-host-by-smsbao command_line /usr/local/nagios/libexec/smsbao.py "主机报警 IP:$HOSTADDRESS$:$HOSTSTATE$ 信息:$HOSTOUTPUT$" } # 'notify-service-by-smsbao' command definition define command{ command_name notify-service-by-smsbao command_line /usr/local/nagios/libexec/smsbao.py "服务报警 主机:$HOSTNAME$服务:$SERVICEDESC$ IP地址:$HOSTADDRESS$ 状态:$SERVICESTATE$ 信息:$SERVICEOUTPUT$" }
smsbao.py 代码如下:
调用方式:
#./smsbao.py "发送信息的内容"
#!/usr/bin/python #coding:utf8 #exp #python smsbao.py "发送一个测试监控信息" import requests,sys,time import sys import time #coding is Error so default_encoding = 'utf-8' if sys.getdefaultencoding() != default_encoding: reload(sys) sys.setdefaultencoding(default_encoding) #get localtime 2014-7-11 10:01:01 ltime = time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time())) #u:username p:password c:content m:Phone Content = str(sys.argv[1]) payload = { 'u':'zwhset', 'p':'password_md5', 'm':'you phone', 'c':Content } #send msmbao message to phone r = requests.get('http://www.smsbao.com/sms',params=payload) date = ltime + "\t" + Content + "\t" + r.text + "\n" f = open('smsbao.log','a') #write log to smsbao.log try: f.write(date) f.close() except IOError,e: sys.exit()
短信图:
smsbao后台短信日志
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。