2016-11-06 2 views
0

임 내가 그러나 임 내 URL이 유효하지 않음을 주장하는 오류 메시지를 가져 오는 AWS EC2 컨테이너Prometehus 목표 잘못된 URL을 구문

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에 올바른 구문을 적용하려면 어떻게해야합니까? 그것을 제거하려고 - code보고

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

, 당신이 앞으로이 슬래시 수 없습니다 나타납니다.

1

여기서 원하는 것은 metrics_path를 /prometheus으로 설정하는 것입니다. 처음에는 표준 /metrics에 게재하는 것이 좋습니다.

약간의 기록을 제공하기 위해 모든 주소가 전체 URL 인 경우가있었습니다. 약 2 년 전 주소가 단지 호스트 : 포트 일 뿐이므로 사물을보다 깨끗하게 유지하도록 변경되었습니다. 이 오류는 전환을 돕는 데서 오는 것입니다.