From 38a2439b982fc03df4501b4d69622a95886a1610 Mon Sep 17 00:00:00 2001 From: Yuri Lima Date: Mon, 19 May 2025 10:18:03 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=8C=20IMPROVE:=20Fix=20Prometheus=20re?= =?UTF-8?q?load=20URL=20to=20use=20the=20correct=20port?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hetzner_discovery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hetzner_discovery.py b/hetzner_discovery.py index 3f79502..434c56f 100644 --- a/hetzner_discovery.py +++ b/hetzner_discovery.py @@ -10,7 +10,7 @@ load_dotenv() # 🔑 Load Hetzner API Token & Prometheus URL HETZNER_API_TOKEN = os.getenv("HETZNER_API_TOKEN") # https://prometheus.io/docs/prometheus/latest/configuration/configuration/ -PROMETHEUS_RELOAD_URL = os.getenv("PROMETHEUS_RELOAD_URL", "https://prometheus.phx-erp.de:9090/-/reload") +PROMETHEUS_RELOAD_URL = os.getenv("PROMETHEUS_RELOAD_URL", "https://prometheus.phx-erp.de/-/reload") # Check if token is loaded if not HETZNER_API_TOKEN: