2016-11-06 107 views
0

我試着添加一個目標我在AWS EC2容器Prometehus目標網址無效語法

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 

回答

1

code,看來你不能有向前斜槓存在 - 請嘗試刪除。

1

這裏你想要的是爲這個目標設置metrics_path爲/prometheus,不過如果它首先服務於標準/metrics會更好。

爲了給出一點歷史,過去的情況是所有地址都是完整的URL。大約兩年前,這已經改變,所以地址只是主機:端口,以保持清潔。這個錯誤來自於幫助轉換。