diff --git a/otel-integration/CHANGELOG.md b/otel-integration/CHANGELOG.md index 23e06062..7c1b3072 100644 --- a/otel-integration/CHANGELOG.md +++ b/otel-integration/CHANGELOG.md @@ -2,6 +2,10 @@ ## OpenTelemtry-Integration +### v0.0.13 / 2023-08-22 + +* [FIX] Change `k8s.container.name` to `k8s.pod.name` attribute + ### v0.0.12 / 2023-08-21 * [FEATURE] Support host.id from system resource detector. diff --git a/otel-integration/k8s-helm/Chart.yaml b/otel-integration/k8s-helm/Chart.yaml index d8441393..1ad5967b 100644 --- a/otel-integration/k8s-helm/Chart.yaml +++ b/otel-integration/k8s-helm/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 name: otel-integration description: OpenTelemetry Integration -version: 0.0.12 +version: 0.0.13 keywords: - OpenTelemetry Collector - OpenTelemetry Agent diff --git a/otel-integration/k8s-helm/values-crd.yaml b/otel-integration/k8s-helm/values-crd.yaml index dbdff037..4b1f114e 100644 --- a/otel-integration/k8s-helm/values-crd.yaml +++ b/otel-integration/k8s-helm/values-crd.yaml @@ -176,7 +176,7 @@ opentelemetry-agent: - "k8s.daemonset.name" - "k8s.cronjob.name" - "k8s.job.name" - - "k8s.container.name" + - "k8s.pod.name" - "k8s.node.name" - "service.name" @@ -409,7 +409,7 @@ opentelemetry-cluster-collector: - "k8s.daemonset.name" - "k8s.cronjob.name" - "k8s.job.name" - - "k8s.container.name" + - "k8s.pod.name" - "k8s.node.name" - "service.name" diff --git a/otel-integration/k8s-helm/values.yaml b/otel-integration/k8s-helm/values.yaml index 7aa237aa..12d944c7 100644 --- a/otel-integration/k8s-helm/values.yaml +++ b/otel-integration/k8s-helm/values.yaml @@ -191,7 +191,7 @@ opentelemetry-agent: - "k8s.daemonset.name" - "k8s.cronjob.name" - "k8s.job.name" - - "k8s.container.name" + - "k8s.pod.name" - "k8s.node.name" - "service.name" @@ -416,7 +416,7 @@ opentelemetry-cluster-collector: - "k8s.daemonset.name" - "k8s.cronjob.name" - "k8s.job.name" - - "k8s.container.name" + - "k8s.pod.name" - "k8s.node.name" - "service.name"