2022-06-17 00:55:51 +02:00
|
|
|
package metrics
|
2019-11-16 21:46:52 +01:00
|
|
|
|
|
|
|
import (
|
2020-11-12 00:05:18 +01:00
|
|
|
"strconv"
|
|
|
|
|
2024-05-10 04:56:16 +02:00
|
|
|
"github.com/TwiN/gatus/v5/config/endpoint"
|
2019-11-16 21:46:52 +01:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
"github.com/prometheus/client_golang/prometheus/promauto"
|
|
|
|
)
|
|
|
|
|
2022-05-17 03:10:45 +02:00
|
|
|
const namespace = "gatus" // The prefix of the metrics
|
|
|
|
|
2019-11-16 21:46:52 +01:00
|
|
|
var (
|
2022-05-17 03:10:45 +02:00
|
|
|
initializedMetrics bool // Whether the metrics have been initialized
|
|
|
|
|
|
|
|
resultTotal *prometheus.CounterVec
|
|
|
|
resultDurationSeconds *prometheus.GaugeVec
|
|
|
|
resultConnectedTotal *prometheus.CounterVec
|
|
|
|
resultCodeTotal *prometheus.CounterVec
|
|
|
|
resultCertificateExpirationSeconds *prometheus.GaugeVec
|
2019-11-16 21:46:52 +01:00
|
|
|
)
|
|
|
|
|
2022-05-17 03:10:45 +02:00
|
|
|
func initializePrometheusMetrics() {
|
|
|
|
resultTotal = promauto.NewCounterVec(prometheus.CounterOpts{
|
|
|
|
Namespace: namespace,
|
|
|
|
Name: "results_total",
|
|
|
|
Help: "Number of results per endpoint",
|
|
|
|
}, []string{"key", "group", "name", "type", "success"})
|
|
|
|
resultDurationSeconds = promauto.NewGaugeVec(prometheus.GaugeOpts{
|
|
|
|
Namespace: namespace,
|
|
|
|
Name: "results_duration_seconds",
|
|
|
|
Help: "Duration of the request in seconds",
|
|
|
|
}, []string{"key", "group", "name", "type"})
|
|
|
|
resultConnectedTotal = promauto.NewCounterVec(prometheus.CounterOpts{
|
|
|
|
Namespace: namespace,
|
|
|
|
Name: "results_connected_total",
|
|
|
|
Help: "Total number of results in which a connection was successfully established",
|
|
|
|
}, []string{"key", "group", "name", "type"})
|
|
|
|
resultCodeTotal = promauto.NewCounterVec(prometheus.CounterOpts{
|
|
|
|
Namespace: namespace,
|
|
|
|
Name: "results_code_total",
|
|
|
|
Help: "Total number of results by code",
|
|
|
|
}, []string{"key", "group", "name", "type", "code"})
|
|
|
|
resultCertificateExpirationSeconds = promauto.NewGaugeVec(prometheus.GaugeOpts{
|
|
|
|
Namespace: namespace,
|
|
|
|
Name: "results_certificate_expiration_seconds",
|
|
|
|
Help: "Number of seconds until the certificate expires",
|
|
|
|
}, []string{"key", "group", "name", "type"})
|
|
|
|
}
|
|
|
|
|
2021-10-23 22:47:12 +02:00
|
|
|
// PublishMetricsForEndpoint publishes metrics for the given endpoint and its result.
|
2020-10-23 22:12:53 +02:00
|
|
|
// These metrics will be exposed at /metrics if the metrics are enabled
|
2024-05-10 04:56:16 +02:00
|
|
|
func PublishMetricsForEndpoint(ep *endpoint.Endpoint, result *endpoint.Result) {
|
2022-05-17 03:10:45 +02:00
|
|
|
if !initializedMetrics {
|
|
|
|
initializePrometheusMetrics()
|
|
|
|
initializedMetrics = true
|
|
|
|
}
|
2024-05-10 04:56:16 +02:00
|
|
|
endpointType := ep.Type()
|
|
|
|
resultTotal.WithLabelValues(ep.Key(), ep.Group, ep.Name, string(endpointType), strconv.FormatBool(result.Success)).Inc()
|
|
|
|
resultDurationSeconds.WithLabelValues(ep.Key(), ep.Group, ep.Name, string(endpointType)).Set(result.Duration.Seconds())
|
2022-05-17 03:10:45 +02:00
|
|
|
if result.Connected {
|
2024-05-10 04:56:16 +02:00
|
|
|
resultConnectedTotal.WithLabelValues(ep.Key(), ep.Group, ep.Name, string(endpointType)).Inc()
|
2022-05-17 03:10:45 +02:00
|
|
|
}
|
|
|
|
if result.DNSRCode != "" {
|
2024-05-10 04:56:16 +02:00
|
|
|
resultCodeTotal.WithLabelValues(ep.Key(), ep.Group, ep.Name, string(endpointType), result.DNSRCode).Inc()
|
2022-05-17 03:10:45 +02:00
|
|
|
}
|
|
|
|
if result.HTTPStatus != 0 {
|
2024-05-10 04:56:16 +02:00
|
|
|
resultCodeTotal.WithLabelValues(ep.Key(), ep.Group, ep.Name, string(endpointType), strconv.Itoa(result.HTTPStatus)).Inc()
|
2022-05-17 03:10:45 +02:00
|
|
|
}
|
|
|
|
if result.CertificateExpiration != 0 {
|
2024-05-10 04:56:16 +02:00
|
|
|
resultCertificateExpirationSeconds.WithLabelValues(ep.Key(), ep.Group, ep.Name, string(endpointType)).Set(result.CertificateExpiration.Seconds())
|
2019-11-16 21:46:52 +01:00
|
|
|
}
|
|
|
|
}
|