From c25850f6b34a25b8944e2669e6531c502bd777ed Mon Sep 17 00:00:00 2001 From: Nicolas DUPEUX Date: Fri, 8 Dec 2023 07:44:31 +0100 Subject: [PATCH] [profilecli/canary-exporter] Fix probe_success metric description (#2810) --- cmd/profilecli/canary_exporter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/profilecli/canary_exporter.go b/cmd/profilecli/canary_exporter.go index a4e8ff0d3c..62b5ce6340 100644 --- a/cmd/profilecli/canary_exporter.go +++ b/cmd/profilecli/canary_exporter.go @@ -84,7 +84,7 @@ func newCanaryExporterMetrics(reg prometheus.Registerer) *canaryExporterMetrics return &canaryExporterMetrics{ success: promauto.With(reg).NewGaugeVec(prometheus.GaugeOpts{ Name: "probe_success", - Help: "Duration of http request by phase, summed over all redirects", + Help: "Displays whether or not the probe was a success", }, []string{"name"}), duration: promauto.With(reg).NewHistogramVec(prometheus.HistogramOpts{ Name: "probe_http_duration_seconds",