From a53a3dc788d84ea08a1f985101d2fc36a7b0a011 Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Sun, 22 Jun 2025 14:55:55 +0300 Subject: [PATCH] Fixes: 1) Correct trailing slash in Prometheus metrics_path for 'app' job. --- monitoring/prometheus.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitoring/prometheus.yml b/monitoring/prometheus.yml index d584994e..e3414cfe 100644 --- a/monitoring/prometheus.yml +++ b/monitoring/prometheus.yml @@ -4,7 +4,7 @@ global: scrape_configs: - job_name: 'app' - metrics_path: /prometheus/metrics + metrics_path: /prometheus/metrics/ scheme: http static_configs: - targets: [ 'app:8000' ]