From 2c3397fcc850047e9184fdc5991f09a0b4a1e8f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Gruszczy=C5=84ski?= Date: Sat, 1 Nov 2025 20:23:11 +0100 Subject: [PATCH] supervisord --- supervisord.conf | 4 ++-- utils/stats_utils.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/supervisord.conf b/supervisord.conf index 571c8a9..163227b 100644 --- a/supervisord.conf +++ b/supervisord.conf @@ -9,8 +9,8 @@ pidfile=/var/run/supervisord.pid command=/usr/sbin/haproxy -f /etc/haproxy/haproxy.cfg autostart=true autorestart=true -stderr_logfile=/var/log/supervisor/haproxy.err.log -stdout_logfile=/var/log/supervisor/haproxy.out.log +stderr_logfile=/var/log/haproxy/haproxy.err.log +stdout_logfile=/var/log/haproxy/haproxy.log priority=100 stopasgroup=true killasgroup=true diff --git a/utils/stats_utils.py b/utils/stats_utils.py index ddbe392..cac9f88 100644 --- a/utils/stats_utils.py +++ b/utils/stats_utils.py @@ -1,7 +1,7 @@ import requests import csv -HAPROXY_STATS_URL = 'http://127.0.0.1:8080/;csv' +HAPROXY_STATS_URL = 'http://127.0.0.1:8484/;csv' def fetch_haproxy_stats(): try: