1.上传需要的安装包
2.解压prometheus
tar -xvf prometheus-2.7.1.linux-amd64.tar.gz -C /usr/local/
cd /usr/local
mv prometheus-2.7.1.linux-amd64/ prometheus
cd prometheus
3.配置文件修改,添加客户端IP和名称
vim prometheus.yml
保存退出
4. 启动普罗米修斯
[root@prometheus prometheus]# ./prometheus &
5.验证,网页浏览普罗米修斯自带的监控页面
截图时客户端已配置好
6.安装grafana,普罗米修斯自带的页面实在太丑,安装grafana美观一点
rpm -ivh --nodeps grafana-6.0.0-1.x86_64.rpm
systemctl daemon-reload
systemctl enable grafana-server.service
systemctl start grafana-server.service
7.本地访问IP:3000端口,打开grafana界面,账号密码都是admin,初次登陆强制修改密码
8.添加prometheus数据源
Dashboards页面选择“Prometheus 2.0 Stats”
Settings页面填写普罗米修斯地址并保存
9.客户端安装node-exporter
tar -xvf node_exporter-0.17.0.linux-amd64.tar.gz -C /usr/local/
cd /usr/local/node_exporter-0.17.0.linux-amd64/
./node_exporter &
10.grafana导入dashboard
将准备好的jason文件导入:1-node-exporter-0-16-0-17-for-prometheus_rev7.json
再刷新grafana页面,即可看到我们刚才设置好的node监控
可以检测到系统运行时间,CPU利用率,内存使用率,磁盘读写速率,网络速率等信息
11.grafana图像显示报错,磁盘总空间对应图像不显示
下载grafana-piechart-panel-1.6.2.zip
unzip grafana-piechart-panel-1.6.2.zip
mv grafana-piechart-panel /var/lib/grafana/plugins/
systemctl restart grafana-server
解决!!!