Экспорт метрик prometheus

Добрый день!
Пытаюсь настроить экспорт метрик Модуль http_prometheus — документация Angie 1.4.0

Добавил в секцию http в /etc/angie/angie.conf

include prometheus_all.conf;

Добавил
location =/p8s {
prometheus all;
}
в свой server в файле настроек расположенном в /etc/angie/http.d

server {
  listen       80;

  root   /usr/share/nginx/html;

  location / {
  try_files $uri /index.html;
    index  index.html index.htm;
  }

  error_page   500 502 503 504  /50x.html;
  location = /50x.html {
    root   /usr/share/nginx/html;
  }

  location =/p8s {
    prometheus all;
  }
}

При запросе к этому location вижу только 4 метрики

 curl localhost:80/p8s
# Angie Prometheus template "all"
# HELP angie_connections_accepted The total number of accepted client connections.
# TYPE angie_connections_accepted counter
angie_connections_accepted 25
# HELP angie_connections_dropped The total number of dropped client connections.
# TYPE angie_connections_dropped counter
angie_connections_dropped 0
# HELP angie_connections_active The current number of active client connections.
# TYPE angie_connections_active gauge
angie_connections_active 1
# HELP angie_connections_idle The current number of idle client connections.
# TYPE angie_connections_idle gauge
angie_connections_idle 0

Почему нет остального, что сделано не так?

Добрый вечер. Метрики появляются если у вас определены зоны в конфигурации. Например, попробуйте определить “status_zone” в блоках server и location (Модуль http_core — документация Angie 1.3.1), а так же “zone” в любом блоке upstream (Модуль stream_upstream — документация Angie 1.3.1), примерно, как показано ниже:

upstream backend {
 zone backend 256k; ### <---ВОТ ТУТ
  server 127.0.0.1;
}

server {
  listen       80;

  status_zone server; ### <---ВОТ ТУТ
  root   /usr/share/nginx/html;

  location / {
   status_zone location; ### <---ВОТ ТУТ
   try_files $uri /index.html;
    index  index.html index.htm;
  }

  error_page   500 502 503 504  /50x.html;
  location = /50x.html {
    root   /usr/share/nginx/html;
  }

  location =/p8s {
    prometheus all;
  }
}

У Вас должны будут отобразиться новые метрики, такие как “angie_http_server_zones_”, “angie_http_location_zones_” или “angie_http_upstreams_”.

Надеюсь это поможет.

Cпасибо большое!

Возможно стоит упомянуть об этом на странице Модуль http_prometheus — документация Angie 1.3.1

Наша документация постоянно модернизируется. Мы учитываем пожелания пользователей и постараемся улучшить описание процесса настройки в дальнейшем.

Готово. Теперь такое упоминание есть на странице: Модуль http_prometheus — документация Angie 1.3.2