Prometheus 目标无效的 Urls 语法
Prometehus target Invalid Urls syntax
我正在尝试添加我在 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 无效。如何获得 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
查看 code,您似乎不能在其中使用正斜杠 - 尝试将其删除。
您在这里想要的是将此目标的 metrics_path 设置为 /prometheus
,但如果它首先在标准 /metrics
上投放会更好。
回顾一下历史,过去所有地址都是完整的 URL。大约两年前,这被改变了,地址只是 host:port 以保持更清晰。此错误来自于帮助转换。
我正在尝试添加我在 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 无效。如何获得 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
查看 code,您似乎不能在其中使用正斜杠 - 尝试将其删除。
您在这里想要的是将此目标的 metrics_path 设置为 /prometheus
,但如果它首先在标准 /metrics
上投放会更好。
回顾一下历史,过去所有地址都是完整的 URL。大约两年前,这被改变了,地址只是 host:port 以保持更清晰。此错误来自于帮助转换。