Prometheus + Node Exporter + Grafana 监控主机运行信息
上一篇文章中讲了如何利用Prometheus和Grafana监控SpringBoot应用的JVM信息,这次就来看看如何监控
服务器运行状态,先列出用到的工具:
- Prometheus
- node_exporter 0.17
- Grafana
- Grafana Dashboard(8919)
Prometheus和Grafana的安装和配置上一篇文章已经讲过,这里主要看下剩下的步骤
一、目标服务器上安装并运行Node Exporter
- 下载并解压
2. 运行(Node Exporter运行在9100端口,记得打开阿里云相应端口的防火墙)
nohup ./node_exporter &
3. 测试访问
curl http://localhost:9100/metrics
二、配置Prometheus抓取Node Exporter数据
scrape_configs: - job_name: 'node' static_configs: - targets: ['localhost:9100']
修改完记得重启prometheus
三、在Grafana 控制台中import Dashboard 8919,数据源选择Prometheus
经过这三步简单的操作之后,你就可以在Grafana界面看到如下信息了:
是不是觉得挺简单哉!那就赶快自己动手试一试吧!