Amazon web services Prometehus目标URL语法无效

Amazon web services Prometehus目标URL语法无效,amazon-web-services,jenkins,amazon-ec2,prometheus,Amazon Web Services,Jenkins,Amazon Ec2,Prometheus,我正在尝试添加我在AWS EC2容器中配置的目标 GNU nano 2.5.3 File: prometheus.yml # my global config

我正在尝试添加我在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']

查看,似乎无法在其中使用前斜杠-尝试删除该斜杠。

查看,似乎无法在其中使用前斜杠-尝试删除该斜杠。

此处需要为该目标将度量路径设置为
/prometheus
,虽然如果它首先在标准
/metrics
上运行会更好


让我们回顾一下历史,过去的情况是所有地址都是完整的URL。大约两年前,这一点被改变了,所以地址只是主机:端口,以保持事物的整洁。此错误来自于帮助该转换。

此处您需要的是为该目标将metrics\u path设置为
/prometheus
,尽管如果首先在标准
/metrics
上使用它会更好

让我们回顾一下历史,过去的情况是所有地址都是完整的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