使用Node Exporter采集主机数据

想要让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/...

你可能感兴趣的:(prometheus)