之前已使用相同的名称和标签值收集了nginx prometheus exporter收集的指标

时间:2019-09-11 13:06:40

标签: nginx prometheus

我通过ansible(https://github.com/prometheus/snmp_exporter)部署了Nginx Prometheus snmp导出器。它工作正常,但是几天前,出口商停止向Prometheus发送数据。 运行此命令后

  

curl localhost:9122 /指标

这是我的nginx-exporter-config-j2文件

{% for node in test-scratch-nodes %}
server {
    listen {{ node.exporter_port }};
    server_name _;
    location / {
        return 404;
}
        location /metrics {
        proxy_pass {{ test_scraper_url }}?target={{ node.host    }}&module={{ test_scraper_module }};
    }
}
{% endfor %}    

系统显示错误为

  

指标收集期间发生错误:

     

发生4个错误:

     
      
  • 收集的度量标准“ RouteRestricted” {标签:标尺:}之前已使用相同的名称和标签值收集

  •   
  • 收集的度量标准“ RouteCongestionLevel” {标签:标尺:}之前曾使用相同的名称和标签值

  •   
  • 收集的度量标准“ RoutePC” {标签:标尺:}是以前收集的,具有相同的名称和标签值
  •   
  • 收集的度量标准“ RouteState” {标签:标尺:}之前已使用相同的名称和标签值
  •   

0 个答案:

没有答案