From 7dbbe7feee2f1d6fe3de1e48b777aa44059921d4 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Tue, 19 Sep 2023 18:01:41 -0400 Subject: [PATCH] feat: add namespace to helm-get-release telemetry This will make it more clear as to whether we should be hitting the 'latest' logic or not. --- internal/helm/agent.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/helm/agent.go b/internal/helm/agent.go index fbdce487d5f..af2525f88d0 100644 --- a/internal/helm/agent.go +++ b/internal/helm/agent.go @@ -126,6 +126,7 @@ func (a *Agent) GetRelease( telemetry.WithAttributes(span, telemetry.AttributeKV{Key: "name", Value: name}, + telemetry.AttributeKV{Key: "namespace", Value: a.Namespace()}, telemetry.AttributeKV{Key: "version", Value: version}, telemetry.AttributeKV{Key: "getDeps", Value: getDeps}, )