使用Prometheus监控其他node

2021-07-28  本文已影响0人  Anson_1f2a

使用Prometheus node_exporter

  1. 根据相应的系统下载相应压缩包
    下载地址:https://prometheus.io/download/

    image.png
  2. 解压并启动

[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 &
  1. 检查是否启动成功
    Node exporter默认的端口是9100
netstat -tnlp | grep 9100
  1. 修改prometheus.yml配置文件
    加入一下配置
  - job_name: 'prod-services'
    static_configs:
    - targets: ['192.168.0.129:9100']
  1. 启动Prometheus
./prometheus --config.file="prometheus.yml"
上一篇下一篇

猜你喜欢

热点阅读