zabbix 监控CDN带宽

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了zabbix 监控CDN带宽相关的知识,希望对你有一定的参考价值。

       我这边使用的是网宿的CDN做加速,然后有一堆的接口可以调用单独查询;
网宿提供所有频道一起查询;cdn上面都是钱,稍微监控还是非常有必要的。
api信息格式:
https://myview.chinanetcenter.com/api/bandwidth-channel.action?u=xxxx&p=xxxx&cust=xxx&date=xxxx&channel=xxxxxx;xxxxx&isExactMatch=false&region=xxxx&isp=xxxx&resultType=xxxx&format=xxx&startdate=xxxx&enddate=xxxx
说明:
u 和p 是必选项,p是cdn后台设置的myview密码;其他可以默认或者不选;
channel:频道信息;不填默认是全部。
isp:运营商带宽;默认是所有。
startdate和enddate: 查询的时间;不选默认是全部,而这个时间也有一个规律,就是年月和时间之前用%20转码:比如(2013-01-01%2010:10就是 2013-01-01 10:10)
其api文档可以咨询客服。
1、先导入bs 查看返回数据结构:
开始查看数据脚本:
[[email protected] python]# cat check_cndbindwaith.py 
#coding=utf-8
import urllib,urllib2
from bs4 import BeautifulSoup
import datetime
import sys
username = "xxx"
password = "xxxx"
now_time=datetime.datetime.now()
starttime=(now_time - datetime.timedelta(seconds=300)).strftime(‘%Y-%m-%d %H:%M‘)
starttimeformat = starttime.split()[0]+"%20"+starttime.split()[1]
endtime=(datetime.datetime.now()).strftime(‘%Y-%m-%d %H:%M‘)
endtimtformat = endtime.split()[0]+"%20"+endtime.split()[1]
url = "https://myview.chinanetcenter.com/api/bandwidth-channel.action?u=%s&p=%s&startdate=%s&enddate=%s" %(username,password,starttimeformat,endtimtformat)
try:
    html = urllib2.urlopen(url, timeout=5)
except urllib2.HTTPError as err:
    print str(err)
soup = BeautifulSoup(html)
print soup
二、查看结果并取值:
[[email protected] python]# python check_cndbindwaith.py 
  markup_type=markup_type))
<?xml version="1.0" encoding="utf-8"?><html><body><provider name="ChinaNetCenter" resulttype="1" type="bandwidth-channel">
<bandwidth time="2016-01-26 15:35:00">0.00</bandwidth>
</channel>
</date>
</provider></body></html>

备注:我们要取的是bandwidth的值。然后通过观察发现有时候脚本返回两个值。而我们zabbix
应该只要一个返回值。

三、zabbix 脚本:

#coding=utf-8
import urllib,urllib2
from bs4 import BeautifulSoup
import datetime
import sys
def cdn():
    username = "xxx"
    password = "xxxx"
    now_time=datetime.datetime.now()
    starttime=(now_time - datetime.timedelta(seconds=300)).strftime(‘%Y-%m-%d %H:%M‘)
    starttimeformat = starttime.split()[0]+"%20"+starttime.split()[1]
    endtime=(datetime.datetime.now()).strftime(‘%Y-%m-%d %H:%M‘)
    endtimtformat = endtime.split()[0]+"%20"+endtime.split()[1]
    data = []
    url = "https://myview.chinanetcenter.com/api/bandwidth-channel.action?u=%s&p=%s&startdate=%s&enddate=%s" %(username,password,starttimeformat,endtimtformat)
    try:
        html = urllib2.urlopen(url, timeout=5)
    except urllib2.HTTPError as err:
        print str(err)
    soup = BeautifulSoup(html)
    for key in soup.find_all("bandwidth"):
        data.append(key.get_text())
    for i in data: 
        if i.startswith("0") and not i.startswith("1"):
            return 0
        else:
            return int(i.split(".")[0])

if __name__ == "__main__":
    print cdn()

四、zabbix agent编写脚本并且收集数据:

[[email protected] scripts]# vim /usr/local/zabbix/etc/zabbix_agentd.conf
UserParameter=cdn,/usr/bin/python /usr/local/zabbix/scripts/check_cdnbindwaitch.py

五、添加item:

技术分享


六:出图和触发器根据自己需要进行添加:

技术分享


本文出自 “小罗” 博客,请务必保留此出处http://xiaoluoge.blog.51cto.com/9141967/1738652

以上是关于zabbix 监控CDN带宽的主要内容,如果未能解决你的问题,请参考以下文章

Zabbix 监控ESXi服务器非虚拟机CPU内存硬盘网络带宽

阿里云升级带宽划算还是用cdn好

zabbix 3.4监控zookeeper3.4

Zabbix中小型企业Zabbix监控实战之告警大全

Dns负载均衡及zabbix监控

如何实现ZABBIX MAPS显示两台交换机中的带宽流量