From 88699511161a271e625adb6c3db05e2bc89de838 Mon Sep 17 00:00:00 2001 From: Dmitrii Anoshin Date: Fri, 16 Jun 2023 11:51:00 -0700 Subject: [PATCH] =?UTF-8?q?Revert=20"[processor/k8sattributes]=20Rename=20?= =?UTF-8?q?k8sattributes=20processor=20inte=E2=80=A6=20(#23431)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …rnal metrics (#23369)" This reverts commit 42bca6f787d719a4d6e6299bdd9890957d88e951. Revert it until https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/23369#issuecomment-1594276723 is resolved to avoid adding it to the next release Co-authored-by: Ziqi Zhao --- .chloggen/k8sattribute-rename-metric.yaml | 20 ----------------- .../internal/observability/observability.go | 22 +++++++++---------- .../observability/observability_test.go | 14 ++++++------ 3 files changed, 18 insertions(+), 38 deletions(-) delete mode 100755 .chloggen/k8sattribute-rename-metric.yaml diff --git a/.chloggen/k8sattribute-rename-metric.yaml b/.chloggen/k8sattribute-rename-metric.yaml deleted file mode 100755 index 603cc48ad61b..000000000000 --- a/.chloggen/k8sattribute-rename-metric.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Use this changelog template to create an entry for release notes. -# If your change doesn't affect end users, such as a test fix or a tooling change, -# you should instead start your pull request title with [chore] or use the "Skip Changelog" label. - -# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' -change_type: breaking - -# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver) -component: processor/k8sattributes - -# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). -note: rename k8sattributes processor internal metrics - -# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists. -issues: [2322] - -# (Optional) One or more lines of additional information to render under the primary note. -# These lines will be padded with 2 spaces and then inserted directly into the document. -# Use pipe (|) for multiline entries. -subtext: diff --git a/processor/k8sattributesprocessor/internal/observability/observability.go b/processor/k8sattributesprocessor/internal/observability/observability.go index e7ee543da68a..1bb486788b43 100644 --- a/processor/k8sattributesprocessor/internal/observability/observability.go +++ b/processor/k8sattributesprocessor/internal/observability/observability.go @@ -27,17 +27,17 @@ func init() { } var ( - mPodsUpdated = stats.Int64("processor.k8sattributes.pods.updated", "Number of pod update events received", "1") - mPodsAdded = stats.Int64("processor.k8sattributes.pods.added", "Number of pod add events received", "1") - mPodsDeleted = stats.Int64("processor.k8sattributes.pods.deleted", "Number of pod delete events received", "1") - mPodTableSize = stats.Int64("processor.k8sattributes.pods.table_size", "Size of table containing pod info", "1") - mIPLookupMiss = stats.Int64("processor.k8sattributes.ip_lookup_misses", "Number of times pod by IP lookup failed.", "1") - mNamespacesUpdated = stats.Int64("processor.k8sattributes.namespaces.updated", "Number of namespace update events received", "1") - mNamespacesAdded = stats.Int64("processor.k8sattributes.namespaces.added", "Number of namespace add events received", "1") - mNamespacesDeleted = stats.Int64("processor.k8sattributes.namespaces.deleted", "Number of namespace delete events received", "1") - mReplicaSetsUpdated = stats.Int64("processor.k8sattributes.replicasets.updated", "Number of ReplicaSet update events received", "1") - mReplicaSetsAdded = stats.Int64("processor.k8sattributes.replicasets.added", "Number of ReplicaSet add events received", "1") - mReplicaSetsDeleted = stats.Int64("processor.k8sattributes.replicasets.deleted", "Number of ReplicaSet delete events received", "1") + mPodsUpdated = stats.Int64("otelsvc/k8s/pod_updated", "Number of pod update events received", "1") + mPodsAdded = stats.Int64("otelsvc/k8s/pod_added", "Number of pod add events received", "1") + mPodsDeleted = stats.Int64("otelsvc/k8s/pod_deleted", "Number of pod delete events received", "1") + mPodTableSize = stats.Int64("otelsvc/k8s/pod_table_size", "Size of table containing pod info", "1") + mIPLookupMiss = stats.Int64("otelsvc/k8s/ip_lookup_miss", "Number of times pod by IP lookup failed.", "1") + mNamespacesUpdated = stats.Int64("otelsvc/k8s/namespace_updated", "Number of namespace update events received", "1") + mNamespacesAdded = stats.Int64("otelsvc/k8s/namespace_added", "Number of namespace add events received", "1") + mNamespacesDeleted = stats.Int64("otelsvc/k8s/namespace_deleted", "Number of namespace delete events received", "1") + mReplicaSetsUpdated = stats.Int64("otelsvc/k8s/replicaset_updated", "Number of ReplicaSet update events received", "1") + mReplicaSetsAdded = stats.Int64("otelsvc/k8s/replicaset_added", "Number of ReplicaSet add events received", "1") + mReplicaSetsDeleted = stats.Int64("otelsvc/k8s/replicaset_deleted", "Number of ReplicaSet delete events received", "1") ) var viewPodsUpdated = &view.View{ diff --git a/processor/k8sattributesprocessor/internal/observability/observability_test.go b/processor/k8sattributesprocessor/internal/observability/observability_test.go index 72031e19a68b..ff8d26e29288 100644 --- a/processor/k8sattributesprocessor/internal/observability/observability_test.go +++ b/processor/k8sattributesprocessor/internal/observability/observability_test.go @@ -61,31 +61,31 @@ func TestMetrics(t *testing.T) { } tests := []testCase{ { - "processor.k8sattributes.pods.added", + "otelsvc/k8s/pod_added", RecordPodAdded, }, { - "processor.k8sattributes.pods.deleted", + "otelsvc/k8s/pod_deleted", RecordPodDeleted, }, { - "processor.k8sattributes.pods.updated", + "otelsvc/k8s/pod_updated", RecordPodUpdated, }, { - "processor.k8sattributes.ip_lookup_misses", + "otelsvc/k8s/ip_lookup_miss", RecordIPLookupMiss, }, { - "processor.k8sattributes.namespaces.added", + "otelsvc/k8s/namespace_added", RecordNamespaceAdded, }, { - "processor.k8sattributes.namespaces.updated", + "otelsvc/k8s/namespace_updated", RecordNamespaceUpdated, }, { - "processor.k8sattributes.namespaces.deleted", + "otelsvc/k8s/namespace_deleted", RecordNamespaceDeleted, }, }