Prometheus配置文件主机未在grafana

时间:2018-03-05 15:34:43

标签: grafana prometheus

我在/etc/prometheus/prometheus.yml

中有以下配置
global:
    scrape_interval: 5s
    evaluation_interval: 5s
scrape_configs:
    - job_name: prometheus
      static_configs:
          - targets: ['localhost:9090']
    - job_name: kktix-redis-1
      static_configs:
          - targets: ['localhost:9121']
    - job_name: kktix-redis-2
      static_configs:
          - targets: ['localhost:9122']
    - job_name: captcha-001
      static_configs:
          - targets: ['localhost:9123']
    - job_name: captcha-002
      static_configs:
          - targets: ['localhost:9124']
    - job_name: kktix-cache-001
      static_configs:
            - targets: ['localhost:9125']
    - job_name: kktix-cache-002
      static_configs:
          - targets: ['localhost:9126']
    - job_name: kktix-data-001
      static_configs:
          - targets: ['localhost:9127']
    - job_name: kktix-data-002
      static_configs:
          - targets: ['localhost:9128']
    - job_name: register-queue-001
      static_configs:
          - targets: ['localhost:9129']
    - job_name: register-queue-002
      static_configs:
          - targets: ['localhost:9130']
    - job_name: receipt-001
      static_configs:
          - targets: ['localhost:9131']

在这个prometheus服务器上,我正在运行几个具有不同端口(9121,9122,... 9131)的redis_exporter进程,以访问和收集位于AWS elasticache上的远程redis实例上的统计信息。我使用Grafana作为UI仪表板来查看图形。但是,基于上面的配置,格里芬只有4个节点,它们是具有端口1921,1922,1928和1929的节点。上面的其他配置节点由于某种原因不会在格里芬中显示。

所有端口和相应的弹性端点端点都已正确执行和测试。所以不确定为什么格里芬只显示4个节点。我已经尝试在Web浏览器中清除缓存,重新启动griffin,重新启动prometheus,重新安装prometheus和grafana,这些事情似乎都没有帮助。

有关此问题的任何建议吗?

0 个答案:

没有答案