关于prometheus:使用Node-Exporter采集主机数据

43次阅读

共计 425 个字符,预计需要花费 2 分钟才能阅读完成。

想要让 Prometheus server 从 node exporter 获取监控数据须要:

  • 编辑 prometheus.yml 在 scrape_configs 节点上面增加:

    scrape_configs:
    - job_name: 'prometheus'
      static_configs:
        - targets: ['localhost:9090']
    # 采集 node exporter 监控数据
    - job_name: 'node'
      static_configs:
        - targets: ['localhost:9100']

    重启 Prometheus Server 拜访 http://localhost:9090/ 在

  • 奇怪这里阻塞了一下,为什么
up{instance="localhost:9090",job="prometheus"}    1
up{instance="localhost:9100",job="node"}    1

这只有 1 个 

未完待续。。

参考:https://yunlzheng.gitbook.io/…

正文完
 0