2016-11-06 4 views
0

Im пытается добавить цель я сконфигурированный в AWS EC2 контейнерPrometehus целевой Invalid Urls синтаксис

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'] 

Однако Im получаю сообщение об ошибке, утверждая, что мой 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 

ответ

1

глядя на code, по-видимому, вы не можете иметь косую черту там - попробуйте удалить это.

1

Здесь вы должны установить путь metrics_path к /prometheus для этой цели, хотя было бы лучше, если бы оно служило на стандарте /metrics в первую очередь.

Чтобы дать немного истории, это было так, что все адреса были полными URL-адресами. Примерно два года назад это было изменено, так что адреса - это только хост: порт, чтобы держать вещи чище. Эта ошибка возникает из-за помощи в этом переходе.

 Смежные вопросы

  • Нет связанных вопросов^_^