使用Prometheus node_exporter
-
根据相应的系统下载相应压缩包
image.png
下载地址:https://prometheus.io/download/
-
解压并启动
[root]# tar xvfz node_exporter-1.2.0.linux-amd64.tar.gz
[root]# cd node_exporter-1.2.0.linux-amd64
[root]# nohup ./node_exporter &
- 检查是否启动成功
Node exporter默认的端口是9100
netstat -tnlp | grep 9100
- 修改prometheus.yml配置文件
加入一下配置
- job_name: 'prod-services'
static_configs:
- targets: ['192.168.0.129:9100']
- 启动Prometheus
./prometheus --config.file="prometheus.yml"
网友评论