zabbix实现炫酷图表插件grafana
1、安装grafana# wget https://grafanarel.s3.amazonaws.com/builds/grafana-2.0.2-1.x86_64.rpm# yum –y 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.inisystemd服务grafana-server.service日志 /var/log/grafana/grafana.logsqlite3数据库/var/lib/grafana/grafana.db2、启动grafana服务# service grafana-server startStarting Grafana Server: .... nohup: redirecting stderr to stdoutOK# chkconfig --add grafana-server# chkconfig grafana-server on# netstat -anpt | grep grafanatcp 0 0 :::3000 :::* LISTEN 15444/grafana-serve
服务详情启动用户 grafana服务名称 grafana-server默认端口 3000账号 admin密码 admin 3、 登录管理界面(至此grafana安装成功)
4、安装grafana-zabbix插件
(也可通过下载源码包之后,解压https://github.com/alexanderzobnin/grafana-zabbix/releases/tag/v2.0.1。这里采用git clone命令)https://github.com/alexanderzobnin/grafana-zabbix
# yum -y install git# 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 937Receiving objects: 100% (955/955), 176.96KiB | 159 KiB/s, done.Resolving deltas: 100% (606/606), done. # cp -r grafana-zabbix/zabbix/ /usr/share/grafana/public/app/plugins/datasource/ # 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、重启服务# service grafana-server restartOKopping Grafana Server ... Starting Grafana Server: .... nohup:redirecting stderr to stdoutOK
修改Zabbix的API文件,由于Zabbix2.2支持跨域问题,故添加以下配置(zabbix2.2版本已上不需要改动)#sudo vim /usr/share/zabbix/api_jsonrpc.phpheader('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 settiongURL:http://zabbix服务器IP/zabbix/api_jsonrpc.php
图形化界面参考参考https://github.com/alexanderzobnin/grafana-zabbix/wiki/Usage
页:
[1]