6
6
from time import perf_counter
7
7
from typing import Any
8
8
9
+ import requests
9
10
from prometheus_client import CollectorRegistry , Counter , Gauge , push_to_gateway
10
11
11
12
# MARKER: pylint-bug
15
16
from src .interfaces import Named
16
17
from src .logger import log
17
18
19
+ SUCCESS_STATUS = 200
20
+
18
21
19
22
def log_job_metrics (prometheus_url : str , job_metrics : dict [str , Any ]) -> None :
20
23
"""Log metrics about a job to a prometheus pushgateway."""
@@ -60,6 +63,7 @@ async def wrapper(
60
63
if not (prometheus_url := env ("PROMETHEUS_PUSHGATEWAY_URL" )):
61
64
return await func (self , * args , ** kwargs )
62
65
66
+ validate_prometheus_url (prometheus_url )
63
67
run_id = uuid .uuid4 ().hex
64
68
start = perf_counter ()
65
69
success = False
@@ -82,3 +86,21 @@ async def wrapper(
82
86
log_job_metrics (prometheus_url , metrics )
83
87
84
88
return wrapper
89
+
90
+
91
+ def validate_prometheus_url (prometheus_url : str ) -> None :
92
+ """Ensure Valid Connection to Prometheus."""
93
+ try :
94
+ response = requests .get (prometheus_url , timeout = 5 )
95
+ if response .status_code == SUCCESS_STATUS :
96
+ return
97
+ log .error (
98
+ "Failed to connect to Prometheus Pushgateway: %s %s" ,
99
+ response .status_code ,
100
+ response .reason ,
101
+ )
102
+ except requests .exceptions .RequestException as e :
103
+ log .error ("Error connecting to Prometheus Pushgateway: %s" , str (e ))
104
+ raise ConnectionError (
105
+ f"Failed to connect to Prometheus Pushgateway at { prometheus_url } " ,
106
+ )
0 commit comments