From 212dbda5e012a7c72ac7843e3c23e249f65a83e0 Mon Sep 17 00:00:00 2001 From: jose-fully-ported <141160579+jose-fully-ported@users.noreply.github.com> Date: Wed, 20 Sep 2023 13:46:17 -0400 Subject: [PATCH] feat: add namespace to helm-get-release telemetry (#3603) --- internal/helm/agent.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/helm/agent.go b/internal/helm/agent.go index fbdce487d5..af2525f88d 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}, )