clickhouse监控之Grafana快速搭建
主要分为两种安装方式
1)rpm安装
rpm -ivh grafana-8.5.4-1.x86_64.rpm --nodeps #忽略额外插件安装 systemctl start grafana-server.service #启动服务 systemctl status grafana-server.service systemctl enable grafana-server.service #设置开机启动 #安装相关插件 cd /var/lib/grafana/ mkdir plugins unzip vertamedia-clickhouse-datasource-2.5.0.zip systemctl restart grafana-server.service
2)tar.gz解压
tar -zxf grafana-enterprise-8.5.4.linux-amd64.tar.gz cd grafana-8.5.4/ nohup ./bin/grafana-server --config=./conf/defaults.ini & cd data mkdir plugins cd plugins unzip vertamedia-clickhouse-datasource-2.5.0.zip ps -ef|grep grafana kill -9 {pid} cd grafana-8.5.4/ nohup ./bin/grafana-server --config=./conf/defaults.ini &
3)访问方式:
http://x.x.x.x:3000/
用户名; admin 密码:admin
4)安装包获取:
所需文件较大故采用网盘方式共享
链接: https://pan.baidu.com/s/1tNJYlVywCvAboaHS1MFlYA?pwd=k5z5 提取码: k5z5
也可以自己通过官网获取,推荐清华镜像源:https://mirrors.tuna.tsinghua.edu.cn/grafana/
5)插件获取:
地址:https://grafana.com/api/plugins/vertamedia-clickhouse-datasource/versions/2.5.0/download
或
grafana-cli plugins install vertamedia-clickhouse-datasource #在线安装 很慢不推荐
使用流程如图
建议使用用户名密码连接
6)模板获取地址:
https://grafana.com/grafana/dashboards/
使用方式:导入相关json文件即可。