Невозможно подключить базу данных к прометею - PullRequest
0 голосов
/ 24 января 2020

У меня есть ASP. NET приложение API, и я хочу использовать эти данные для Прометея.
Моя ссылка API, которая возвращает Json данные https://localhost:44361/api/Authors
В данный момент я застрял при настройке prometheus.yml Я добавил scheme, metrics_path, изменил targets, но результат, который я получаю после того, как я нажмите http://localhost:9090/targets конечная точка https://localhost:44361/api/authors, равная
https://desktop-5lf9021:44361/api/authors, и сообщение об ошибке будет

Bad Request - Invalid Hostname
HTTP Error 400. The request hostname is invalid.
# my global config
global:
  scrape_interval:     15s # Set the scrape interval to every 15 seconds. Default is every 1 minute.
  evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute.
  # scrape_timeout is set to the global default (10s).

# Alertmanager configuration
alerting:
  alertmanagers:
  - static_configs:
    - targets:
      # - alertmanager:9093

# Load rules once and periodically evaluate them according to the global 'evaluation_interval'.
rule_files:
  # - "first_rules.yml"
  # - "second_rules.yml"

# 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: 'prometheus'

    # metrics_path defaults to '/metrics'
    # scheme defaults to 'http'.

    scheme: https
    metrics_path: '/api/authors'

    static_configs:
    - targets: ['localhost:44361']


Как я могу получить правильные данные?

1 Ответ

0 голосов
/ 25 января 2020

Неверный запрос - Неверное имя хоста Ошибка HTTP 400. Неверное имя хоста запроса.

Это проблема с вашим приложением, вероятно, вам нужно исправить ее, чтобы игнорировать Host заголовок для этих запросов.

...