Prometehus目标无效的Urls语法

时间:2016-11-06 01:10:33

标签: amazon-web-services jenkins amazon-ec2 prometheus

我正在尝试添加我在AWS EC2容器中配置的目标

  GNU nano 2.5.3                                                      File: prometheus.yml                                                                                                                  

# my global config
global:
  scrape_interval:     15s # By default, scrape targets every 15 seconds.
  evaluation_interval: 15s # By default, scrape targets every 15 seconds.
  # scrape_timeout is set to the global default (10s).

  # Attach these labels to any time series or alerts when communicating with
  # external systems (federation, remote storage, Alertmanager).
  external_labels:
      monitor: 'codelab-monitor'

# Load rules once and periodically evaluate them according to the global 'evaluation_interval'.
rule_files:
  # - "first.rules"
  # - "second.rules"

# A scrape configuration containing exactly one endpoint to scrape:
# Here it's Prometheus itself.
scrape_configs:
  # The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
  - job_name: 'sit'

    # Override the global default and scrape targets from this job every 5 seconds.
    scrape_interval: 5s

    # metrics_path defaults to '/metrics'
    # scheme defaults to 'http'.

    static_configs:
      - targets: ['localhost:8000','localhost:9100','localhost:9125', 'localhost:9102', 'localhost:8125', 'http://test-elasticloa-y0avx674hv7dr7x-1495584279.us-west-2.elb.amazonaws.com/prometheus']

但是我收到一条错误消息,声称我的网址无效。如何获取URL的正确语法?

ERRO[0000] Error loading config: couldn't load configuration (-config.file=prometheus.yml): "http://test-elasticloa-y0avx674hv7dr7x-1495584279.us-west-2.elb.amazonaws.com/prometheus" is not a valid hostname  source=main.go:149

2 个答案:

答案 0 :(得分:1)

查看code,看来你不能在那里插入正斜杠 - 尝试删除它。

答案 1 :(得分:1)

您希望在此处将metrics_path设置为此目标的/prometheus,但如果它首先在标准/metrics上提供,则会更好。

为了给出一些历史记录,过去所有地址都是完整的URL。大约两年前,这已被改变,因此地址只是主机:端口以保持清洁。此错误来自帮助转换。