@@ -3,6 +3,7 @@ package metrics
3
3
import (
4
4
"strconv"
5
5
6
+ "github.com/TwiN/gatus/v5/config"
6
7
"github.com/TwiN/gatus/v5/config/endpoint"
7
8
"github.com/prometheus/client_golang/prometheus"
8
9
"github.com/prometheus/client_golang/prometheus/promauto"
@@ -11,8 +12,6 @@ import (
11
12
const namespace = "gatus" // The prefix of the metrics
12
13
13
14
var (
14
- initializedMetrics bool // Whether the metrics have been initialized
15
-
16
15
resultTotal * prometheus.CounterVec
17
16
resultDurationSeconds * prometheus.GaugeVec
18
17
resultConnectedTotal * prometheus.CounterVec
@@ -21,64 +20,69 @@ var (
21
20
resultEndpointSuccess * prometheus.GaugeVec
22
21
)
23
22
24
- func initializePrometheusMetrics ( ) {
23
+ func InitializePrometheusMetrics ( cfg * config. Config ) {
25
24
resultTotal = promauto .NewCounterVec (prometheus.CounterOpts {
26
25
Namespace : namespace ,
27
26
Name : "results_total" ,
28
27
Help : "Number of results per endpoint" ,
29
- }, []string {"key" , "group" , "name" , "type" , "success" })
28
+ }, append ( []string {"key" , "group" , "name" , "type" , "success" }, cfg . Labels ... ) )
30
29
resultDurationSeconds = promauto .NewGaugeVec (prometheus.GaugeOpts {
31
30
Namespace : namespace ,
32
31
Name : "results_duration_seconds" ,
33
32
Help : "Duration of the request in seconds" ,
34
- }, []string {"key" , "group" , "name" , "type" })
33
+ }, append ( []string {"key" , "group" , "name" , "type" }, cfg . Labels ... ) )
35
34
resultConnectedTotal = promauto .NewCounterVec (prometheus.CounterOpts {
36
35
Namespace : namespace ,
37
36
Name : "results_connected_total" ,
38
37
Help : "Total number of results in which a connection was successfully established" ,
39
- }, []string {"key" , "group" , "name" , "type" })
38
+ }, append ( []string {"key" , "group" , "name" , "type" }, cfg . Labels ... ) )
40
39
resultCodeTotal = promauto .NewCounterVec (prometheus.CounterOpts {
41
40
Namespace : namespace ,
42
41
Name : "results_code_total" ,
43
42
Help : "Total number of results by code" ,
44
- }, []string {"key" , "group" , "name" , "type" , "code" })
43
+ }, append ( []string {"key" , "group" , "name" , "type" , "code" }, cfg . Labels ... ) )
45
44
resultCertificateExpirationSeconds = promauto .NewGaugeVec (prometheus.GaugeOpts {
46
45
Namespace : namespace ,
47
46
Name : "results_certificate_expiration_seconds" ,
48
47
Help : "Number of seconds until the certificate expires" ,
49
- }, []string {"key" , "group" , "name" , "type" })
48
+ }, append ( []string {"key" , "group" , "name" , "type" }, cfg . Labels ... ) )
50
49
resultEndpointSuccess = promauto .NewGaugeVec (prometheus.GaugeOpts {
51
50
Namespace : namespace ,
52
51
Name : "results_endpoint_success" ,
53
52
Help : "Displays whether or not the endpoint was a success" ,
54
- }, []string {"key" , "group" , "name" , "type" })
53
+ }, append ( []string {"key" , "group" , "name" , "type" }, cfg . Labels ... ) )
55
54
}
56
55
57
56
// PublishMetricsForEndpoint publishes metrics for the given endpoint and its result.
58
57
// These metrics will be exposed at /metrics if the metrics are enabled
59
- func PublishMetricsForEndpoint (ep * endpoint.Endpoint , result * endpoint.Result ) {
60
- if ! initializedMetrics {
61
- initializePrometheusMetrics ()
62
- initializedMetrics = true
58
+ func PublishMetricsForEndpoint (labels []string , ep * endpoint.Endpoint , result * endpoint.Result ) {
59
+ labelValues := []string {}
60
+ for _ , label := range labels {
61
+ if value , ok := ep .Labels [label ]; ok {
62
+ labelValues = append (labelValues , value )
63
+ } else {
64
+ labelValues = append (labelValues , "" )
65
+ }
63
66
}
67
+
64
68
endpointType := ep .Type ()
65
- resultTotal .WithLabelValues (ep .Key (), ep .Group , ep .Name , string (endpointType ), strconv .FormatBool (result .Success )).Inc ()
66
- resultDurationSeconds .WithLabelValues (ep .Key (), ep .Group , ep .Name , string (endpointType )).Set (result .Duration .Seconds ())
69
+ resultTotal .WithLabelValues (append ([] string { ep .Key (), ep .Group , ep .Name , string (endpointType ), strconv .FormatBool (result .Success )}, labelValues ... ) ... ).Inc ()
70
+ resultDurationSeconds .WithLabelValues (append ([] string { ep .Key (), ep .Group , ep .Name , string (endpointType )}, labelValues ... ) ... ).Set (result .Duration .Seconds ())
67
71
if result .Connected {
68
- resultConnectedTotal .WithLabelValues (ep .Key (), ep .Group , ep .Name , string (endpointType )).Inc ()
72
+ resultConnectedTotal .WithLabelValues (append ([] string { ep .Key (), ep .Group , ep .Name , string (endpointType )}, labelValues ... ) ... ).Inc ()
69
73
}
70
74
if result .DNSRCode != "" {
71
- resultCodeTotal .WithLabelValues (ep .Key (), ep .Group , ep .Name , string (endpointType ), result .DNSRCode ).Inc ()
75
+ resultCodeTotal .WithLabelValues (append ([] string { ep .Key (), ep .Group , ep .Name , string (endpointType ), result .DNSRCode }, labelValues ... ) ... ).Inc ()
72
76
}
73
77
if result .HTTPStatus != 0 {
74
- resultCodeTotal .WithLabelValues (ep .Key (), ep .Group , ep .Name , string (endpointType ), strconv .Itoa (result .HTTPStatus )).Inc ()
78
+ resultCodeTotal .WithLabelValues (append ([] string { ep .Key (), ep .Group , ep .Name , string (endpointType ), strconv .Itoa (result .HTTPStatus )}, labelValues ... ) ... ).Inc ()
75
79
}
76
80
if result .CertificateExpiration != 0 {
77
- resultCertificateExpirationSeconds .WithLabelValues (ep .Key (), ep .Group , ep .Name , string (endpointType )).Set (result .CertificateExpiration .Seconds ())
81
+ resultCertificateExpirationSeconds .WithLabelValues (append ([] string { ep .Key (), ep .Group , ep .Name , string (endpointType )}, labelValues ... ) ... ).Set (result .CertificateExpiration .Seconds ())
78
82
}
79
83
if result .Success {
80
- resultEndpointSuccess .WithLabelValues (ep .Key (), ep .Group , ep .Name , string (endpointType )).Set (1 )
84
+ resultEndpointSuccess .WithLabelValues (append ([] string { ep .Key (), ep .Group , ep .Name , string (endpointType )}, labelValues ... ) ... ).Set (1 )
81
85
} else {
82
- resultEndpointSuccess .WithLabelValues (ep .Key (), ep .Group , ep .Name , string (endpointType )).Set (0 )
86
+ resultEndpointSuccess .WithLabelValues (append ([] string { ep .Key (), ep .Group , ep .Name , string (endpointType )}, labelValues ... ) ... ).Set (0 )
83
87
}
84
88
}
0 commit comments