Prometheus+Grafana搭建请看第一篇文章,本文只讲解如何快速监控主机。
安装Node_Exporter
- 下载地址
https://prometheus.io/download/#node_exporter
本文以node_exporter-1.0.1.linux-amd64 版本为例。
- 解压Node_Exporter
[root@nc-zhangfr1]# tar -zxvf node_exporter-1.0.1.linux-amd64.tar.gz
有几台机器就装几个node_exporter。
- 启动Node_Exporter
默认端口为9100
[root@nc-zhangfr1]# nohup ./node_exporter &
- web浏览器校验
http://IP:9100
配置Prometheus
- 修改配置文件
修改prometheus.yml 中,在scrape_configs 下 增加如下配置。
targets为监控机器的node_exporter所在地址。
### node export
- job_name: 'Prometheus'
static_configs:
- targets: ['IP1:9100','IP2:9100']
重启Prometheus。
- 检测
登录http://IP:9090 可以看到刚刚增加的配置信息
配置Grafana
登录到http://IP:3000
- 选择模版
下载地址:https://grafana.com/grafana/dashboards
选择开源模版导入进去
把url填写进去即可
写好名称选择数据源,保存即可。
监控成功。