Добрый день!
Пытаюсь настроить экспорт метрик Модуль 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
Почему нет остального, что сделано не так?