zabbix如何添加图表显示内容_zabbix插件之grafana-zabbix实现炫酷图表

Grafana-zabbix是zabbix的一个插件,通过调用API接口呈现酷炫的图表

系统:Centos6.

1、安装grafana

[root@Monitor ~]# yum Cy install grafana-2.0.2-1.x86_64.rpm

安装之后会有如下文件

二进制文件    /usr/sbin/grafana-server

启动脚本        /etc/init.d/grafana-server

环境变量        /etc/sysconfig/grafana-server

配置文件        /etc/grafana/grafana.ini

systemd服务  grafana-server.service

日志                /var/log/grafana/grafana.log

sqlite3数据库  /var/lib/grafana/grafana.db

2、启动grafana服务

[root@Monitor ~]# service grafana-serve rstart

Starting Grafana Server: .... nohup: redirecting stderr to stdout

OK

[root@Monitor ~]# chkconfig --add grafana-server

[root@Monitor ~]# chkconfig grafana-server on

[root@Monitor ~]# netstat -anpt | grepgrafana

tcp       0      0 :::3000                     :::*                        LISTEN      15444/grafana-serve

tcp       0      0::ffff:172.16.112.110:3000 ::ffff:172.16.113.23:60566 ESTABLISHED 15444/grafana-serve

nohup: redirectingstderr to stdout(可能启动脚本的变量重定向有点错误,但不影响的服务的开启)

服务详情

启动用户 grafana

服务名称 grafana-server

默认端口 3000

账号        admin

密码        admin

3、 登录管理界面(至此grafana安装成功)

4、安装grafana-zabbix插件

(也可通过下载源码包之后,解压https://github.com/alexanderzobnin/grafana-zabbix/releases/tag/v2.0.1。这里采用git clone命令)

[root@Monitor ~]# yum -y install git

[root@Monitor ~]# git clone https://github.com/alexanderzobnin/grafana-zabbix/

Initialized empty Git repository in/root/grafana-zabbix/.git/

remote: Counting objects: 955, done.

remote: Compressing objects: 100% (18/18),done.

remote: Total 955 (delta 10), reused 0(delta 0), pack-reused 937

Receiving objects: 100% (955/955), 176.96KiB | 159 KiB/s, done.

Resolving deltas: 100% (606/606), done.

[root@Monitor ~]# sudo cp -r grafana-zabbix/zabbix/ /usr/share/grafana/public/app/plugins/datasource/

[root@Monitor ~]# sudo vim /usr/share/grafana/public/app/plugins/datasource/zabbix/plugin.json

{

"pluginType": "datasource",

"name": "Zabbix",

"type": "zabbix",

"serviceName": "ZabbixAPIDatasource",

"module": "plugins/datasource/zabbix/datasource",

"partials": {

"config":"app/plugins/datasource/zabbix/partials/config.html",

"query":"app/plugins/datasource/zabbix/partials/query.editor.html",

"annotations":"app/plugins/datasource/zabbix/partials/annotations.editor.html"

},

"username": "zabbix",    #配置用户名,注意此用户在zabbix中存在,且对zabbix数据有只读权限(不需要写权限)

"password": "zabbix",    #配置密码

"trends": false,

"trendsFrom": "7d",

"limitmetrics": 100,

"metrics": true,

"annotations": true

}

5、重启服务

[root@Monitor ~]# service grafana-server restart

OKopping Grafana Server ...                                [  OK  ]

Starting Grafana Server: .... nohup:redirecting stderr to stdout

OK

修改Zabbix的API文件,由于Zabbix2.2支持跨域问题,故添加以下配置

#sudo vim /usr/share/zabbix/api_jsonrpc.php

header("Access-Control-Allow-Origin: *");

header("Access-Control-Allow-Headers: Content-Type");

header("Access-Control-Allow-Methods: POST");

header("Access-Control-Max-Age: 1000");

if ($_SERVER["REQUEST_METHOD"] === "OPTIONS") {

return;

}

#添加(2.2已经有了,不用添加了)

require_once dirname(__FILE__)."/include/func.inc.php";

require_oncedirname(__FILE__)."/include/classes/core/CHttpRequest.php";

6、配置grafana

添加Datasource数据源

其中http settiong

7、接下来就是添加grafana图形

选择graph

本文出自 “流星宇” 博客,谢绝转载!

zatree 是来自国内58公司开发的监控软件zabbix的一个插件,主要功能是提供host group的树形展示和在item里指定关键字查询及数据排序。 安装方法: 1:下载文件 git clone https://github.com/spide4k/zatree.git zatree 2:复制相关文件 假如zabbix web目录位置在/var/www/zabbix,定义zabbix目录 ZABBIX_PATH=/var/www/zabbix 复制相关文件和目录 cp -rf zatree $ZABBIX_PATH/ cd $ZABBIX_PATH/zatree/addfile cp class.cchart_zabbix.php class.cgraphdraw_zabbix.php class.cimagetexttable_zabbix.php $ZABBIX_PATH/include/classes/ cp zabbix.php zabbix_chart.php $ZABBIX_PATH/ cp CItemValue.php $ZABBIX_PATH/api/classes/ 3:支持web interface,修改配置文件 vi $ZABBIX_PATH/zatree/zabbix_config.php 'user'=>'xxx', //你的用户名 'passowrd'=>'xxx', //你的密码 4:导航增加Zatree入口,修改menu.inc.php,main.js vi $ZABBIX_PATH/include/menu.inc.php 添加285行到294行内容 'zatree'=>array( 'label' => _('zatree'), 'user_type' => USER_TYPE_ZABBIX_USER, 'default_page_id' => 0, 'force_disable_all_nodes' => true, 'pages' =>array( array('url' => 'zabbix.php','label' => _('Zatree'),) ) ), 'login' => array( 'label' => _('Login'), 'user_type' => 0, 'default_page_id' => 0, vi $ZABBIX_PATH/js/main.js 替换106行 menus: {'empty': 0, 'view': 0, 'cm': 0, 'reports': 0, 'config': 0, 'admin': 0, 'zatree':0}, 6:增加封装的api类 vi $ZABBIX_PATH/include/classes/api/API.php 在74行下添加75行'itemvalue'=>'CItemValue', 'usermedia' => 'CUserMedia', 'itemvalue'=>'CItemValue', 'webcheck' => 'CWebCheck' ); 7:登陆zabbix,在导航里可以看到一个Zatree的菜单,使用方法是傻瓜的
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值