diff --git a/plugins/processors/awsapplicationsignals/internal/normalizer/attributesnormalizer.go b/plugins/processors/awsapplicationsignals/internal/normalizer/attributesnormalizer.go index fa19c75b29..dd08d63f44 100644 --- a/plugins/processors/awsapplicationsignals/internal/normalizer/attributesnormalizer.go +++ b/plugins/processors/awsapplicationsignals/internal/normalizer/attributesnormalizer.go @@ -183,7 +183,6 @@ func rename(attrs pcommon.Map, renameMap map[string]string) { // only rename host.id if the pod name is set if host, ok := attrs.Get("host.id"); ok { attrs.PutStr("K8s.Node", host.AsString()) - attrs.Remove("host.id") } } }