From 37099374db0aa6f082cf74e367d0b33e4cd3128c Mon Sep 17 00:00:00 2001 From: Tim Buchwaldt Date: Thu, 18 Dec 2025 14:41:26 +0100 Subject: [PATCH] Fix typo in metric label from 'bootstraped' to 'bootstrapped' Signed-off-by: Tim Buchwaldt --- pkg/agent/trustbundlesources/bundle.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/agent/trustbundlesources/bundle.go b/pkg/agent/trustbundlesources/bundle.go index 8f073d6172..a44bae1ab2 100644 --- a/pkg/agent/trustbundlesources/bundle.go +++ b/pkg/agent/trustbundlesources/bundle.go @@ -223,7 +223,7 @@ func (b *Bundle) updateMetrics() { if b.startTime.IsZero() { bootstrapped = 1 } - b.metrics.SetGaugeWithLabels([]string{"bootstraped"}, float32(bootstrapped), []telemetry.Label{}) + b.metrics.SetGaugeWithLabels([]string{"bootstrapped"}, float32(bootstrapped), []telemetry.Label{}) b.metrics.SetGaugeWithLabels([]string{"bootstrap_seconds"}, float32(seconds), []telemetry.Label{ {Name: "mode", Value: use}, })