From 1db40a85cf3d95d790e8585e739709c2ef770e0c Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Sun, 22 Jun 2025 15:09:36 +0300 Subject: [PATCH] Fixes: 1) Correct metrics path in Prometheus configuration. Extra: None. --- monitoring/prometheus.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitoring/prometheus.yml b/monitoring/prometheus.yml index e3414cfe..d584994e 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' ]