grafana-zabbix安装
作者:itnihao
版本:v1.0
时间:2015-07-13
一、安装grafana
什么是grafana,参考http://www.oschina.net/p/grafana
安装参考文档 http://docs.grafana.org/v2.0/installation/
grafana演示站点 http://play.grafana.org/
shell#sudo yum install https://grafanarel.s3.amazonaws.com/builds/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
启动服务
shell#sudo service grafana-server start
服务详情
启动用户 grafana
服务名称 grafana-server
默认端口 3000
账号 admin
密码 admin
服务自启动
shell#sudo /sbin/chkconfig --add grafana-server
####CentOS7####
shell#sudo systemctl daemon-reload
shell#sudo systemctl start grafana-server
shell#sudo systemctl status grafana-server
shell#sudo systemctl enable grafana-server.service
二、安装grafana-zabbix插件
https://github.com/alexanderzobnin/grafana-zabbix
shell#git clone https://github.com/alexanderzobnin/grafana-zabbix/
shell#sudo cp -r grafana-zabbix/zabbix/ /usr/share/grafana/public/app/plugins/datasource/
shell#ls /usr/share/grafana/public/app/plugins/datasource/
shell#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": "guest", #配置用户名,注意此用户在zabbix中存在,且对zabbix数据有只读权限(不需要写权限)
"password": "guest", #配置密码
"metrics": true,
"annotations": true
}
重启服务
shell#sudo service grafana-server restart
修改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;
}
#在此之前添加
require_once dirname(__FILE__).‘/include/func.inc.php‘;
require_once dirname(__FILE__).‘/include/classes/core/CHttpRequest.php‘;
三、配置grafana
配置 Datasource
配置zabbix的用户,密码,注意账号在Zabbix中存在且有只读权限
好了,安装到此完毕
现在添加grafana图形,参考https://github.com/alexanderzobnin/grafana-zabbix/wiki/Usage,具体图形使用不再详解,参考grafana使用温度
如果在添加图形的时候无法出现Group分组的选项,说明你的Zabbix插件配置存在问题,请检查在继续,可开浏览器调试模式看console log
添加好的模板如下
如有问题,请多参考官方文档。
本文出自 “itnihao的运维技术博客” 博客,请务必保留此出处http://itnihao.blog.51cto.com/1741976/1675178
原文地址:http://itnihao.blog.51cto.com/1741976/1675178