@@ -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,70 @@ var (
21
20
resultEndpointSuccess * prometheus.GaugeVec
22
21
)
23
22
24
- func initializePrometheusMetrics () {
23
+ func InitializePrometheusMetrics (cfg * config.Config ) {
24
+ labels := cfg .GetMetricLabels ()
25
25
resultTotal = promauto .NewCounterVec (prometheus.CounterOpts {
26
26
Namespace : namespace ,
27
27
Name : "results_total" ,
28
28
Help : "Number of results per endpoint" ,
29
- }, []string {"key" , "group" , "name" , "type" , "success" })
29
+ }, append ( []string {"key" , "group" , "name" , "type" , "success" }, labels ... ) )
30
30
resultDurationSeconds = promauto .NewGaugeVec (prometheus.GaugeOpts {
31
31
Namespace : namespace ,
32
32
Name : "results_duration_seconds" ,
33
33
Help : "Duration of the request in seconds" ,
34
- }, []string {"key" , "group" , "name" , "type" })
34
+ }, append ( []string {"key" , "group" , "name" , "type" }, labels ... ) )
35
35
resultConnectedTotal = promauto .NewCounterVec (prometheus.CounterOpts {
36
36
Namespace : namespace ,
37
37
Name : "results_connected_total" ,
38
38
Help : "Total number of results in which a connection was successfully established" ,
39
- }, []string {"key" , "group" , "name" , "type" })
39
+ }, append ( []string {"key" , "group" , "name" , "type" }, labels ... ) )
40
40
resultCodeTotal = promauto .NewCounterVec (prometheus.CounterOpts {
41
41
Namespace : namespace ,
42
42
Name : "results_code_total" ,
43
43
Help : "Total number of results by code" ,
44
- }, []string {"key" , "group" , "name" , "type" , "code" })
44
+ }, append ( []string {"key" , "group" , "name" , "type" , "code" }, labels ... ) )
45
45
resultCertificateExpirationSeconds = promauto .NewGaugeVec (prometheus.GaugeOpts {
46
46
Namespace : namespace ,
47
47
Name : "results_certificate_expiration_seconds" ,
48
48
Help : "Number of seconds until the certificate expires" ,
49
- }, []string {"key" , "group" , "name" , "type" })
49
+ }, append ( []string {"key" , "group" , "name" , "type" }, labels ... ) )
50
50
resultEndpointSuccess = promauto .NewGaugeVec (prometheus.GaugeOpts {
51
51
Namespace : namespace ,
52
52
Name : "results_endpoint_success" ,
53
53
Help : "Displays whether or not the endpoint was a success" ,
54
- }, []string {"key" , "group" , "name" , "type" })
54
+ }, append ( []string {"key" , "group" , "name" , "type" }, labels ... ) )
55
55
}
56
56
57
57
// PublishMetricsForEndpoint publishes metrics for the given endpoint and its result.
58
58
// 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
59
+ func PublishMetricsForEndpoint (labels []string , ep * endpoint.Endpoint , result * endpoint.Result ) {
60
+ labelValues := []string {}
61
+ for _ , label := range labels {
62
+ if value , ok := ep .Labels [label ]; ok {
63
+ labelValues = append (labelValues , value )
64
+ } else {
65
+ labelValues = append (labelValues , "" )
66
+ }
63
67
}
68
+
64
69
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 ())
70
+ resultTotal .WithLabelValues (append ([] string { ep .Key (), ep .Group , ep .Name , string (endpointType ), strconv .FormatBool (result .Success )}, labelValues ... ) ... ).Inc ()
71
+ resultDurationSeconds .WithLabelValues (append ([] string { ep .Key (), ep .Group , ep .Name , string (endpointType )}, labelValues ... ) ... ).Set (result .Duration .Seconds ())
67
72
if result .Connected {
68
- resultConnectedTotal .WithLabelValues (ep .Key (), ep .Group , ep .Name , string (endpointType )).Inc ()
73
+ resultConnectedTotal .WithLabelValues (append ([] string { ep .Key (), ep .Group , ep .Name , string (endpointType )}, labelValues ... ) ... ).Inc ()
69
74
}
70
75
if result .DNSRCode != "" {
71
- resultCodeTotal .WithLabelValues (ep .Key (), ep .Group , ep .Name , string (endpointType ), result .DNSRCode ).Inc ()
76
+ resultCodeTotal .WithLabelValues (append ([] string { ep .Key (), ep .Group , ep .Name , string (endpointType ), result .DNSRCode }, labelValues ... ) ... ).Inc ()
72
77
}
73
78
if result .HTTPStatus != 0 {
74
- resultCodeTotal .WithLabelValues (ep .Key (), ep .Group , ep .Name , string (endpointType ), strconv .Itoa (result .HTTPStatus )).Inc ()
79
+ resultCodeTotal .WithLabelValues (append ([] string { ep .Key (), ep .Group , ep .Name , string (endpointType ), strconv .Itoa (result .HTTPStatus )}, labelValues ... ) ... ).Inc ()
75
80
}
76
81
if result .CertificateExpiration != 0 {
77
- resultCertificateExpirationSeconds .WithLabelValues (ep .Key (), ep .Group , ep .Name , string (endpointType )).Set (result .CertificateExpiration .Seconds ())
82
+ resultCertificateExpirationSeconds .WithLabelValues (append ([] string { ep .Key (), ep .Group , ep .Name , string (endpointType )}, labelValues ... ) ... ).Set (result .CertificateExpiration .Seconds ())
78
83
}
79
84
if result .Success {
80
- resultEndpointSuccess .WithLabelValues (ep .Key (), ep .Group , ep .Name , string (endpointType )).Set (1 )
85
+ resultEndpointSuccess .WithLabelValues (append ([] string { ep .Key (), ep .Group , ep .Name , string (endpointType )}, labelValues ... ) ... ).Set (1 )
81
86
} else {
82
- resultEndpointSuccess .WithLabelValues (ep .Key (), ep .Group , ep .Name , string (endpointType )).Set (0 )
87
+ resultEndpointSuccess .WithLabelValues (append ([] string { ep .Key (), ep .Group , ep .Name , string (endpointType )}, labelValues ... ) ... ).Set (0 )
83
88
}
84
89
}
0 commit comments