ubuntu 获取度量路径引发连接被拒绝

wi3ka0sx  于 2023-01-01  发布在  其他
关注(0)|答案(1)|浏览(131)

我使用Grafana和Prometheus。两者都安装在同一台服务器上,我不使用Docker。
最近我导入了Node-Exporter控制板,并将prometheus.yml文件修改为:

global:
  scrape_interval: 15s
  evaluation_interval: 15s

# Alertmanager configuration
alerting:
  alertmanagers:
    - static_configs:
        - targets:
          # - alertmanager:9093

rule_files:
  # - "first_rules.yml"
  # - "second_rules.yml"

scrape_configs:
  - job_name: "prometheus"
    static_configs:
      - targets: ["localhost:9090"]

  - job_name: "node"
    static_configs:
      - targets: ['localhost:9100']

但节点作业无法启动。它已关闭:

你知道我该怎么做吗?

j8ag8udp

j8ag8udp1#

是否可以使用cmdsudo systemctl status node_exporter检查节点导出器状态并提交输出。

相关问题