1. Grafana简介
Grafana是一个跨平台的开源的度量分析和可视化工具,可以通过将采集的数据查询然后可视化的展示,并及时通知。它主要有以下六大特点:
1、展示方式: 快速灵活的客户端图表,面板插件有许多不同方式的可视化指标和日志,官方库中具有丰富的仪表盘插件,比如热图、折线图、图表等多种展示方式;
2、数据源: Graphite,InfluxDB,OpenTSDB,Prometheus,Elasticsearch,CloudWatch和KairosDB等;
3、通知提醒: 以可视方式定义最重要指标的警报规则,Grafana将不断计算并发送通知,在数据达到阈值时通过Slack、PagerDuty等获得通知;
4、混合展示: 在同一图表中混合使用不同的数据源,可以基于每个查询指定数据源,甚至自定义数据源;
5、注释: 使用来自不同数据源的丰富事件注释图表,将鼠标悬停在事件上会显示完整的事件元数据和标记;
6、过滤器: Ad-hoc过滤器允许动态创建新的键/值过滤器,这些过滤器会自动应用于使用该数据源的所有查询。
2. 部署Grafana
Grafana是一个开源的指标量监测和可视化工具
官方网站为https://grafana.com/
Grafana的安装非常简单,官方就有软件仓库可以直接使用,也可以通过docker镜像等方式直接本地启动。还可以直接下载rpm包、二进制包进行安装。大家可以从 https://grafana.com/grafana/download
下载rpm安装包。
[root@JLin ~]# wget https://dl.grafana.com/oss/release/grafana-7.3.4-1.x86_64.rpm
[root@JLin ~]# yum -y install grafana-7.3.4-1.x86_64.rpm
设置开机自启
[root@JLin ~]# systemctl daemon-reload
[root@JLin ~]# systemctl start grafana-server
[root@JLin ~]# systemctl enable --now grafana-server
Synchronizing state of grafana-server.service with SysV service script with /usr/lib/systemd/systemd-sysv-install.
Executing: /usr/lib/systemd/systemd-sysv-install enable grafana-server
Created symlink /etc/systemd/system/multi-user.target.wants/grafana-server.service → /usr/lib/systemd/system/grafana-server.service.
[root@JLin ~]# ss -anltup | grep grafana
tcp LISTEN 0 128 :::3000 :::* users:(("grafana-server",pid=2259,fd=11))
安装grafana-zabbix插件(Using grafana-cli tool)
[root@JLin ~]# grafana-cli plugins list-remote
Restart grafana after installing plugins . <service grafana-server restart>
[root@JLin ~]# grafana-cli plugins install alexanderzobnin-zabbix-app
installing alexanderzobnin-zabbix-app @ 4.1.5
from: https://grafana.com/api/plugins/alexanderzobnin-zabbix-app/versions/4.1.5/download
into: /var/lib/grafana/plugins
✔ Installed alexanderzobnin-zabbix-app successfully
Restart grafana after installing plugins . <service grafana-server restart>
[root@JLin ~]# systemctl restart grafana-server
Grafana配置文件设置https
[root@JLin ~]# vim /etc/grafana/grafana.ini
#################################### Server ####################################
[server]
# Protocol (http, https, h2, socket)
protocol = https
cert_file = 你的密钥 // 密钥
cert_key = 你的密钥
# The ip address to bind to, empty will bind to all interfaces
;http_addr =
# The http port to use
http_port = 3000 //设置端口
推荐结合zabbix一起食用