diff --git a/.chloggen/python.yaml b/.chloggen/python.yaml new file mode 100644 index 000000000..faf76ad7d --- /dev/null +++ b/.chloggen/python.yaml @@ -0,0 +1,12 @@ +# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' +change_type: enhancement +# The name of the component, or a single word describing the area of concern, (e.g. agent, clusterReceiver, gateway, operator, chart, other) +component: operator +# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). +note: Add tests for Python support +# One or more tracking issues related to the change +issues: [1641] +# (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/examples/enable-operator-and-auto-instrumentation/rendered_manifests/operator/instrumentation.yaml b/examples/enable-operator-and-auto-instrumentation/rendered_manifests/operator/instrumentation.yaml index 54014fe07..31c605c67 100644 --- a/examples/enable-operator-and-auto-instrumentation/rendered_manifests/operator/instrumentation.yaml +++ b/examples/enable-operator-and-auto-instrumentation/rendered_manifests/operator/instrumentation.yaml @@ -66,10 +66,10 @@ spec: - name: OTEL_RESOURCE_ATTRIBUTES value: splunk.zc.method=splunk-otel-js:v2.15.0 python: - image: ghcr.io/open-telemetry/opentelemetry-operator/autoinstrumentation-python:0.44b0 + image: ghcr.io/open-telemetry/opentelemetry-operator/autoinstrumentation-python:0.50b0 env: - name: OTEL_RESOURCE_ATTRIBUTES - value: splunk.zc.method=autoinstrumentation-python:0.44b0 + value: splunk.zc.method=autoinstrumentation-python:0.50b0 # python auto-instrumentation uses http/proto by default, so data must be sent to 4318 instead of 4317. # See: https://github.com/open-telemetry/opentelemetry-operator#opentelemetry-auto-instrumentation-injection - name: OTEL_EXPORTER_OTLP_ENDPOINT diff --git a/functional_tests/README.md b/functional_tests/README.md index 16867aac5..2293266a5 100644 --- a/functional_tests/README.md +++ b/functional_tests/README.md @@ -17,6 +17,7 @@ kind load docker-image quay.io/splunko11ytest/dotnet_test:latest --name kind kind load docker-image ghcr.io/signalfx/splunk-otel-dotnet/splunk-otel-dotnet:v1.8.0 --name kind kind load docker-image ghcr.io/signalfx/splunk-otel-js/splunk-otel-js:v2.4.4 --name kind kind load docker-image ghcr.io/signalfx/splunk-otel-java/splunk-otel-java:v1.30.0 --name kind +kind load docker-image ghcr.io/open-telemetry/opentelemetry-operator/autoinstrumentation-python:0.50b0 --name kind ``` ## Config switches diff --git a/functional_tests/functional_test.go b/functional_tests/functional_test.go index b920c815c..f33c39259 100644 --- a/functional_tests/functional_test.go +++ b/functional_tests/functional_test.go @@ -308,6 +308,19 @@ func deployChartsAndApps(t *testing.T) { require.NoError(t, err) } } + // Python test app + stream, err = os.ReadFile(filepath.Join(testDir, "python", "deployment.yaml")) + require.NoError(t, err) + deployment, _, err = decode(stream, nil, nil) + require.NoError(t, err) + _, err = deployments.Create(context.Background(), deployment.(*appsv1.Deployment), metav1.CreateOptions{}) + if err != nil { + _, err2 := deployments.Update(context.Background(), deployment.(*appsv1.Deployment), metav1.UpdateOptions{}) + assert.NoError(t, err2) + if err2 != nil { + require.NoError(t, err) + } + } // Prometheus annotation stream, err = os.ReadFile(filepath.Join(testDir, manifestsDir, "deployment_with_prometheus_annotations.yaml")) require.NoError(t, err) @@ -433,6 +446,9 @@ func teardown(t *testing.T) { _ = deployments.Delete(context.Background(), "java-test", metav1.DeleteOptions{ GracePeriodSeconds: &waitTime, }) + _ = deployments.Delete(context.Background(), "python-test", metav1.DeleteOptions{ + GracePeriodSeconds: &waitTime, + }) _ = deployments.Delete(context.Background(), "dotnet-test", metav1.DeleteOptions{ GracePeriodSeconds: &waitTime, }) @@ -541,6 +557,7 @@ func Test_Functions(t *testing.T) { t.Run("node.js traces captured", testNodeJSTraces) t.Run("java traces captured", testJavaTraces) t.Run(".NET traces captured", testDotNetTraces) + t.Run("Python traces captured", testPythonTraces) t.Run("kubernetes cluster metrics", testK8sClusterReceiverMetrics) t.Run("agent logs", testAgentLogs) t.Run("test HEC metrics", testHECMetrics) @@ -616,6 +633,75 @@ func testNodeJSTraces(t *testing.T) { require.NoError(t, err) } +func testPythonTraces(t *testing.T) { + tracesConsumer := setupOnce(t).tracesConsumer + + var expectedTraces ptrace.Traces + expectedTracesFile := filepath.Join(testDir, expectedValuesDir, "expected_python_traces.yaml") + expectedTraces, err := golden.ReadTraces(expectedTracesFile) + require.NoError(t, err) + + waitForTraces(t, 10, tracesConsumer) + + var selectedTrace *ptrace.Traces + + read := 0 + require.Eventually(t, func() bool { + for i := len(tracesConsumer.AllTraces()) - 1; i > read; i-- { + trace := tracesConsumer.AllTraces()[i] + if val, ok := trace.ResourceSpans().At(0).Resource().Attributes().Get("telemetry.sdk.language"); ok && strings.Contains(val.Str(), "python") { + if expectedTraces.SpanCount() == trace.SpanCount() && expectedTraces.ResourceSpans().Len() == trace.ResourceSpans().Len() { + selectedTrace = &trace + break + } + } + } + read = len(tracesConsumer.AllTraces()) - 1 + return selectedTrace != nil + }, 1*time.Minute, 5*time.Second) + require.NotNil(t, selectedTrace) + + maskScopeVersion(*selectedTrace) + maskScopeVersion(expectedTraces) + + err = ptracetest.CompareTraces(expectedTraces, *selectedTrace, + ptracetest.IgnoreResourceAttributeValue("container.id"), + ptracetest.IgnoreResourceAttributeValue("host.arch"), + ptracetest.IgnoreResourceAttributeValue("k8s.deployment.name"), + ptracetest.IgnoreResourceAttributeValue("k8s.pod.ip"), + ptracetest.IgnoreResourceAttributeValue("k8s.pod.name"), + ptracetest.IgnoreResourceAttributeValue("k8s.pod.uid"), + ptracetest.IgnoreResourceAttributeValue("k8s.replicaset.name"), + ptracetest.IgnoreResourceAttributeValue("os.version"), + ptracetest.IgnoreResourceAttributeValue("process.pid"), + ptracetest.IgnoreResourceAttributeValue("splunk.distro.version"), + ptracetest.IgnoreResourceAttributeValue("process.runtime.version"), + ptracetest.IgnoreResourceAttributeValue("process.command"), + ptracetest.IgnoreResourceAttributeValue("process.command_args"), + ptracetest.IgnoreResourceAttributeValue("process.executable.path"), + ptracetest.IgnoreResourceAttributeValue("process.owner"), + ptracetest.IgnoreResourceAttributeValue("process.runtime.description"), + ptracetest.IgnoreResourceAttributeValue("splunk.zc.method"), + ptracetest.IgnoreResourceAttributeValue("telemetry.distro.version"), + ptracetest.IgnoreResourceAttributeValue("telemetry.sdk.version"), + ptracetest.IgnoreResourceAttributeValue("service.instance.id"), + ptracetest.IgnoreSpanAttributeValue("http.user_agent"), + ptracetest.IgnoreSpanAttributeValue("net.peer.port"), + ptracetest.IgnoreSpanAttributeValue("network.peer.port"), + ptracetest.IgnoreSpanAttributeValue("os.version"), + ptracetest.IgnoreTraceID(), + ptracetest.IgnoreSpanID(), + ptracetest.IgnoreStartTimestamp(), + ptracetest.IgnoreEndTimestamp(), + ptracetest.IgnoreResourceSpansOrder(), + ptracetest.IgnoreScopeSpansOrder(), + ) + if err != nil && os.Getenv("UPDATE_EXPECTED_RESULTS") == "true" { + writeNewExpectedTracesResult(t, expectedTracesFile, selectedTrace) + } + require.NoError(t, err) +} + func testJavaTraces(t *testing.T) { tracesConsumer := setupOnce(t).tracesConsumer diff --git a/functional_tests/testdata/expected_eks_values/expected_cluster_receiver.yaml b/functional_tests/testdata/expected_eks_values/expected_cluster_receiver.yaml index 10ec768cd..ede506712 100644 --- a/functional_tests/testdata/expected_eks_values/expected_cluster_receiver.yaml +++ b/functional_tests/testdata/expected_eks_values/expected_cluster_receiver.yaml @@ -26,10 +26,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-67c98b89c8-5dtxs + stringValue: cert-manager-67c98b89c8-g22j7 - key: k8s.pod.uid value: - stringValue: 9cd699ef-f612-4879-b1ce-04303d7b4f6c + stringValue: 3ece0e7b-6f24-4bed-a51e-e0fcf81a5c26 - key: metric_source value: stringValue: kubernetes @@ -59,10 +59,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-cainjector-5c5695d979-h7c2k + stringValue: cert-manager-cainjector-5c5695d979-4gn7v - key: k8s.pod.uid value: - stringValue: 5a67f651-add4-43f6-b2a7-06afb5fef617 + stringValue: c67d333e-6b13-4486-8b36-c9622a794d1f - key: metric_source value: stringValue: kubernetes @@ -92,10 +92,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-webhook-7f9f8648b9-dzq2l + stringValue: cert-manager-webhook-7f9f8648b9-pjrwc - key: k8s.pod.uid value: - stringValue: 18826d35-ead9-4637-a492-8d78156959f6 + stringValue: abf6af19-643c-4f88-96ae-beedc60f4f8e - key: metric_source value: stringValue: kubernetes @@ -125,10 +125,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: dotnet-test-5479c475fc-qpr6c + stringValue: dotnet-test-5479c475fc-8xpcw - key: k8s.pod.uid value: - stringValue: bd83fe1d-786d-4da7-889e-cee578e6f2f8 + stringValue: c28fcde1-8d20-4cfc-a975-8b2c08de526f - key: metric_source value: stringValue: kubernetes @@ -136,7 +136,7 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "2" + - asInt: "1" attributes: - key: cluster_name value: @@ -158,10 +158,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: java-test-5c4d6479b8-j7fmr + stringValue: java-test-5c4d6479b8-9w6fc - key: k8s.pod.uid value: - stringValue: 63ca8dfe-1747-4097-9b9d-071b1cb3b891 + stringValue: 789291d9-e227-4281-ac96-3ade5e1512d6 - key: metric_source value: stringValue: kubernetes @@ -169,7 +169,7 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "2" + - asInt: "1" attributes: - key: cluster_name value: @@ -191,10 +191,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: nodejs-test-56b74df9ff-klgm7 + stringValue: nodejs-test-56b74df9ff-t7bkb - key: k8s.pod.uid value: - stringValue: 89b46064-f8e5-46d6-b54e-79a1cc7948df + stringValue: 7d03f4f5-6a6a-4dcb-a398-6b066c184e2f - key: metric_source value: stringValue: kubernetes @@ -224,10 +224,43 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: prometheus-annotation-test-cfc77c7b9-86vg5 + stringValue: prometheus-annotation-test-cfc77c7b9-xhlhw + - key: k8s.pod.uid + value: + stringValue: 2a992a4b-e975-4d29-b17c-3288b0043a0e + - key: metric_source + value: + stringValue: kubernetes + - key: receiver + value: + stringValue: k8scluster + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: default + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: python-test-84856b7fcd-f9ptl - key: k8s.pod.uid value: - stringValue: 558db553-7cc6-44f2-9039-f81e43d0bc25 + stringValue: 11e120c9-cd51-4872-8020-22153b6f4f19 - key: metric_source value: stringValue: kubernetes @@ -257,10 +290,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -290,10 +323,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-rm8js + stringValue: sock-splunk-otel-collector-agent-6zqmr - key: k8s.pod.uid value: - stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 + stringValue: 4d0c9753-5f12-4ffb-a9c7-da33948c8c7f - key: metric_source value: stringValue: kubernetes @@ -323,10 +356,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-59674d665-tc4ss - key: k8s.pod.uid value: - stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c + stringValue: c751b5f2-0b6b-418f-b71b-606330a83430 - key: metric_source value: stringValue: kubernetes @@ -356,10 +389,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4-rpj6g + stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4-26wmp - key: k8s.pod.uid value: - stringValue: 4e7bef74-37d2-4380-b5d7-c0ce1476be95 + stringValue: f4b8c20e-1dad-4eec-a849-6a15e9a08156 - key: metric_source value: stringValue: kubernetes @@ -389,10 +422,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-8w7l8 + stringValue: coredns-76f75df574-2gdxf - key: k8s.pod.uid value: - stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 + stringValue: cbe6b06d-1d5a-4235-8ded-a3d2b497138d - key: metric_source value: stringValue: kubernetes @@ -422,10 +455,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-wqrsn + stringValue: coredns-76f75df574-j6vjb - key: k8s.pod.uid value: - stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 + stringValue: c0dd36df-1e0c-4feb-b1b7-419681595dd2 - key: metric_source value: stringValue: kubernetes @@ -458,7 +491,7 @@ resourceMetrics: stringValue: etcd-kind-control-plane - key: k8s.pod.uid value: - stringValue: 68828dad-2ca2-47ca-914e-f41cfd58244b + stringValue: 53f92a39-92e9-4ae4-b3e5-6f32ac6fb705 - key: metric_source value: stringValue: kubernetes @@ -488,10 +521,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kindnet-9xfzp + stringValue: kindnet-b4pd7 - key: k8s.pod.uid value: - stringValue: f8149b85-dab1-482e-a735-0c29a953061b + stringValue: 5c574843-642d-4ba6-bfd8-9aa160827de3 - key: metric_source value: stringValue: kubernetes @@ -524,7 +557,7 @@ resourceMetrics: stringValue: kube-apiserver-kind-control-plane - key: k8s.pod.uid value: - stringValue: 830a2042-aec1-4502-8d2b-d96852bd105c + stringValue: a7644cdf-3844-439c-bd8f-dc0760623723 - key: metric_source value: stringValue: kubernetes @@ -557,7 +590,7 @@ resourceMetrics: stringValue: kube-controller-manager-kind-control-plane - key: k8s.pod.uid value: - stringValue: 5c40ac1e-5432-4249-b754-4795b36d4c99 + stringValue: 80d09637-319b-4208-a062-393533fbf2ac - key: metric_source value: stringValue: kubernetes @@ -587,10 +620,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-proxy-tw2lr + stringValue: kube-proxy-w4pq8 - key: k8s.pod.uid value: - stringValue: 7b0de1af-95c5-4994-9e01-f16b25ba49c6 + stringValue: 7b25c613-e655-4679-9ad5-0ef0419f6aa7 - key: metric_source value: stringValue: kubernetes @@ -623,7 +656,7 @@ resourceMetrics: stringValue: kube-scheduler-kind-control-plane - key: k8s.pod.uid value: - stringValue: e8a35d2f-5099-41cb-97c1-7c20e9236fd5 + stringValue: 966d4695-d046-4416-927d-8162dbaab50b - key: metric_source value: stringValue: kubernetes @@ -653,10 +686,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: local-path-provisioner-6f8956fb48-wgzmr + stringValue: local-path-provisioner-6f8956fb48-nl7dt - key: k8s.pod.uid value: - stringValue: 809e4615-fc78-494b-abde-5263a1ee31a0 + stringValue: e6f3d494-3e4e-4ed4-9f3b-054c9675a785 - key: metric_source value: stringValue: kubernetes @@ -667,20 +700,20 @@ resourceMetrics: name: k8s.pod.phase - gauge: dataPoints: - - asDouble: 0.2 + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 + stringValue: 003d3d03d91f08af36531d2160e85d83b3c497371e47017e42f21c538694b1b7 - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: quay.io/splunko11ytest/dotnet_test - key: container.image.tag value: - stringValue: 0.113.0 + stringValue: latest - key: customfield1 value: stringValue: customvalue1 @@ -692,7 +725,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: dotnet-test - key: k8s.namespace.name value: stringValue: default @@ -701,10 +734,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj + stringValue: dotnet-test-5479c475fc-8xpcw - key: k8s.pod.uid value: - stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c + stringValue: c28fcde1-8d20-4cfc-a975-8b2c08de526f - key: metric_source value: stringValue: kubernetes @@ -712,20 +745,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.1 + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 + stringValue: 004389c5623d8aabe7d71bb7a33cf264f880ed445a250140b686b6faf5976200 - key: container.image.name value: - stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/target-allocator - key: container.image.tag value: - stringValue: 0.116.0 + stringValue: v0.105.0 - key: customfield1 value: stringValue: customvalue1 @@ -737,7 +770,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: manager + stringValue: targetallocator - key: k8s.namespace.name value: stringValue: default @@ -746,10 +779,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4-26wmp - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: f4b8c20e-1dad-4eec-a849-6a15e9a08156 - key: metric_source value: stringValue: kubernetes @@ -757,20 +790,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.1 + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 55d8886e226d55a1a0f3e3f0bdc56d0e2a32c9ffdf6712c9e99c9873528f5b12 + stringValue: 08712584e737fe9c61d06351d7b205d6344a412e5f8231863cd7b591d2ebe729 - key: container.image.name value: - stringValue: registry.k8s.io/kube-scheduler + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: v1.29.0 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -782,7 +815,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-scheduler + stringValue: coredns - key: k8s.namespace.name value: stringValue: kube-system @@ -791,10 +824,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-scheduler-kind-control-plane + stringValue: coredns-76f75df574-j6vjb - key: k8s.pod.uid value: - stringValue: e8a35d2f-5099-41cb-97c1-7c20e9236fd5 + stringValue: c0dd36df-1e0c-4feb-b1b7-419681595dd2 - key: metric_source value: stringValue: kubernetes @@ -802,20 +835,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.1 + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 56c1f8ae24c544d0a51aabda6f200e7a491c22eeca767de49504632b0340e09c + stringValue: 15ff7b753a6950674b9e78ec8274e73bd135699d5e2e5744e22287da8d27fadc - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: docker.io/kindest/kindnetd - key: container.image.tag value: - stringValue: v1.11.1 + stringValue: v20230511-dc714da8 - key: customfield1 value: stringValue: customvalue1 @@ -827,7 +860,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + stringValue: kindnet-cni - key: k8s.namespace.name value: stringValue: kube-system @@ -836,10 +869,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-8w7l8 + stringValue: kindnet-b4pd7 - key: k8s.pod.uid value: - stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 + stringValue: 5c574843-642d-4ba6-bfd8-9aa160827de3 - key: metric_source value: stringValue: kubernetes @@ -847,20 +880,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.2 + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 + stringValue: 2676c08fa9df42f1b1d7dd55856946f2e9440b793ce98424575b56ffb32b991f - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: quay.io/jetstack/cert-manager-webhook - key: container.image.tag value: - stringValue: 0.113.0 + stringValue: v1.14.4 - key: customfield1 value: stringValue: customvalue1 @@ -872,19 +905,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: cert-manager-webhook - key: k8s.namespace.name value: - stringValue: default + stringValue: cert-manager - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-rm8js + stringValue: cert-manager-webhook-7f9f8648b9-pjrwc - key: k8s.pod.uid value: - stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 + stringValue: abf6af19-643c-4f88-96ae-beedc60f4f8e - key: metric_source value: stringValue: kubernetes @@ -892,14 +925,14 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.25 + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 6e3992f7de7d0611933767e445edc89ecc7b6bb086fbf9b82b7daba89df7f09a + stringValue: 2a5891c6055ebcb2aab796034ab47117e538b784d450d036bcba82caf56c0de2 - key: container.image.name value: stringValue: registry.k8s.io/kube-apiserver @@ -929,7 +962,7 @@ resourceMetrics: stringValue: kube-apiserver-kind-control-plane - key: k8s.pod.uid value: - stringValue: 830a2042-aec1-4502-8d2b-d96852bd105c + stringValue: a7644cdf-3844-439c-bd8f-dc0760623723 - key: metric_source value: stringValue: kubernetes @@ -937,20 +970,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.005 + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac + stringValue: 33ab498497f4b362fd83ec43b1e0c1ad26d37e8dfb524e3ba2a19050a5af59ed - key: container.image.name value: - stringValue: quay.io/brancz/kube-rbac-proxy + stringValue: quay.io/splunko11ytest/httpd - key: container.image.tag value: - stringValue: v0.18.1 + stringValue: latest - key: customfield1 value: stringValue: customvalue1 @@ -962,7 +995,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-rbac-proxy + stringValue: prometheus-annotation-test - key: k8s.namespace.name value: stringValue: default @@ -971,10 +1004,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: prometheus-annotation-test-cfc77c7b9-xhlhw - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: 2a992a4b-e975-4d29-b17c-3288b0043a0e - key: metric_source value: stringValue: kubernetes @@ -982,20 +1015,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.1 + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7930a07f4cb7fc9ea6159a3bc7c7485170f728ddc0cc0c50a6f571737c846e50 + stringValue: 50b808281e95714072a15e744c529bba4c3462043e9bfb45b2bb451ea787dd73 - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: v1.11.1 + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -1007,19 +1040,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + stringValue: otel-collector - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-wqrsn + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-59674d665-tc4ss - key: k8s.pod.uid value: - stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 + stringValue: c751b5f2-0b6b-418f-b71b-606330a83430 - key: metric_source value: stringValue: kubernetes @@ -1027,20 +1060,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.1 + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 82b7c36c5da8acb40f66be5b2c70430bb7d7c84e128bede5bc325f94653839bd + stringValue: 5eb6066cb19df83f23df91e843654e456e334a1fb7eadf2c699fcf5106506b74 - key: container.image.name value: - stringValue: registry.k8s.io/etcd + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: 3.5.10-0 + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -1052,19 +1085,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: etcd + stringValue: otel-collector - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: etcd-kind-control-plane + stringValue: sock-splunk-otel-collector-agent-6zqmr - key: k8s.pod.uid value: - stringValue: 68828dad-2ca2-47ca-914e-f41cfd58244b + stringValue: 4d0c9753-5f12-4ffb-a9c7-da33948c8c7f - key: metric_source value: stringValue: kubernetes @@ -1072,20 +1105,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.2 + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e2ea169579f87203b926492d33050b56fd253b2e07bd66730339fc75a2fd4621 + stringValue: 691a447c6f0f931e19e15831507ebf96e742c77315fe17f14dffcfa9dc148f4f - key: container.image.name value: - stringValue: registry.k8s.io/kube-controller-manager + stringValue: docker.io/kindest/local-path-provisioner - key: container.image.tag value: - stringValue: v1.29.0 + stringValue: v20230511-dc714da8 - key: customfield1 value: stringValue: customvalue1 @@ -1097,19 +1130,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-controller-manager + stringValue: local-path-provisioner - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: local-path-storage - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-controller-manager-kind-control-plane + stringValue: local-path-provisioner-6f8956fb48-nl7dt - key: k8s.pod.uid value: - stringValue: 5c40ac1e-5432-4249-b754-4795b36d4c99 + stringValue: e6f3d494-3e4e-4ed4-9f3b-054c9675a785 - key: metric_source value: stringValue: kubernetes @@ -1117,20 +1150,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.1 + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 + stringValue: 73670e794cf1a1c6b3e5a410cec652bcdb78c02a4793c3ed5beb4e93a0b4c8a2 - key: container.image.name value: - stringValue: docker.io/kindest/kindnetd + stringValue: registry.k8s.io/kube-proxy - key: container.image.tag value: - stringValue: v20230511-dc714da8 + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -1142,7 +1175,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kindnet-cni + stringValue: kube-proxy - key: k8s.namespace.name value: stringValue: kube-system @@ -1151,10 +1184,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kindnet-9xfzp + stringValue: kube-proxy-w4pq8 - key: k8s.pod.uid value: - stringValue: f8149b85-dab1-482e-a735-0c29a953061b + stringValue: 7b25c613-e655-4679-9ad5-0ef0419f6aa7 - key: metric_source value: stringValue: kubernetes @@ -1162,23 +1195,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - name: k8s.container.cpu_request - - gauge: - dataPoints: - - asInt: "524288000" + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 + stringValue: 844cdc39f6c38dfee2410beaf59f434017f01f1600a03601d06acc022b65e7de - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: registry.k8s.io/kube-controller-manager - key: container.image.tag value: - stringValue: 0.113.0 + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -1190,19 +1220,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: kube-controller-manager - key: k8s.namespace.name value: - stringValue: default + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj + stringValue: kube-controller-manager-kind-control-plane - key: k8s.pod.uid value: - stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c + stringValue: 80d09637-319b-4208-a062-393533fbf2ac - key: metric_source value: stringValue: kubernetes @@ -1210,20 +1240,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "134217728" + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 + stringValue: afc7413fdca060dddc8be931db2d2974c5348f058d7267fd13830251ad78fd69 - key: container.image.name value: stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator - key: container.image.tag value: - stringValue: 0.116.0 + stringValue: 0.110.0 - key: customfield1 value: stringValue: customvalue1 @@ -1244,10 +1274,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -1255,20 +1285,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "178257920" + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 56c1f8ae24c544d0a51aabda6f200e7a491c22eeca767de49504632b0340e09c + stringValue: b1e0c654ae5151efa4dbd3ca88f6bdf1e1f332393ed611328099b9fff0ad87d5 - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: quay.io/jetstack/cert-manager-controller - key: container.image.tag value: - stringValue: v1.11.1 + stringValue: v1.14.4 - key: customfield1 value: stringValue: customvalue1 @@ -1280,19 +1310,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + stringValue: cert-manager-controller - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: cert-manager - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-8w7l8 + stringValue: cert-manager-67c98b89c8-g22j7 - key: k8s.pod.uid value: - stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 + stringValue: 3ece0e7b-6f24-4bed-a51e-e0fcf81a5c26 - key: metric_source value: stringValue: kubernetes @@ -1300,20 +1330,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "524288000" + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 + stringValue: c260d848811ce9c4f324718840ef701569a548e7e769be413d466e1586b6606c - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: registry.k8s.io/etcd - key: container.image.tag value: - stringValue: 0.113.0 + stringValue: 3.5.10-0 - key: customfield1 value: stringValue: customvalue1 @@ -1325,19 +1355,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: etcd - key: k8s.namespace.name value: - stringValue: default + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-rm8js + stringValue: etcd-kind-control-plane - key: k8s.pod.uid value: - stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 + stringValue: 53f92a39-92e9-4ae4-b3e5-6f32ac6fb705 - key: metric_source value: stringValue: kubernetes @@ -1345,20 +1375,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "134217728" + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac + stringValue: d5b98f53c3b61471d924aa1eeaed91f8c4d71119b776d409386b14fa851e0344 - key: container.image.name value: - stringValue: quay.io/brancz/kube-rbac-proxy + stringValue: quay.io/jetstack/cert-manager-cainjector - key: container.image.tag value: - stringValue: v0.18.1 + stringValue: v1.14.4 - key: customfield1 value: stringValue: customvalue1 @@ -1370,19 +1400,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-rbac-proxy + stringValue: cert-manager-cainjector - key: k8s.namespace.name value: - stringValue: default + stringValue: cert-manager - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: cert-manager-cainjector-5c5695d979-4gn7v - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: c67d333e-6b13-4486-8b36-c9622a794d1f - key: metric_source value: stringValue: kubernetes @@ -1390,20 +1420,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "178257920" + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7930a07f4cb7fc9ea6159a3bc7c7485170f728ddc0cc0c50a6f571737c846e50 + stringValue: e26453afede340680ddff9cde881a88300ce30b850f21e7f05703c0c341e3726 - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: registry.k8s.io/kube-scheduler - key: container.image.tag value: - stringValue: v1.11.1 + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -1415,7 +1445,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + stringValue: kube-scheduler - key: k8s.namespace.name value: stringValue: kube-system @@ -1424,10 +1454,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-wqrsn + stringValue: kube-scheduler-kind-control-plane - key: k8s.pod.uid value: - stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 + stringValue: 966d4695-d046-4416-927d-8162dbaab50b - key: metric_source value: stringValue: kubernetes @@ -1435,20 +1465,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "52428800" + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 + stringValue: f463a6bb8e665cbe3927a3e0ae395a54955cdf6228c2957da1e925807d9f816f - key: container.image.name value: - stringValue: docker.io/kindest/kindnetd + stringValue: quay.io/brancz/kube-rbac-proxy - key: container.image.tag value: - stringValue: v20230511-dc714da8 + stringValue: v0.18.1 - key: customfield1 value: stringValue: customvalue1 @@ -1460,19 +1490,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kindnet-cni + stringValue: kube-rbac-proxy - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kindnet-9xfzp + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: f8149b85-dab1-482e-a735-0c29a953061b + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -1480,23 +1510,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - name: k8s.container.memory_limit - - gauge: - dataPoints: - - asInt: "524288000" + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 + stringValue: f981b0fd2934f376127fbe25d53a62eb4637e7a6eb554b34aa0cbfe0d1fadaa3 - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: 0.113.0 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -1508,19 +1535,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: coredns - key: k8s.namespace.name value: - stringValue: default + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj + stringValue: coredns-76f75df574-2gdxf - key: k8s.pod.uid value: - stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c + stringValue: cbe6b06d-1d5a-4235-8ded-a3d2b497138d - key: metric_source value: stringValue: kubernetes @@ -1528,20 +1555,23 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "67108864" + name: k8s.container.ready + - gauge: + dataPoints: + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 + stringValue: 003d3d03d91f08af36531d2160e85d83b3c497371e47017e42f21c538694b1b7 - key: container.image.name value: - stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator + stringValue: quay.io/splunko11ytest/dotnet_test - key: container.image.tag value: - stringValue: 0.116.0 + stringValue: latest - key: customfield1 value: stringValue: customvalue1 @@ -1553,7 +1583,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: manager + stringValue: dotnet-test - key: k8s.namespace.name value: stringValue: default @@ -1562,10 +1592,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: dotnet-test-5479c475fc-8xpcw - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: c28fcde1-8d20-4cfc-a975-8b2c08de526f - key: metric_source value: stringValue: kubernetes @@ -1573,20 +1603,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "73400320" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 56c1f8ae24c544d0a51aabda6f200e7a491c22eeca767de49504632b0340e09c + stringValue: 004389c5623d8aabe7d71bb7a33cf264f880ed445a250140b686b6faf5976200 - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/target-allocator - key: container.image.tag value: - stringValue: v1.11.1 + stringValue: v0.105.0 - key: customfield1 value: stringValue: customvalue1 @@ -1598,19 +1628,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + stringValue: targetallocator - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-8w7l8 + stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4-26wmp - key: k8s.pod.uid value: - stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 + stringValue: f4b8c20e-1dad-4eec-a849-6a15e9a08156 - key: metric_source value: stringValue: kubernetes @@ -1618,20 +1648,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "524288000" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 + stringValue: 08712584e737fe9c61d06351d7b205d6344a412e5f8231863cd7b591d2ebe729 - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: 0.113.0 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -1643,19 +1673,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: coredns - key: k8s.namespace.name value: - stringValue: default + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-rm8js + stringValue: coredns-76f75df574-j6vjb - key: k8s.pod.uid value: - stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 + stringValue: c0dd36df-1e0c-4feb-b1b7-419681595dd2 - key: metric_source value: stringValue: kubernetes @@ -1663,20 +1693,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "67108864" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac + stringValue: 15ff7b753a6950674b9e78ec8274e73bd135699d5e2e5744e22287da8d27fadc - key: container.image.name value: - stringValue: quay.io/brancz/kube-rbac-proxy + stringValue: docker.io/kindest/kindnetd - key: container.image.tag value: - stringValue: v0.18.1 + stringValue: v20230511-dc714da8 - key: customfield1 value: stringValue: customvalue1 @@ -1688,19 +1718,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-rbac-proxy + stringValue: kindnet-cni - key: k8s.namespace.name value: - stringValue: default + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: kindnet-b4pd7 - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: 5c574843-642d-4ba6-bfd8-9aa160827de3 - key: metric_source value: stringValue: kubernetes @@ -1708,20 +1738,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "73400320" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7930a07f4cb7fc9ea6159a3bc7c7485170f728ddc0cc0c50a6f571737c846e50 + stringValue: 2676c08fa9df42f1b1d7dd55856946f2e9440b793ce98424575b56ffb32b991f - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: quay.io/jetstack/cert-manager-webhook - key: container.image.tag value: - stringValue: v1.11.1 + stringValue: v1.14.4 - key: customfield1 value: stringValue: customvalue1 @@ -1733,19 +1763,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + stringValue: cert-manager-webhook - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: cert-manager - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-wqrsn + stringValue: cert-manager-webhook-7f9f8648b9-pjrwc - key: k8s.pod.uid value: - stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 + stringValue: abf6af19-643c-4f88-96ae-beedc60f4f8e - key: metric_source value: stringValue: kubernetes @@ -1753,20 +1783,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "104857600" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 82b7c36c5da8acb40f66be5b2c70430bb7d7c84e128bede5bc325f94653839bd + stringValue: 2a5891c6055ebcb2aab796034ab47117e538b784d450d036bcba82caf56c0de2 - key: container.image.name value: - stringValue: registry.k8s.io/etcd + stringValue: registry.k8s.io/kube-apiserver - key: container.image.tag value: - stringValue: 3.5.10-0 + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -1778,7 +1808,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: etcd + stringValue: kube-apiserver - key: k8s.namespace.name value: stringValue: kube-system @@ -1787,55 +1817,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: etcd-kind-control-plane - - key: k8s.pod.uid - value: - stringValue: 68828dad-2ca2-47ca-914e-f41cfd58244b - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asInt: "52428800" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: container.id - value: - stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 - - key: container.image.name - value: - stringValue: docker.io/kindest/kindnetd - - key: container.image.tag - value: - stringValue: v20230511-dc714da8 - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.container.name - value: - stringValue: kindnet-cni - - key: k8s.namespace.name - value: - stringValue: kube-system - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: kindnet-9xfzp + stringValue: kube-apiserver-kind-control-plane - key: k8s.pod.uid value: - stringValue: f8149b85-dab1-482e-a735-0c29a953061b + stringValue: a7644cdf-3844-439c-bd8f-dc0760623723 - key: metric_source value: stringValue: kubernetes @@ -1843,23 +1828,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - name: k8s.container.memory_request - - gauge: - dataPoints: - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 029555a4cfeffe308062ebe8f6f59e116313d079efd1a802064ed30e6e155150 + stringValue: 33ab498497f4b362fd83ec43b1e0c1ad26d37e8dfb524e3ba2a19050a5af59ed - key: container.image.name value: - stringValue: docker.io/kindest/local-path-provisioner + stringValue: quay.io/splunko11ytest/httpd - key: container.image.tag value: - stringValue: v20230511-dc714da8 + stringValue: latest - key: customfield1 value: stringValue: customvalue1 @@ -1871,19 +1853,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: local-path-provisioner + stringValue: prometheus-annotation-test - key: k8s.namespace.name value: - stringValue: local-path-storage + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: local-path-provisioner-6f8956fb48-wgzmr + stringValue: prometheus-annotation-test-cfc77c7b9-xhlhw - key: k8s.pod.uid value: - stringValue: 809e4615-fc78-494b-abde-5263a1ee31a0 + stringValue: 2a992a4b-e975-4d29-b17c-3288b0043a0e - key: metric_source value: stringValue: kubernetes @@ -1891,20 +1873,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 15a2d46d1533c984b885e8f767c50e7601241f026c5698a80cda3db5d2321c83 + stringValue: 50b808281e95714072a15e744c529bba4c3462043e9bfb45b2bb451ea787dd73 - key: container.image.name value: - stringValue: quay.io/splunko11ytest/nodejs_test + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: latest + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -1916,7 +1898,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: nodejs-test + stringValue: otel-collector - key: k8s.namespace.name value: stringValue: default @@ -1925,10 +1907,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: nodejs-test-56b74df9ff-klgm7 + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-59674d665-tc4ss - key: k8s.pod.uid value: - stringValue: 89b46064-f8e5-46d6-b54e-79a1cc7948df + stringValue: c751b5f2-0b6b-418f-b71b-606330a83430 - key: metric_source value: stringValue: kubernetes @@ -1936,20 +1918,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 + stringValue: 5eb6066cb19df83f23df91e843654e456e334a1fb7eadf2c699fcf5106506b74 - key: container.image.name value: stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: 0.113.0 + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -1970,10 +1952,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj + stringValue: sock-splunk-otel-collector-agent-6zqmr - key: k8s.pod.uid value: - stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c + stringValue: 4d0c9753-5f12-4ffb-a9c7-da33948c8c7f - key: metric_source value: stringValue: kubernetes @@ -1981,20 +1963,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 3917f7d60ba632ba65e55bdd2a69a516383982f5f6b555eaf86a688cea4c5515 + stringValue: 691a447c6f0f931e19e15831507ebf96e742c77315fe17f14dffcfa9dc148f4f - key: container.image.name value: - stringValue: quay.io/jetstack/cert-manager-webhook + stringValue: docker.io/kindest/local-path-provisioner - key: container.image.tag value: - stringValue: v1.14.4 + stringValue: v20230511-dc714da8 - key: customfield1 value: stringValue: customvalue1 @@ -2006,19 +1988,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: cert-manager-webhook + stringValue: local-path-provisioner - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: local-path-storage - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-webhook-7f9f8648b9-dzq2l + stringValue: local-path-provisioner-6f8956fb48-nl7dt - key: k8s.pod.uid value: - stringValue: 18826d35-ead9-4637-a492-8d78156959f6 + stringValue: e6f3d494-3e4e-4ed4-9f3b-054c9675a785 - key: metric_source value: stringValue: kubernetes @@ -2026,20 +2008,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 + stringValue: 73670e794cf1a1c6b3e5a410cec652bcdb78c02a4793c3ed5beb4e93a0b4c8a2 - key: container.image.name value: - stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator + stringValue: registry.k8s.io/kube-proxy - key: container.image.tag value: - stringValue: 0.116.0 + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -2051,19 +2033,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: manager + stringValue: kube-proxy - key: k8s.namespace.name value: - stringValue: default + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: kube-proxy-w4pq8 - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: 7b25c613-e655-4679-9ad5-0ef0419f6aa7 - key: metric_source value: stringValue: kubernetes @@ -2071,17 +2053,17 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 55d8886e226d55a1a0f3e3f0bdc56d0e2a32c9ffdf6712c9e99c9873528f5b12 + stringValue: 844cdc39f6c38dfee2410beaf59f434017f01f1600a03601d06acc022b65e7de - key: container.image.name value: - stringValue: registry.k8s.io/kube-scheduler + stringValue: registry.k8s.io/kube-controller-manager - key: container.image.tag value: stringValue: v1.29.0 @@ -2096,7 +2078,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-scheduler + stringValue: kube-controller-manager - key: k8s.namespace.name value: stringValue: kube-system @@ -2105,10 +2087,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-scheduler-kind-control-plane + stringValue: kube-controller-manager-kind-control-plane - key: k8s.pod.uid value: - stringValue: e8a35d2f-5099-41cb-97c1-7c20e9236fd5 + stringValue: 80d09637-319b-4208-a062-393533fbf2ac - key: metric_source value: stringValue: kubernetes @@ -2116,20 +2098,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 56c1f8ae24c544d0a51aabda6f200e7a491c22eeca767de49504632b0340e09c + stringValue: afc7413fdca060dddc8be931db2d2974c5348f058d7267fd13830251ad78fd69 - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator - key: container.image.tag value: - stringValue: v1.11.1 + stringValue: 0.110.0 - key: customfield1 value: stringValue: customvalue1 @@ -2141,19 +2123,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + stringValue: manager - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-8w7l8 + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -2161,20 +2143,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 + stringValue: b1e0c654ae5151efa4dbd3ca88f6bdf1e1f332393ed611328099b9fff0ad87d5 - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: quay.io/jetstack/cert-manager-controller - key: container.image.tag value: - stringValue: 0.113.0 + stringValue: v1.14.4 - key: customfield1 value: stringValue: customvalue1 @@ -2186,19 +2168,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: cert-manager-controller - key: k8s.namespace.name value: - stringValue: default + stringValue: cert-manager - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-rm8js + stringValue: cert-manager-67c98b89c8-g22j7 - key: k8s.pod.uid value: - stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 + stringValue: 3ece0e7b-6f24-4bed-a51e-e0fcf81a5c26 - key: metric_source value: stringValue: kubernetes @@ -2206,20 +2188,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 6e3992f7de7d0611933767e445edc89ecc7b6bb086fbf9b82b7daba89df7f09a + stringValue: c260d848811ce9c4f324718840ef701569a548e7e769be413d466e1586b6606c - key: container.image.name value: - stringValue: registry.k8s.io/kube-apiserver + stringValue: registry.k8s.io/etcd - key: container.image.tag value: - stringValue: v1.29.0 + stringValue: 3.5.10-0 - key: customfield1 value: stringValue: customvalue1 @@ -2231,7 +2213,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-apiserver + stringValue: etcd - key: k8s.namespace.name value: stringValue: kube-system @@ -2240,10 +2222,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-apiserver-kind-control-plane + stringValue: etcd-kind-control-plane - key: k8s.pod.uid value: - stringValue: 830a2042-aec1-4502-8d2b-d96852bd105c + stringValue: 53f92a39-92e9-4ae4-b3e5-6f32ac6fb705 - key: metric_source value: stringValue: kubernetes @@ -2251,20 +2233,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac + stringValue: d5b98f53c3b61471d924aa1eeaed91f8c4d71119b776d409386b14fa851e0344 - key: container.image.name value: - stringValue: quay.io/brancz/kube-rbac-proxy + stringValue: quay.io/jetstack/cert-manager-cainjector - key: container.image.tag value: - stringValue: v0.18.1 + stringValue: v1.14.4 - key: customfield1 value: stringValue: customvalue1 @@ -2276,19 +2258,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-rbac-proxy + stringValue: cert-manager-cainjector - key: k8s.namespace.name value: - stringValue: default + stringValue: cert-manager - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: cert-manager-cainjector-5c5695d979-4gn7v - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: c67d333e-6b13-4486-8b36-c9622a794d1f - key: metric_source value: stringValue: kubernetes @@ -2296,20 +2278,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7930a07f4cb7fc9ea6159a3bc7c7485170f728ddc0cc0c50a6f571737c846e50 + stringValue: e26453afede340680ddff9cde881a88300ce30b850f21e7f05703c0c341e3726 - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: registry.k8s.io/kube-scheduler - key: container.image.tag value: - stringValue: v1.11.1 + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -2321,7 +2303,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + stringValue: kube-scheduler - key: k8s.namespace.name value: stringValue: kube-system @@ -2330,10 +2312,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-wqrsn + stringValue: kube-scheduler-kind-control-plane - key: k8s.pod.uid value: - stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 + stringValue: 966d4695-d046-4416-927d-8162dbaab50b - key: metric_source value: stringValue: kubernetes @@ -2341,20 +2323,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7c2550f56f151c838ab4ddc00211edd3c1be45f992c4058759cc01e387c45e01 + stringValue: f463a6bb8e665cbe3927a3e0ae395a54955cdf6228c2957da1e925807d9f816f - key: container.image.name value: - stringValue: registry.k8s.io/kube-proxy + stringValue: quay.io/brancz/kube-rbac-proxy - key: container.image.tag value: - stringValue: v1.29.0 + stringValue: v0.18.1 - key: customfield1 value: stringValue: customvalue1 @@ -2366,19 +2348,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-proxy + stringValue: kube-rbac-proxy - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-proxy-tw2lr + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: 7b0de1af-95c5-4994-9e01-f16b25ba49c6 + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -2386,20 +2368,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7d239fcb5583c18f213c32748d6c127ee36426aa9fcfffb0533bf7a84d5f7194 + stringValue: f981b0fd2934f376127fbe25d53a62eb4637e7a6eb554b34aa0cbfe0d1fadaa3 - key: container.image.name value: - stringValue: quay.io/jetstack/cert-manager-controller + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: v1.14.4 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -2411,19 +2393,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: cert-manager-controller + stringValue: coredns - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-67c98b89c8-5dtxs + stringValue: coredns-76f75df574-2gdxf - key: k8s.pod.uid value: - stringValue: 9cd699ef-f612-4879-b1ce-04303d7b4f6c + stringValue: cbe6b06d-1d5a-4235-8ded-a3d2b497138d - key: metric_source value: stringValue: kubernetes @@ -2431,20 +2413,23 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + name: k8s.container.restarts + - gauge: + dataPoints: + - asDouble: 0.1 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7f2567f3445e62535252ac97a6b0b3eea860f21dffa4902c947c17d55a26ac2e + stringValue: 08712584e737fe9c61d06351d7b205d6344a412e5f8231863cd7b591d2ebe729 - key: container.image.name value: - stringValue: quay.io/jetstack/cert-manager-cainjector + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: v1.14.4 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -2456,19 +2441,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: cert-manager-cainjector + stringValue: coredns - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-cainjector-5c5695d979-h7c2k + stringValue: coredns-76f75df574-j6vjb - key: k8s.pod.uid value: - stringValue: 5a67f651-add4-43f6-b2a7-06afb5fef617 + stringValue: c0dd36df-1e0c-4feb-b1b7-419681595dd2 - key: metric_source value: stringValue: kubernetes @@ -2476,20 +2461,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asDouble: 0.1 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 82b7c36c5da8acb40f66be5b2c70430bb7d7c84e128bede5bc325f94653839bd + stringValue: 15ff7b753a6950674b9e78ec8274e73bd135699d5e2e5744e22287da8d27fadc - key: container.image.name value: - stringValue: registry.k8s.io/etcd + stringValue: docker.io/kindest/kindnetd - key: container.image.tag value: - stringValue: 3.5.10-0 + stringValue: v20230511-dc714da8 - key: customfield1 value: stringValue: customvalue1 @@ -2501,7 +2486,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: etcd + stringValue: kindnet-cni - key: k8s.namespace.name value: stringValue: kube-system @@ -2510,10 +2495,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: etcd-kind-control-plane + stringValue: kindnet-b4pd7 - key: k8s.pod.uid value: - stringValue: 68828dad-2ca2-47ca-914e-f41cfd58244b + stringValue: 5c574843-642d-4ba6-bfd8-9aa160827de3 - key: metric_source value: stringValue: kubernetes @@ -2521,20 +2506,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asDouble: 0.25 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 9001b70e2443496dc4699019d151e7ac94b30c7555c9f95e0e9fb569a3c5985c + stringValue: 2a5891c6055ebcb2aab796034ab47117e538b784d450d036bcba82caf56c0de2 - key: container.image.name value: - stringValue: quay.io/splunko11ytest/httpd + stringValue: registry.k8s.io/kube-apiserver - key: container.image.tag value: - stringValue: latest + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -2546,19 +2531,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: prometheus-annotation-test + stringValue: kube-apiserver - key: k8s.namespace.name value: - stringValue: default + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: prometheus-annotation-test-cfc77c7b9-86vg5 + stringValue: kube-apiserver-kind-control-plane - key: k8s.pod.uid value: - stringValue: 558db553-7cc6-44f2-9039-f81e43d0bc25 + stringValue: a7644cdf-3844-439c-bd8f-dc0760623723 - key: metric_source value: stringValue: kubernetes @@ -2566,20 +2551,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asDouble: 0.2 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: ad771ceab740a5a51b3c5e67b8ff36743ef86776f28942fcb28b22c4f37b309d + stringValue: 50b808281e95714072a15e744c529bba4c3462043e9bfb45b2bb451ea787dd73 - key: container.image.name value: - stringValue: quay.io/splunko11ytest/dotnet_test + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: latest + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -2591,7 +2576,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: dotnet-test + stringValue: otel-collector - key: k8s.namespace.name value: stringValue: default @@ -2600,10 +2585,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: dotnet-test-5479c475fc-qpr6c + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-59674d665-tc4ss - key: k8s.pod.uid value: - stringValue: bd83fe1d-786d-4da7-889e-cee578e6f2f8 + stringValue: c751b5f2-0b6b-418f-b71b-606330a83430 - key: metric_source value: stringValue: kubernetes @@ -2611,20 +2596,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asDouble: 0.2 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: af7431cadfb9e46f242716f4588134dee006641290c1405f88e468beb2fa559d + stringValue: 5eb6066cb19df83f23df91e843654e456e334a1fb7eadf2c699fcf5106506b74 - key: container.image.name value: - stringValue: ghcr.io/open-telemetry/opentelemetry-operator/target-allocator + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: v0.105.0 + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -2636,7 +2621,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: targetallocator + stringValue: otel-collector - key: k8s.namespace.name value: stringValue: default @@ -2645,10 +2630,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4-rpj6g + stringValue: sock-splunk-otel-collector-agent-6zqmr - key: k8s.pod.uid value: - stringValue: 4e7bef74-37d2-4380-b5d7-c0ce1476be95 + stringValue: 4d0c9753-5f12-4ffb-a9c7-da33948c8c7f - key: metric_source value: stringValue: kubernetes @@ -2656,14 +2641,14 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asDouble: 0.2 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e2ea169579f87203b926492d33050b56fd253b2e07bd66730339fc75a2fd4621 + stringValue: 844cdc39f6c38dfee2410beaf59f434017f01f1600a03601d06acc022b65e7de - key: container.image.name value: stringValue: registry.k8s.io/kube-controller-manager @@ -2693,7 +2678,7 @@ resourceMetrics: stringValue: kube-controller-manager-kind-control-plane - key: k8s.pod.uid value: - stringValue: 5c40ac1e-5432-4249-b754-4795b36d4c99 + stringValue: 80d09637-319b-4208-a062-393533fbf2ac - key: metric_source value: stringValue: kubernetes @@ -2701,20 +2686,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asDouble: 0.1 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e6089c166eeb1823e805c0845d43a777ae52ac054fe8ecc33805204995de77e7 + stringValue: afc7413fdca060dddc8be931db2d2974c5348f058d7267fd13830251ad78fd69 - key: container.image.name value: - stringValue: quay.io/splunko11ytest/java_test + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator - key: container.image.tag value: - stringValue: latest + stringValue: 0.110.0 - key: customfield1 value: stringValue: customvalue1 @@ -2726,7 +2711,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: java-test + stringValue: manager - key: k8s.namespace.name value: stringValue: default @@ -2735,10 +2720,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: java-test-5c4d6479b8-j7fmr + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: 63ca8dfe-1747-4097-9b9d-071b1cb3b891 + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -2746,20 +2731,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asDouble: 0.1 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 + stringValue: c260d848811ce9c4f324718840ef701569a548e7e769be413d466e1586b6606c - key: container.image.name value: - stringValue: docker.io/kindest/kindnetd + stringValue: registry.k8s.io/etcd - key: container.image.tag value: - stringValue: v20230511-dc714da8 + stringValue: 3.5.10-0 - key: customfield1 value: stringValue: customvalue1 @@ -2771,7 +2756,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kindnet-cni + stringValue: etcd - key: k8s.namespace.name value: stringValue: kube-system @@ -2780,148 +2765,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kindnet-9xfzp - - key: k8s.pod.uid - value: - stringValue: f8149b85-dab1-482e-a735-0c29a953061b - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - name: k8s.container.ready - - gauge: - dataPoints: - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: container.id - value: - stringValue: 029555a4cfeffe308062ebe8f6f59e116313d079efd1a802064ed30e6e155150 - - key: container.image.name - value: - stringValue: docker.io/kindest/local-path-provisioner - - key: container.image.tag - value: - stringValue: v20230511-dc714da8 - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.container.name - value: - stringValue: local-path-provisioner - - key: k8s.namespace.name - value: - stringValue: local-path-storage - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: local-path-provisioner-6f8956fb48-wgzmr - - key: k8s.pod.uid - value: - stringValue: 809e4615-fc78-494b-abde-5263a1ee31a0 - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: container.id - value: - stringValue: 15a2d46d1533c984b885e8f767c50e7601241f026c5698a80cda3db5d2321c83 - - key: container.image.name - value: - stringValue: quay.io/splunko11ytest/nodejs_test - - key: container.image.tag - value: - stringValue: latest - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.container.name - value: - stringValue: nodejs-test - - key: k8s.namespace.name - value: - stringValue: default - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: nodejs-test-56b74df9ff-klgm7 - - key: k8s.pod.uid - value: - stringValue: 89b46064-f8e5-46d6-b54e-79a1cc7948df - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: container.id - value: - stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 - - key: container.image.name - value: - stringValue: quay.io/signalfx/splunk-otel-collector - - key: container.image.tag - value: - stringValue: 0.113.0 - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.container.name - value: - stringValue: otel-collector - - key: k8s.namespace.name - value: - stringValue: default - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj + stringValue: etcd-kind-control-plane - key: k8s.pod.uid value: - stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c + stringValue: 53f92a39-92e9-4ae4-b3e5-6f32ac6fb705 - key: metric_source value: stringValue: kubernetes @@ -2929,20 +2776,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asDouble: 0.1 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 3917f7d60ba632ba65e55bdd2a69a516383982f5f6b555eaf86a688cea4c5515 + stringValue: e26453afede340680ddff9cde881a88300ce30b850f21e7f05703c0c341e3726 - key: container.image.name value: - stringValue: quay.io/jetstack/cert-manager-webhook + stringValue: registry.k8s.io/kube-scheduler - key: container.image.tag value: - stringValue: v1.14.4 + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -2954,19 +2801,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: cert-manager-webhook + stringValue: kube-scheduler - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-webhook-7f9f8648b9-dzq2l + stringValue: kube-scheduler-kind-control-plane - key: k8s.pod.uid value: - stringValue: 18826d35-ead9-4637-a492-8d78156959f6 + stringValue: 966d4695-d046-4416-927d-8162dbaab50b - key: metric_source value: stringValue: kubernetes @@ -2974,20 +2821,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asDouble: 0.005 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 + stringValue: f463a6bb8e665cbe3927a3e0ae395a54955cdf6228c2957da1e925807d9f816f - key: container.image.name value: - stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator + stringValue: quay.io/brancz/kube-rbac-proxy - key: container.image.tag value: - stringValue: 0.116.0 + stringValue: v0.18.1 - key: customfield1 value: stringValue: customvalue1 @@ -2999,7 +2846,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: manager + stringValue: kube-rbac-proxy - key: k8s.namespace.name value: stringValue: default @@ -3008,10 +2855,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -3019,20 +2866,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asDouble: 0.1 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 55d8886e226d55a1a0f3e3f0bdc56d0e2a32c9ffdf6712c9e99c9873528f5b12 + stringValue: f981b0fd2934f376127fbe25d53a62eb4637e7a6eb554b34aa0cbfe0d1fadaa3 - key: container.image.name value: - stringValue: registry.k8s.io/kube-scheduler + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: v1.29.0 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -3044,7 +2891,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-scheduler + stringValue: coredns - key: k8s.namespace.name value: stringValue: kube-system @@ -3053,10 +2900,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-scheduler-kind-control-plane + stringValue: coredns-76f75df574-2gdxf - key: k8s.pod.uid value: - stringValue: e8a35d2f-5099-41cb-97c1-7c20e9236fd5 + stringValue: cbe6b06d-1d5a-4235-8ded-a3d2b497138d - key: metric_source value: stringValue: kubernetes @@ -3064,14 +2911,17 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + name: k8s.container.cpu_request + - gauge: + dataPoints: + - asInt: "178257920" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 56c1f8ae24c544d0a51aabda6f200e7a491c22eeca767de49504632b0340e09c + stringValue: 08712584e737fe9c61d06351d7b205d6344a412e5f8231863cd7b591d2ebe729 - key: container.image.name value: stringValue: registry.k8s.io/coredns/coredns @@ -3098,10 +2948,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-8w7l8 + stringValue: coredns-76f75df574-j6vjb - key: k8s.pod.uid value: - stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 + stringValue: c0dd36df-1e0c-4feb-b1b7-419681595dd2 - key: metric_source value: stringValue: kubernetes @@ -3109,20 +2959,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "52428800" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 + stringValue: 15ff7b753a6950674b9e78ec8274e73bd135699d5e2e5744e22287da8d27fadc - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: docker.io/kindest/kindnetd - key: container.image.tag value: - stringValue: 0.113.0 + stringValue: v20230511-dc714da8 - key: customfield1 value: stringValue: customvalue1 @@ -3134,19 +2984,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: kindnet-cni - key: k8s.namespace.name value: - stringValue: default + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-rm8js + stringValue: kindnet-b4pd7 - key: k8s.pod.uid value: - stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 + stringValue: 5c574843-642d-4ba6-bfd8-9aa160827de3 - key: metric_source value: stringValue: kubernetes @@ -3154,20 +3004,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "524288000" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 6e3992f7de7d0611933767e445edc89ecc7b6bb086fbf9b82b7daba89df7f09a + stringValue: 50b808281e95714072a15e744c529bba4c3462043e9bfb45b2bb451ea787dd73 - key: container.image.name value: - stringValue: registry.k8s.io/kube-apiserver + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: v1.29.0 + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -3179,19 +3029,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-apiserver + stringValue: otel-collector - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-apiserver-kind-control-plane + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-59674d665-tc4ss - key: k8s.pod.uid value: - stringValue: 830a2042-aec1-4502-8d2b-d96852bd105c + stringValue: c751b5f2-0b6b-418f-b71b-606330a83430 - key: metric_source value: stringValue: kubernetes @@ -3199,20 +3049,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "524288000" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac + stringValue: 5eb6066cb19df83f23df91e843654e456e334a1fb7eadf2c699fcf5106506b74 - key: container.image.name value: - stringValue: quay.io/brancz/kube-rbac-proxy + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: v0.18.1 + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -3224,7 +3074,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-rbac-proxy + stringValue: otel-collector - key: k8s.namespace.name value: stringValue: default @@ -3233,10 +3083,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: sock-splunk-otel-collector-agent-6zqmr - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: 4d0c9753-5f12-4ffb-a9c7-da33948c8c7f - key: metric_source value: stringValue: kubernetes @@ -3244,20 +3094,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "134217728" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7930a07f4cb7fc9ea6159a3bc7c7485170f728ddc0cc0c50a6f571737c846e50 + stringValue: afc7413fdca060dddc8be931db2d2974c5348f058d7267fd13830251ad78fd69 - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator - key: container.image.tag value: - stringValue: v1.11.1 + stringValue: 0.110.0 - key: customfield1 value: stringValue: customvalue1 @@ -3269,19 +3119,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + stringValue: manager - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-wqrsn + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -3289,20 +3139,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "134217728" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7c2550f56f151c838ab4ddc00211edd3c1be45f992c4058759cc01e387c45e01 + stringValue: f463a6bb8e665cbe3927a3e0ae395a54955cdf6228c2957da1e925807d9f816f - key: container.image.name value: - stringValue: registry.k8s.io/kube-proxy + stringValue: quay.io/brancz/kube-rbac-proxy - key: container.image.tag value: - stringValue: v1.29.0 + stringValue: v0.18.1 - key: customfield1 value: stringValue: customvalue1 @@ -3314,19 +3164,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-proxy + stringValue: kube-rbac-proxy - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-proxy-tw2lr + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: 7b0de1af-95c5-4994-9e01-f16b25ba49c6 + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -3334,20 +3184,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "178257920" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7d239fcb5583c18f213c32748d6c127ee36426aa9fcfffb0533bf7a84d5f7194 + stringValue: f981b0fd2934f376127fbe25d53a62eb4637e7a6eb554b34aa0cbfe0d1fadaa3 - key: container.image.name value: - stringValue: quay.io/jetstack/cert-manager-controller + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: v1.14.4 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -3359,19 +3209,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: cert-manager-controller + stringValue: coredns - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-67c98b89c8-5dtxs + stringValue: coredns-76f75df574-2gdxf - key: k8s.pod.uid value: - stringValue: 9cd699ef-f612-4879-b1ce-04303d7b4f6c + stringValue: cbe6b06d-1d5a-4235-8ded-a3d2b497138d - key: metric_source value: stringValue: kubernetes @@ -3379,20 +3229,23 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + name: k8s.container.memory_limit + - gauge: + dataPoints: + - asInt: "73400320" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7f2567f3445e62535252ac97a6b0b3eea860f21dffa4902c947c17d55a26ac2e + stringValue: 08712584e737fe9c61d06351d7b205d6344a412e5f8231863cd7b591d2ebe729 - key: container.image.name value: - stringValue: quay.io/jetstack/cert-manager-cainjector + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: v1.14.4 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -3404,19 +3257,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: cert-manager-cainjector + stringValue: coredns - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-cainjector-5c5695d979-h7c2k + stringValue: coredns-76f75df574-j6vjb - key: k8s.pod.uid value: - stringValue: 5a67f651-add4-43f6-b2a7-06afb5fef617 + stringValue: c0dd36df-1e0c-4feb-b1b7-419681595dd2 - key: metric_source value: stringValue: kubernetes @@ -3424,20 +3277,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "52428800" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 82b7c36c5da8acb40f66be5b2c70430bb7d7c84e128bede5bc325f94653839bd + stringValue: 15ff7b753a6950674b9e78ec8274e73bd135699d5e2e5744e22287da8d27fadc - key: container.image.name value: - stringValue: registry.k8s.io/etcd + stringValue: docker.io/kindest/kindnetd - key: container.image.tag value: - stringValue: 3.5.10-0 + stringValue: v20230511-dc714da8 - key: customfield1 value: stringValue: customvalue1 @@ -3449,7 +3302,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: etcd + stringValue: kindnet-cni - key: k8s.namespace.name value: stringValue: kube-system @@ -3458,10 +3311,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: etcd-kind-control-plane + stringValue: kindnet-b4pd7 - key: k8s.pod.uid value: - stringValue: 68828dad-2ca2-47ca-914e-f41cfd58244b + stringValue: 5c574843-642d-4ba6-bfd8-9aa160827de3 - key: metric_source value: stringValue: kubernetes @@ -3469,20 +3322,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "524288000" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 9001b70e2443496dc4699019d151e7ac94b30c7555c9f95e0e9fb569a3c5985c + stringValue: 50b808281e95714072a15e744c529bba4c3462043e9bfb45b2bb451ea787dd73 - key: container.image.name value: - stringValue: quay.io/splunko11ytest/httpd + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: latest + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -3494,7 +3347,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: prometheus-annotation-test + stringValue: otel-collector - key: k8s.namespace.name value: stringValue: default @@ -3503,10 +3356,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: prometheus-annotation-test-cfc77c7b9-86vg5 + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-59674d665-tc4ss - key: k8s.pod.uid value: - stringValue: 558db553-7cc6-44f2-9039-f81e43d0bc25 + stringValue: c751b5f2-0b6b-418f-b71b-606330a83430 - key: metric_source value: stringValue: kubernetes @@ -3514,20 +3367,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "524288000" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: ad771ceab740a5a51b3c5e67b8ff36743ef86776f28942fcb28b22c4f37b309d + stringValue: 5eb6066cb19df83f23df91e843654e456e334a1fb7eadf2c699fcf5106506b74 - key: container.image.name value: - stringValue: quay.io/splunko11ytest/dotnet_test + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: latest + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -3539,7 +3392,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: dotnet-test + stringValue: otel-collector - key: k8s.namespace.name value: stringValue: default @@ -3548,10 +3401,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: dotnet-test-5479c475fc-qpr6c + stringValue: sock-splunk-otel-collector-agent-6zqmr - key: k8s.pod.uid value: - stringValue: bd83fe1d-786d-4da7-889e-cee578e6f2f8 + stringValue: 4d0c9753-5f12-4ffb-a9c7-da33948c8c7f - key: metric_source value: stringValue: kubernetes @@ -3559,20 +3412,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "67108864" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: af7431cadfb9e46f242716f4588134dee006641290c1405f88e468beb2fa559d + stringValue: afc7413fdca060dddc8be931db2d2974c5348f058d7267fd13830251ad78fd69 - key: container.image.name value: - stringValue: ghcr.io/open-telemetry/opentelemetry-operator/target-allocator + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator - key: container.image.tag value: - stringValue: v0.105.0 + stringValue: 0.110.0 - key: customfield1 value: stringValue: customvalue1 @@ -3584,7 +3437,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: targetallocator + stringValue: manager - key: k8s.namespace.name value: stringValue: default @@ -3593,10 +3446,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4-rpj6g + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: 4e7bef74-37d2-4380-b5d7-c0ce1476be95 + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -3604,20 +3457,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "104857600" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e2ea169579f87203b926492d33050b56fd253b2e07bd66730339fc75a2fd4621 + stringValue: c260d848811ce9c4f324718840ef701569a548e7e769be413d466e1586b6606c - key: container.image.name value: - stringValue: registry.k8s.io/kube-controller-manager + stringValue: registry.k8s.io/etcd - key: container.image.tag value: - stringValue: v1.29.0 + stringValue: 3.5.10-0 - key: customfield1 value: stringValue: customvalue1 @@ -3629,7 +3482,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-controller-manager + stringValue: etcd - key: k8s.namespace.name value: stringValue: kube-system @@ -3638,10 +3491,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-controller-manager-kind-control-plane + stringValue: etcd-kind-control-plane - key: k8s.pod.uid value: - stringValue: 5c40ac1e-5432-4249-b754-4795b36d4c99 + stringValue: 53f92a39-92e9-4ae4-b3e5-6f32ac6fb705 - key: metric_source value: stringValue: kubernetes @@ -3649,20 +3502,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "67108864" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e6089c166eeb1823e805c0845d43a777ae52ac054fe8ecc33805204995de77e7 + stringValue: f463a6bb8e665cbe3927a3e0ae395a54955cdf6228c2957da1e925807d9f816f - key: container.image.name value: - stringValue: quay.io/splunko11ytest/java_test + stringValue: quay.io/brancz/kube-rbac-proxy - key: container.image.tag value: - stringValue: latest + stringValue: v0.18.1 - key: customfield1 value: stringValue: customvalue1 @@ -3674,7 +3527,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: java-test + stringValue: kube-rbac-proxy - key: k8s.namespace.name value: stringValue: default @@ -3683,10 +3536,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: java-test-5c4d6479b8-j7fmr + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: 63ca8dfe-1747-4097-9b9d-071b1cb3b891 + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -3694,20 +3547,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "73400320" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 + stringValue: f981b0fd2934f376127fbe25d53a62eb4637e7a6eb554b34aa0cbfe0d1fadaa3 - key: container.image.name value: - stringValue: docker.io/kindest/kindnetd + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: v20230511-dc714da8 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -3719,7 +3572,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kindnet-cni + stringValue: coredns - key: k8s.namespace.name value: stringValue: kube-system @@ -3728,10 +3581,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kindnet-9xfzp + stringValue: coredns-76f75df574-2gdxf - key: k8s.pod.uid value: - stringValue: f8149b85-dab1-482e-a735-0c29a953061b + stringValue: cbe6b06d-1d5a-4235-8ded-a3d2b497138d - key: metric_source value: stringValue: kubernetes @@ -3739,23 +3592,23 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - name: k8s.container.restarts + name: k8s.container.memory_request - gauge: dataPoints: - - asDouble: 0.2 + - asDouble: 0.1 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 + stringValue: 15ff7b753a6950674b9e78ec8274e73bd135699d5e2e5744e22287da8d27fadc - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: docker.io/kindest/kindnetd - key: container.image.tag value: - stringValue: 0.113.0 + stringValue: v20230511-dc714da8 - key: customfield1 value: stringValue: customvalue1 @@ -3767,19 +3620,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: kindnet-cni - key: k8s.namespace.name value: - stringValue: default + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj + stringValue: kindnet-b4pd7 - key: k8s.pod.uid value: - stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c + stringValue: 5c574843-642d-4ba6-bfd8-9aa160827de3 - key: metric_source value: stringValue: kubernetes @@ -3787,20 +3640,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.1 + - asDouble: 0.2 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 + stringValue: 50b808281e95714072a15e744c529bba4c3462043e9bfb45b2bb451ea787dd73 - key: container.image.name value: - stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: 0.116.0 + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -3812,7 +3665,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: manager + stringValue: otel-collector - key: k8s.namespace.name value: stringValue: default @@ -3821,10 +3674,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-59674d665-tc4ss - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: c751b5f2-0b6b-418f-b71b-606330a83430 - key: metric_source value: stringValue: kubernetes @@ -3839,13 +3692,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 + stringValue: 5eb6066cb19df83f23df91e843654e456e334a1fb7eadf2c699fcf5106506b74 - key: container.image.name value: stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: 0.113.0 + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -3866,10 +3719,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-rm8js + stringValue: sock-splunk-otel-collector-agent-6zqmr - key: k8s.pod.uid value: - stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 + stringValue: 4d0c9753-5f12-4ffb-a9c7-da33948c8c7f - key: metric_source value: stringValue: kubernetes @@ -3877,20 +3730,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.5 + - asDouble: 0.1 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac + stringValue: afc7413fdca060dddc8be931db2d2974c5348f058d7267fd13830251ad78fd69 - key: container.image.name value: - stringValue: quay.io/brancz/kube-rbac-proxy + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator - key: container.image.tag value: - stringValue: v0.18.1 + stringValue: 0.110.0 - key: customfield1 value: stringValue: customvalue1 @@ -3902,7 +3755,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-rbac-proxy + stringValue: manager - key: k8s.namespace.name value: stringValue: default @@ -3911,10 +3764,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -3922,20 +3775,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.1 + - asDouble: 0.5 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 + stringValue: f463a6bb8e665cbe3927a3e0ae395a54955cdf6228c2957da1e925807d9f816f - key: container.image.name value: - stringValue: docker.io/kindest/kindnetd + stringValue: quay.io/brancz/kube-rbac-proxy - key: container.image.tag value: - stringValue: v20230511-dc714da8 + stringValue: v0.18.1 - key: customfield1 value: stringValue: customvalue1 @@ -3947,19 +3800,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kindnet-cni + stringValue: kube-rbac-proxy - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kindnet-9xfzp + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: f8149b85-dab1-482e-a735-0c29a953061b + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -3989,7 +3842,7 @@ resourceMetrics: stringValue: cert-manager - key: k8s.namespace.uid value: - stringValue: 0333ceb4-8c45-4aa4-9f30-e4611c1ba293 + stringValue: c5128346-03c0-426c-946c-72769ec6cd0e - key: metric_source value: stringValue: kubernetes @@ -4016,7 +3869,7 @@ resourceMetrics: stringValue: default - key: k8s.namespace.uid value: - stringValue: ec9c3e28-5900-4a19-8673-1849ea3d4822 + stringValue: 4041dac3-5365-4b4f-9727-edba78c405d3 - key: metric_source value: stringValue: kubernetes @@ -4043,7 +3896,7 @@ resourceMetrics: stringValue: kube-node-lease - key: k8s.namespace.uid value: - stringValue: e8150282-bdde-4b60-b5da-5258f5acd360 + stringValue: b5b704d1-3e89-4ff8-b3f1-813dcc762d1e - key: metric_source value: stringValue: kubernetes @@ -4070,7 +3923,7 @@ resourceMetrics: stringValue: kube-public - key: k8s.namespace.uid value: - stringValue: e85b2621-5db2-409c-8c4b-800a6b0ffda5 + stringValue: 28138937-7c9c-495b-ab56-238c299ab484 - key: metric_source value: stringValue: kubernetes @@ -4097,7 +3950,7 @@ resourceMetrics: stringValue: kube-system - key: k8s.namespace.uid value: - stringValue: 138057a9-3b09-42fe-88c0-c450ab0c801e + stringValue: 8819e4f7-83c6-42b6-a46f-e8049bf06498 - key: metric_source value: stringValue: kubernetes @@ -4124,7 +3977,7 @@ resourceMetrics: stringValue: local-path-storage - key: k8s.namespace.uid value: - stringValue: 43f6f82f-b222-4526-b1e9-f254882a95b3 + stringValue: 7e93cb2d-58bd-4e65-8238-ae99e4291970 - key: metric_source value: stringValue: kubernetes @@ -4151,7 +4004,7 @@ resourceMetrics: stringValue: ns-w-exclude - key: k8s.namespace.uid value: - stringValue: 1552ccba-ac45-4694-ab67-186fe7e3fb91 + stringValue: 7f169b1a-7749-49f9-9fd6-eb9ba7a5ccff - key: metric_source value: stringValue: kubernetes @@ -4178,7 +4031,7 @@ resourceMetrics: stringValue: ns-w-index - key: k8s.namespace.uid value: - stringValue: dcb6c3e6-3e4c-4cc2-9199-d2c0162ce5eb + stringValue: 71da66e5-f834-40e4-8326-72bf8be9876c - key: metric_source value: stringValue: kubernetes @@ -4205,7 +4058,7 @@ resourceMetrics: stringValue: ns-wo-index - key: k8s.namespace.uid value: - stringValue: 3d3deb73-f969-4042-9ee6-2760ce818ee9 + stringValue: cd4399fe-98cd-405c-9e87-142cfc4d78fb - key: metric_source value: stringValue: kubernetes @@ -4235,7 +4088,7 @@ resourceMetrics: stringValue: cert-manager - key: k8s.deployment.uid value: - stringValue: 0411cd92-0907-4a24-b0aa-50471f720a3f + stringValue: 56b9ded6-8560-4fa3-836e-45e2ad634a81 - key: k8s.namespace.name value: stringValue: cert-manager @@ -4265,7 +4118,7 @@ resourceMetrics: stringValue: cert-manager-cainjector - key: k8s.deployment.uid value: - stringValue: f3c40b77-bed5-4643-a630-851aa418186a + stringValue: b5cb47e6-3199-4e9c-838e-c438dd2061b1 - key: k8s.namespace.name value: stringValue: cert-manager @@ -4295,7 +4148,7 @@ resourceMetrics: stringValue: cert-manager-webhook - key: k8s.deployment.uid value: - stringValue: 0afc64c5-b327-4611-871d-e9061e984240 + stringValue: b9e1669e-b519-4c4d-b070-69f0197443b7 - key: k8s.namespace.name value: stringValue: cert-manager @@ -4325,7 +4178,7 @@ resourceMetrics: stringValue: coredns - key: k8s.deployment.uid value: - stringValue: 01557217-542e-474e-8163-3c904c2ff031 + stringValue: 8c6389e5-f954-4872-9674-6ffbac869c8f - key: k8s.namespace.name value: stringValue: kube-system @@ -4355,7 +4208,7 @@ resourceMetrics: stringValue: dotnet-test - key: k8s.deployment.uid value: - stringValue: 6100532a-534f-4b43-9e3f-c04717efc797 + stringValue: 0e90fccf-fbb6-49ae-93c6-f628023425fe - key: k8s.namespace.name value: stringValue: default @@ -4366,7 +4219,7 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: @@ -4385,7 +4238,7 @@ resourceMetrics: stringValue: java-test - key: k8s.deployment.uid value: - stringValue: 3bbabf1d-aeee-4015-8c01-f4d41b89fea3 + stringValue: 0395fdfe-3f1d-404c-b310-a246ea64e9af - key: k8s.namespace.name value: stringValue: default @@ -4415,7 +4268,7 @@ resourceMetrics: stringValue: local-path-provisioner - key: k8s.deployment.uid value: - stringValue: 1ef5c8b1-0c0f-4573-b3b7-c1f8cfb48378 + stringValue: 2b348aa7-d104-4ecf-9fd9-093202f4e23b - key: k8s.namespace.name value: stringValue: local-path-storage @@ -4426,7 +4279,7 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: @@ -4445,7 +4298,7 @@ resourceMetrics: stringValue: nodejs-test - key: k8s.deployment.uid value: - stringValue: 91f0e846-8d66-4d2d-8a65-ad0866560012 + stringValue: af333bc4-b7fd-4e04-83bb-b0f056aa4065 - key: k8s.namespace.name value: stringValue: default @@ -4475,7 +4328,37 @@ resourceMetrics: stringValue: prometheus-annotation-test - key: k8s.deployment.uid value: - stringValue: 42a2b74d-011e-4076-9ecc-74c483fd78f2 + stringValue: 00b5a036-dbd8-4066-a0e8-b3c41a4403f3 + - key: k8s.namespace.name + value: + stringValue: default + - key: metric_source + value: + stringValue: kubernetes + - key: receiver + value: + stringValue: k8scluster + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.deployment.name + value: + stringValue: python-test + - key: k8s.deployment.uid + value: + stringValue: 85a71a2c-c0f7-4a5f-99ef-06a704b7783e - key: k8s.namespace.name value: stringValue: default @@ -4505,7 +4388,7 @@ resourceMetrics: stringValue: sock-operator - key: k8s.deployment.uid value: - stringValue: 0ac9fc1b-abf1-487c-bae3-c85c85b215fb + stringValue: fbc6eaca-0133-4f3d-95ab-b4bce254f467 - key: k8s.namespace.name value: stringValue: default @@ -4535,7 +4418,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-k8s-cluster-receiver - key: k8s.deployment.uid value: - stringValue: 25b2563f-f023-40bb-864d-177c08d1c00c + stringValue: f3c90ac1-c9de-46a6-9479-d8326990abc7 - key: k8s.namespace.name value: stringValue: default @@ -4565,7 +4448,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-ta - key: k8s.deployment.uid value: - stringValue: fa1fd60a-a693-4842-8cc4-9dd96d675d06 + stringValue: b8a608b5-b7cf-4ec6-abbe-2f4d9b17948e - key: k8s.namespace.name value: stringValue: default @@ -4598,7 +4481,7 @@ resourceMetrics: stringValue: cert-manager - key: k8s.deployment.uid value: - stringValue: 0411cd92-0907-4a24-b0aa-50471f720a3f + stringValue: 56b9ded6-8560-4fa3-836e-45e2ad634a81 - key: k8s.namespace.name value: stringValue: cert-manager @@ -4628,7 +4511,7 @@ resourceMetrics: stringValue: cert-manager-cainjector - key: k8s.deployment.uid value: - stringValue: f3c40b77-bed5-4643-a630-851aa418186a + stringValue: b5cb47e6-3199-4e9c-838e-c438dd2061b1 - key: k8s.namespace.name value: stringValue: cert-manager @@ -4658,7 +4541,7 @@ resourceMetrics: stringValue: cert-manager-webhook - key: k8s.deployment.uid value: - stringValue: 0afc64c5-b327-4611-871d-e9061e984240 + stringValue: b9e1669e-b519-4c4d-b070-69f0197443b7 - key: k8s.namespace.name value: stringValue: cert-manager @@ -4688,7 +4571,7 @@ resourceMetrics: stringValue: coredns - key: k8s.deployment.uid value: - stringValue: 01557217-542e-474e-8163-3c904c2ff031 + stringValue: 8c6389e5-f954-4872-9674-6ffbac869c8f - key: k8s.namespace.name value: stringValue: kube-system @@ -4718,7 +4601,7 @@ resourceMetrics: stringValue: dotnet-test - key: k8s.deployment.uid value: - stringValue: 6100532a-534f-4b43-9e3f-c04717efc797 + stringValue: 0e90fccf-fbb6-49ae-93c6-f628023425fe - key: k8s.namespace.name value: stringValue: default @@ -4748,7 +4631,7 @@ resourceMetrics: stringValue: java-test - key: k8s.deployment.uid value: - stringValue: 3bbabf1d-aeee-4015-8c01-f4d41b89fea3 + stringValue: 0395fdfe-3f1d-404c-b310-a246ea64e9af - key: k8s.namespace.name value: stringValue: default @@ -4778,7 +4661,7 @@ resourceMetrics: stringValue: local-path-provisioner - key: k8s.deployment.uid value: - stringValue: 1ef5c8b1-0c0f-4573-b3b7-c1f8cfb48378 + stringValue: 2b348aa7-d104-4ecf-9fd9-093202f4e23b - key: k8s.namespace.name value: stringValue: local-path-storage @@ -4808,7 +4691,7 @@ resourceMetrics: stringValue: nodejs-test - key: k8s.deployment.uid value: - stringValue: 91f0e846-8d66-4d2d-8a65-ad0866560012 + stringValue: af333bc4-b7fd-4e04-83bb-b0f056aa4065 - key: k8s.namespace.name value: stringValue: default @@ -4838,7 +4721,37 @@ resourceMetrics: stringValue: prometheus-annotation-test - key: k8s.deployment.uid value: - stringValue: 42a2b74d-011e-4076-9ecc-74c483fd78f2 + stringValue: 00b5a036-dbd8-4066-a0e8-b3c41a4403f3 + - key: k8s.namespace.name + value: + stringValue: default + - key: metric_source + value: + stringValue: kubernetes + - key: receiver + value: + stringValue: k8scluster + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.deployment.name + value: + stringValue: python-test + - key: k8s.deployment.uid + value: + stringValue: 85a71a2c-c0f7-4a5f-99ef-06a704b7783e - key: k8s.namespace.name value: stringValue: default @@ -4868,7 +4781,7 @@ resourceMetrics: stringValue: sock-operator - key: k8s.deployment.uid value: - stringValue: 0ac9fc1b-abf1-487c-bae3-c85c85b215fb + stringValue: fbc6eaca-0133-4f3d-95ab-b4bce254f467 - key: k8s.namespace.name value: stringValue: default @@ -4898,7 +4811,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-k8s-cluster-receiver - key: k8s.deployment.uid value: - stringValue: 25b2563f-f023-40bb-864d-177c08d1c00c + stringValue: f3c90ac1-c9de-46a6-9479-d8326990abc7 - key: k8s.namespace.name value: stringValue: default @@ -4928,7 +4841,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-ta - key: k8s.deployment.uid value: - stringValue: fa1fd60a-a693-4842-8cc4-9dd96d675d06 + stringValue: b8a608b5-b7cf-4ec6-abbe-2f4d9b17948e - key: k8s.namespace.name value: stringValue: default @@ -4964,7 +4877,7 @@ resourceMetrics: stringValue: cert-manager-67c98b89c8 - key: k8s.replicaset.uid value: - stringValue: 7b42f487-280b-430a-b670-ef8f7795c516 + stringValue: 7955e1fb-2dec-4ddb-86af-77fe5d382112 - key: metric_source value: stringValue: kubernetes @@ -4994,7 +4907,7 @@ resourceMetrics: stringValue: cert-manager-cainjector-5c5695d979 - key: k8s.replicaset.uid value: - stringValue: 1d8e77d4-b9be-45d2-b4e0-eea4fffcdacd + stringValue: b7c85c60-c92c-470a-b95c-01b6409ae208 - key: metric_source value: stringValue: kubernetes @@ -5024,7 +4937,7 @@ resourceMetrics: stringValue: cert-manager-webhook-7f9f8648b9 - key: k8s.replicaset.uid value: - stringValue: 42043811-fc43-4ad0-87a3-d747d51c350f + stringValue: 51f90033-ab38-47ef-b7d9-8872b5ee6a7b - key: metric_source value: stringValue: kubernetes @@ -5054,7 +4967,7 @@ resourceMetrics: stringValue: dotnet-test-5479c475fc - key: k8s.replicaset.uid value: - stringValue: e7be52a8-2517-412c-b27a-6294600ee83e + stringValue: 4fce340a-8293-41a7-a36e-c81037c9df20 - key: metric_source value: stringValue: kubernetes @@ -5062,7 +4975,7 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: @@ -5084,7 +4997,7 @@ resourceMetrics: stringValue: java-test-5c4d6479b8 - key: k8s.replicaset.uid value: - stringValue: ba3559c4-273c-44ee-aedf-ade722b9b2e3 + stringValue: da7e6a0b-c32f-4981-85b2-746d5b7ddb4f - key: metric_source value: stringValue: kubernetes @@ -5092,7 +5005,7 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: @@ -5114,7 +5027,7 @@ resourceMetrics: stringValue: nodejs-test-56b74df9ff - key: k8s.replicaset.uid value: - stringValue: f6207697-49cc-40af-b3ac-f97f228b0025 + stringValue: 96f4ceac-b674-40f6-8609-19a547166de4 - key: metric_source value: stringValue: kubernetes @@ -5144,7 +5057,37 @@ resourceMetrics: stringValue: prometheus-annotation-test-cfc77c7b9 - key: k8s.replicaset.uid value: - stringValue: b93b7ff1-5ecf-49d3-af69-8df26c73d3e8 + stringValue: a5a38e86-34fd-4e48-9fe4-f994b133de5f + - key: metric_source + value: + stringValue: kubernetes + - key: receiver + value: + stringValue: k8scluster + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: default + - key: k8s.replicaset.name + value: + stringValue: python-test-84856b7fcd + - key: k8s.replicaset.uid + value: + stringValue: 2025ae2b-3811-4eb8-950f-e923912c56c7 - key: metric_source value: stringValue: kubernetes @@ -5171,10 +5114,10 @@ resourceMetrics: stringValue: default - key: k8s.replicaset.name value: - stringValue: sock-operator-768dffbcb8 + stringValue: sock-operator-869bddff5c - key: k8s.replicaset.uid value: - stringValue: 86862db6-a9f6-433f-9dff-cfcad25b822e + stringValue: 41d19321-fa22-4cf9-8677-c492ae1bce8a - key: metric_source value: stringValue: kubernetes @@ -5201,10 +5144,10 @@ resourceMetrics: stringValue: default - key: k8s.replicaset.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95 + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-59674d665 - key: k8s.replicaset.uid value: - stringValue: ed48b4b4-1bf7-4a60-9b69-543007ef27bc + stringValue: c9e689cb-687c-44ec-b64f-2bebcb8c5dea - key: metric_source value: stringValue: kubernetes @@ -5234,7 +5177,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4 - key: k8s.replicaset.uid value: - stringValue: b2d75e9f-1de8-4549-91ca-4ff6f282c319 + stringValue: 2efa97c0-3892-4823-92c9-ee8428e7b418 - key: metric_source value: stringValue: kubernetes @@ -5264,7 +5207,7 @@ resourceMetrics: stringValue: coredns-76f75df574 - key: k8s.replicaset.uid value: - stringValue: af56eca2-a6ec-485b-8547-f065708c4887 + stringValue: f0dd7d65-4a71-4526-902f-b7bb2efbff68 - key: metric_source value: stringValue: kubernetes @@ -5294,7 +5237,7 @@ resourceMetrics: stringValue: local-path-provisioner-6f8956fb48 - key: k8s.replicaset.uid value: - stringValue: bc94f22c-80e8-4eaa-8ee2-f7c1109a5ffc + stringValue: ca1166e9-97b0-4381-94c9-556666747e39 - key: metric_source value: stringValue: kubernetes @@ -5327,7 +5270,7 @@ resourceMetrics: stringValue: cert-manager-67c98b89c8 - key: k8s.replicaset.uid value: - stringValue: 7b42f487-280b-430a-b670-ef8f7795c516 + stringValue: 7955e1fb-2dec-4ddb-86af-77fe5d382112 - key: metric_source value: stringValue: kubernetes @@ -5357,7 +5300,7 @@ resourceMetrics: stringValue: cert-manager-cainjector-5c5695d979 - key: k8s.replicaset.uid value: - stringValue: 1d8e77d4-b9be-45d2-b4e0-eea4fffcdacd + stringValue: b7c85c60-c92c-470a-b95c-01b6409ae208 - key: metric_source value: stringValue: kubernetes @@ -5387,7 +5330,7 @@ resourceMetrics: stringValue: cert-manager-webhook-7f9f8648b9 - key: k8s.replicaset.uid value: - stringValue: 42043811-fc43-4ad0-87a3-d747d51c350f + stringValue: 51f90033-ab38-47ef-b7d9-8872b5ee6a7b - key: metric_source value: stringValue: kubernetes @@ -5417,7 +5360,7 @@ resourceMetrics: stringValue: dotnet-test-5479c475fc - key: k8s.replicaset.uid value: - stringValue: e7be52a8-2517-412c-b27a-6294600ee83e + stringValue: 4fce340a-8293-41a7-a36e-c81037c9df20 - key: metric_source value: stringValue: kubernetes @@ -5447,7 +5390,7 @@ resourceMetrics: stringValue: java-test-5c4d6479b8 - key: k8s.replicaset.uid value: - stringValue: ba3559c4-273c-44ee-aedf-ade722b9b2e3 + stringValue: da7e6a0b-c32f-4981-85b2-746d5b7ddb4f - key: metric_source value: stringValue: kubernetes @@ -5477,7 +5420,7 @@ resourceMetrics: stringValue: nodejs-test-56b74df9ff - key: k8s.replicaset.uid value: - stringValue: f6207697-49cc-40af-b3ac-f97f228b0025 + stringValue: 96f4ceac-b674-40f6-8609-19a547166de4 - key: metric_source value: stringValue: kubernetes @@ -5507,7 +5450,37 @@ resourceMetrics: stringValue: prometheus-annotation-test-cfc77c7b9 - key: k8s.replicaset.uid value: - stringValue: b93b7ff1-5ecf-49d3-af69-8df26c73d3e8 + stringValue: a5a38e86-34fd-4e48-9fe4-f994b133de5f + - key: metric_source + value: + stringValue: kubernetes + - key: receiver + value: + stringValue: k8scluster + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: default + - key: k8s.replicaset.name + value: + stringValue: python-test-84856b7fcd + - key: k8s.replicaset.uid + value: + stringValue: 2025ae2b-3811-4eb8-950f-e923912c56c7 - key: metric_source value: stringValue: kubernetes @@ -5534,10 +5507,10 @@ resourceMetrics: stringValue: default - key: k8s.replicaset.name value: - stringValue: sock-operator-768dffbcb8 + stringValue: sock-operator-869bddff5c - key: k8s.replicaset.uid value: - stringValue: 86862db6-a9f6-433f-9dff-cfcad25b822e + stringValue: 41d19321-fa22-4cf9-8677-c492ae1bce8a - key: metric_source value: stringValue: kubernetes @@ -5564,10 +5537,10 @@ resourceMetrics: stringValue: default - key: k8s.replicaset.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95 + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-59674d665 - key: k8s.replicaset.uid value: - stringValue: ed48b4b4-1bf7-4a60-9b69-543007ef27bc + stringValue: c9e689cb-687c-44ec-b64f-2bebcb8c5dea - key: metric_source value: stringValue: kubernetes @@ -5597,7 +5570,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4 - key: k8s.replicaset.uid value: - stringValue: b2d75e9f-1de8-4549-91ca-4ff6f282c319 + stringValue: 2efa97c0-3892-4823-92c9-ee8428e7b418 - key: metric_source value: stringValue: kubernetes @@ -5627,7 +5600,7 @@ resourceMetrics: stringValue: coredns-76f75df574 - key: k8s.replicaset.uid value: - stringValue: af56eca2-a6ec-485b-8547-f065708c4887 + stringValue: f0dd7d65-4a71-4526-902f-b7bb2efbff68 - key: metric_source value: stringValue: kubernetes @@ -5657,7 +5630,7 @@ resourceMetrics: stringValue: local-path-provisioner-6f8956fb48 - key: k8s.replicaset.uid value: - stringValue: bc94f22c-80e8-4eaa-8ee2-f7c1109a5ffc + stringValue: ca1166e9-97b0-4381-94c9-556666747e39 - key: metric_source value: stringValue: kubernetes @@ -5687,7 +5660,7 @@ resourceMetrics: stringValue: kindnet - key: k8s.daemonset.uid value: - stringValue: 2415753e-2368-49e3-af97-0f97ed8328d7 + stringValue: 5a546023-5d3b-4040-ab88-614a405accc2 - key: k8s.namespace.name value: stringValue: kube-system @@ -5717,7 +5690,7 @@ resourceMetrics: stringValue: kube-proxy - key: k8s.daemonset.uid value: - stringValue: 708ab381-ee91-4714-9baf-a934e69aaf04 + stringValue: 0759557b-9910-4f4e-809b-e26348076bb1 - key: k8s.namespace.name value: stringValue: kube-system @@ -5747,7 +5720,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-agent - key: k8s.daemonset.uid value: - stringValue: 524dde1d-442c-45d0-ba4e-cdd483ed7e59 + stringValue: 92574a9b-f1b0-4eb5-bf59-ca54edef93ef - key: k8s.namespace.name value: stringValue: default @@ -5780,7 +5753,7 @@ resourceMetrics: stringValue: kindnet - key: k8s.daemonset.uid value: - stringValue: 2415753e-2368-49e3-af97-0f97ed8328d7 + stringValue: 5a546023-5d3b-4040-ab88-614a405accc2 - key: k8s.namespace.name value: stringValue: kube-system @@ -5810,7 +5783,7 @@ resourceMetrics: stringValue: kube-proxy - key: k8s.daemonset.uid value: - stringValue: 708ab381-ee91-4714-9baf-a934e69aaf04 + stringValue: 0759557b-9910-4f4e-809b-e26348076bb1 - key: k8s.namespace.name value: stringValue: kube-system @@ -5840,7 +5813,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-agent - key: k8s.daemonset.uid value: - stringValue: 524dde1d-442c-45d0-ba4e-cdd483ed7e59 + stringValue: 92574a9b-f1b0-4eb5-bf59-ca54edef93ef - key: k8s.namespace.name value: stringValue: default @@ -5873,7 +5846,7 @@ resourceMetrics: stringValue: kindnet - key: k8s.daemonset.uid value: - stringValue: 2415753e-2368-49e3-af97-0f97ed8328d7 + stringValue: 5a546023-5d3b-4040-ab88-614a405accc2 - key: k8s.namespace.name value: stringValue: kube-system @@ -5903,7 +5876,7 @@ resourceMetrics: stringValue: kube-proxy - key: k8s.daemonset.uid value: - stringValue: 708ab381-ee91-4714-9baf-a934e69aaf04 + stringValue: 0759557b-9910-4f4e-809b-e26348076bb1 - key: k8s.namespace.name value: stringValue: kube-system @@ -5933,7 +5906,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-agent - key: k8s.daemonset.uid value: - stringValue: 524dde1d-442c-45d0-ba4e-cdd483ed7e59 + stringValue: 92574a9b-f1b0-4eb5-bf59-ca54edef93ef - key: k8s.namespace.name value: stringValue: default @@ -5966,7 +5939,7 @@ resourceMetrics: stringValue: kindnet - key: k8s.daemonset.uid value: - stringValue: 2415753e-2368-49e3-af97-0f97ed8328d7 + stringValue: 5a546023-5d3b-4040-ab88-614a405accc2 - key: k8s.namespace.name value: stringValue: kube-system @@ -5996,7 +5969,7 @@ resourceMetrics: stringValue: kube-proxy - key: k8s.daemonset.uid value: - stringValue: 708ab381-ee91-4714-9baf-a934e69aaf04 + stringValue: 0759557b-9910-4f4e-809b-e26348076bb1 - key: k8s.namespace.name value: stringValue: kube-system @@ -6026,7 +5999,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-agent - key: k8s.daemonset.uid value: - stringValue: 524dde1d-442c-45d0-ba4e-cdd483ed7e59 + stringValue: 92574a9b-f1b0-4eb5-bf59-ca54edef93ef - key: k8s.namespace.name value: stringValue: default @@ -6059,7 +6032,7 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.node.uid value: - stringValue: 15985013-7564-45b7-a2ae-3b5f5d9b93e5 + stringValue: e879976d-29c7-441f-926a-e4d94e6e3795 - key: metric_source value: stringValue: kubernetes diff --git a/functional_tests/testdata/expected_eks_values/expected_python_traces.yaml b/functional_tests/testdata/expected_eks_values/expected_python_traces.yaml new file mode 100644 index 000000000..f347c4768 --- /dev/null +++ b/functional_tests/testdata/expected_eks_values/expected_python_traces.yaml @@ -0,0 +1,334 @@ +resourceSpans: + - resource: + attributes: + - key: telemetry.sdk.language + value: + stringValue: python + - key: telemetry.sdk.name + value: + stringValue: opentelemetry + - key: telemetry.sdk.version + value: + stringValue: 1.29.0 + - key: splunk.zc.method + value: + stringValue: autoinstrumentation-python:0.50b0 + - key: k8s.container.name + value: + stringValue: python-test + - key: k8s.deployment.name + value: + stringValue: python-test + - key: k8s.namespace.name + value: + stringValue: default + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: python-test-84856b7fcd-vv6sr + - key: k8s.replicaset.name + value: + stringValue: python-test-84856b7fcd + - key: service.instance.id + value: + stringValue: default.python-test-84856b7fcd-vv6sr.python-test + - key: service.version + value: + stringValue: latest + - key: service.name + value: + stringValue: python-test + - key: telemetry.auto.version + value: + stringValue: 0.50b0 + - key: k8s.pod.ip + value: + stringValue: 10.244.0.40 + - key: k8s.pod.labels.app + value: + stringValue: python-test + - key: k8s.pod.uid + value: + stringValue: 455974ad-35dc-49d3-92eb-de0ab69d5836 + - key: container.image.name + value: + stringValue: quay.io/splunko11ytest/python_test + - key: container.image.tag + value: + stringValue: latest + - key: container.id + value: + stringValue: 7f281a7b98f45c809a54ff01599c93b7976aced06e44dddd6066606e088b3a5a + - key: host.name + value: + stringValue: kind-control-plane + - key: os.type + value: + stringValue: linux + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: deployment.environment + value: + stringValue: dev + schemaUrl: https://opentelemetry.io/schemas/1.6.1 + scopeSpans: + - scope: + name: opentelemetry.instrumentation.flask + spans: + - attributes: + - key: http.method + value: + stringValue: GET + - key: http.server_name + value: + stringValue: 127.0.0.1 + - key: http.scheme + value: + stringValue: http + - key: net.host.name + value: + stringValue: localhost:5000 + - key: http.host + value: + stringValue: localhost:5000 + - key: net.host.port + value: + intValue: "5000" + - key: http.target + value: + stringValue: / + - key: net.peer.ip + value: + stringValue: 127.0.0.1 + - key: net.peer.port + value: + intValue: "42002" + - key: http.user_agent + value: + stringValue: curl/8.11.1 + - key: http.flavor + value: + stringValue: "1.1" + - key: http.route + value: + stringValue: / + - key: http.status_code + value: + intValue: "200" + endTimeUnixNano: "1738537999011463717" + flags: 256 + kind: 2 + name: GET / + parentSpanId: "" + spanId: 1707330433e4d8e4 + startTimeUnixNano: "1738537999010832884" + status: {} + traceId: 9b9872fbb0a1bf639c46a8db05415a38 + - attributes: + - key: http.method + value: + stringValue: GET + - key: http.server_name + value: + stringValue: 127.0.0.1 + - key: http.scheme + value: + stringValue: http + - key: net.host.name + value: + stringValue: localhost:5000 + - key: http.host + value: + stringValue: localhost:5000 + - key: net.host.port + value: + intValue: "5000" + - key: http.target + value: + stringValue: / + - key: net.peer.ip + value: + stringValue: 127.0.0.1 + - key: net.peer.port + value: + intValue: "42014" + - key: http.user_agent + value: + stringValue: curl/8.11.1 + - key: http.flavor + value: + stringValue: "1.1" + - key: http.route + value: + stringValue: / + - key: http.status_code + value: + intValue: "200" + endTimeUnixNano: "1738538000017988093" + flags: 256 + kind: 2 + name: GET / + parentSpanId: "" + spanId: 24821892cdeac83e + startTimeUnixNano: "1738538000017615009" + status: {} + traceId: 4f20271b39b951106833307921d8b6a3 + - attributes: + - key: http.method + value: + stringValue: GET + - key: http.server_name + value: + stringValue: 127.0.0.1 + - key: http.scheme + value: + stringValue: http + - key: net.host.name + value: + stringValue: localhost:5000 + - key: http.host + value: + stringValue: localhost:5000 + - key: net.host.port + value: + intValue: "5000" + - key: http.target + value: + stringValue: / + - key: net.peer.ip + value: + stringValue: 127.0.0.1 + - key: net.peer.port + value: + intValue: "42020" + - key: http.user_agent + value: + stringValue: curl/8.11.1 + - key: http.flavor + value: + stringValue: "1.1" + - key: http.route + value: + stringValue: / + - key: http.status_code + value: + intValue: "200" + endTimeUnixNano: "1738538001015676218" + flags: 256 + kind: 2 + name: GET / + parentSpanId: "" + spanId: 48bd69405e485012 + startTimeUnixNano: "1738538001015309135" + status: {} + traceId: f894e8387b27d59608a80a0178fdd74c + - attributes: + - key: http.method + value: + stringValue: GET + - key: http.server_name + value: + stringValue: 127.0.0.1 + - key: http.scheme + value: + stringValue: http + - key: net.host.name + value: + stringValue: localhost:5000 + - key: http.host + value: + stringValue: localhost:5000 + - key: net.host.port + value: + intValue: "5000" + - key: http.target + value: + stringValue: / + - key: net.peer.ip + value: + stringValue: 127.0.0.1 + - key: net.peer.port + value: + intValue: "42022" + - key: http.user_agent + value: + stringValue: curl/8.11.1 + - key: http.flavor + value: + stringValue: "1.1" + - key: http.route + value: + stringValue: / + - key: http.status_code + value: + intValue: "200" + endTimeUnixNano: "1738538002016890344" + flags: 256 + kind: 2 + name: GET / + parentSpanId: "" + spanId: 091d856d5d7a5316 + startTimeUnixNano: "1738538002016388510" + status: {} + traceId: 43cf54af7ede4e91aae44c225e54c713 + - attributes: + - key: http.method + value: + stringValue: GET + - key: http.server_name + value: + stringValue: 127.0.0.1 + - key: http.scheme + value: + stringValue: http + - key: net.host.name + value: + stringValue: localhost:5000 + - key: http.host + value: + stringValue: localhost:5000 + - key: net.host.port + value: + intValue: "5000" + - key: http.target + value: + stringValue: / + - key: net.peer.ip + value: + stringValue: 127.0.0.1 + - key: net.peer.port + value: + intValue: "60058" + - key: http.user_agent + value: + stringValue: curl/8.11.1 + - key: http.flavor + value: + stringValue: "1.1" + - key: http.route + value: + stringValue: / + - key: http.status_code + value: + intValue: "200" + endTimeUnixNano: "1738538003018585678" + flags: 256 + kind: 2 + name: GET / + parentSpanId: "" + spanId: 6c482df1d62e30d1 + startTimeUnixNano: "1738538003018231178" + status: {} + traceId: d7fdbbf42252c71fb442dc5796cf64d4 diff --git a/functional_tests/testdata/expected_kind_values/expected_cluster_receiver.yaml b/functional_tests/testdata/expected_kind_values/expected_cluster_receiver.yaml index 10ec768cd..ede506712 100644 --- a/functional_tests/testdata/expected_kind_values/expected_cluster_receiver.yaml +++ b/functional_tests/testdata/expected_kind_values/expected_cluster_receiver.yaml @@ -26,10 +26,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-67c98b89c8-5dtxs + stringValue: cert-manager-67c98b89c8-g22j7 - key: k8s.pod.uid value: - stringValue: 9cd699ef-f612-4879-b1ce-04303d7b4f6c + stringValue: 3ece0e7b-6f24-4bed-a51e-e0fcf81a5c26 - key: metric_source value: stringValue: kubernetes @@ -59,10 +59,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-cainjector-5c5695d979-h7c2k + stringValue: cert-manager-cainjector-5c5695d979-4gn7v - key: k8s.pod.uid value: - stringValue: 5a67f651-add4-43f6-b2a7-06afb5fef617 + stringValue: c67d333e-6b13-4486-8b36-c9622a794d1f - key: metric_source value: stringValue: kubernetes @@ -92,10 +92,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-webhook-7f9f8648b9-dzq2l + stringValue: cert-manager-webhook-7f9f8648b9-pjrwc - key: k8s.pod.uid value: - stringValue: 18826d35-ead9-4637-a492-8d78156959f6 + stringValue: abf6af19-643c-4f88-96ae-beedc60f4f8e - key: metric_source value: stringValue: kubernetes @@ -125,10 +125,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: dotnet-test-5479c475fc-qpr6c + stringValue: dotnet-test-5479c475fc-8xpcw - key: k8s.pod.uid value: - stringValue: bd83fe1d-786d-4da7-889e-cee578e6f2f8 + stringValue: c28fcde1-8d20-4cfc-a975-8b2c08de526f - key: metric_source value: stringValue: kubernetes @@ -136,7 +136,7 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "2" + - asInt: "1" attributes: - key: cluster_name value: @@ -158,10 +158,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: java-test-5c4d6479b8-j7fmr + stringValue: java-test-5c4d6479b8-9w6fc - key: k8s.pod.uid value: - stringValue: 63ca8dfe-1747-4097-9b9d-071b1cb3b891 + stringValue: 789291d9-e227-4281-ac96-3ade5e1512d6 - key: metric_source value: stringValue: kubernetes @@ -169,7 +169,7 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "2" + - asInt: "1" attributes: - key: cluster_name value: @@ -191,10 +191,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: nodejs-test-56b74df9ff-klgm7 + stringValue: nodejs-test-56b74df9ff-t7bkb - key: k8s.pod.uid value: - stringValue: 89b46064-f8e5-46d6-b54e-79a1cc7948df + stringValue: 7d03f4f5-6a6a-4dcb-a398-6b066c184e2f - key: metric_source value: stringValue: kubernetes @@ -224,10 +224,43 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: prometheus-annotation-test-cfc77c7b9-86vg5 + stringValue: prometheus-annotation-test-cfc77c7b9-xhlhw + - key: k8s.pod.uid + value: + stringValue: 2a992a4b-e975-4d29-b17c-3288b0043a0e + - key: metric_source + value: + stringValue: kubernetes + - key: receiver + value: + stringValue: k8scluster + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: default + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: python-test-84856b7fcd-f9ptl - key: k8s.pod.uid value: - stringValue: 558db553-7cc6-44f2-9039-f81e43d0bc25 + stringValue: 11e120c9-cd51-4872-8020-22153b6f4f19 - key: metric_source value: stringValue: kubernetes @@ -257,10 +290,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -290,10 +323,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-rm8js + stringValue: sock-splunk-otel-collector-agent-6zqmr - key: k8s.pod.uid value: - stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 + stringValue: 4d0c9753-5f12-4ffb-a9c7-da33948c8c7f - key: metric_source value: stringValue: kubernetes @@ -323,10 +356,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-59674d665-tc4ss - key: k8s.pod.uid value: - stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c + stringValue: c751b5f2-0b6b-418f-b71b-606330a83430 - key: metric_source value: stringValue: kubernetes @@ -356,10 +389,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4-rpj6g + stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4-26wmp - key: k8s.pod.uid value: - stringValue: 4e7bef74-37d2-4380-b5d7-c0ce1476be95 + stringValue: f4b8c20e-1dad-4eec-a849-6a15e9a08156 - key: metric_source value: stringValue: kubernetes @@ -389,10 +422,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-8w7l8 + stringValue: coredns-76f75df574-2gdxf - key: k8s.pod.uid value: - stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 + stringValue: cbe6b06d-1d5a-4235-8ded-a3d2b497138d - key: metric_source value: stringValue: kubernetes @@ -422,10 +455,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-wqrsn + stringValue: coredns-76f75df574-j6vjb - key: k8s.pod.uid value: - stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 + stringValue: c0dd36df-1e0c-4feb-b1b7-419681595dd2 - key: metric_source value: stringValue: kubernetes @@ -458,7 +491,7 @@ resourceMetrics: stringValue: etcd-kind-control-plane - key: k8s.pod.uid value: - stringValue: 68828dad-2ca2-47ca-914e-f41cfd58244b + stringValue: 53f92a39-92e9-4ae4-b3e5-6f32ac6fb705 - key: metric_source value: stringValue: kubernetes @@ -488,10 +521,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kindnet-9xfzp + stringValue: kindnet-b4pd7 - key: k8s.pod.uid value: - stringValue: f8149b85-dab1-482e-a735-0c29a953061b + stringValue: 5c574843-642d-4ba6-bfd8-9aa160827de3 - key: metric_source value: stringValue: kubernetes @@ -524,7 +557,7 @@ resourceMetrics: stringValue: kube-apiserver-kind-control-plane - key: k8s.pod.uid value: - stringValue: 830a2042-aec1-4502-8d2b-d96852bd105c + stringValue: a7644cdf-3844-439c-bd8f-dc0760623723 - key: metric_source value: stringValue: kubernetes @@ -557,7 +590,7 @@ resourceMetrics: stringValue: kube-controller-manager-kind-control-plane - key: k8s.pod.uid value: - stringValue: 5c40ac1e-5432-4249-b754-4795b36d4c99 + stringValue: 80d09637-319b-4208-a062-393533fbf2ac - key: metric_source value: stringValue: kubernetes @@ -587,10 +620,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-proxy-tw2lr + stringValue: kube-proxy-w4pq8 - key: k8s.pod.uid value: - stringValue: 7b0de1af-95c5-4994-9e01-f16b25ba49c6 + stringValue: 7b25c613-e655-4679-9ad5-0ef0419f6aa7 - key: metric_source value: stringValue: kubernetes @@ -623,7 +656,7 @@ resourceMetrics: stringValue: kube-scheduler-kind-control-plane - key: k8s.pod.uid value: - stringValue: e8a35d2f-5099-41cb-97c1-7c20e9236fd5 + stringValue: 966d4695-d046-4416-927d-8162dbaab50b - key: metric_source value: stringValue: kubernetes @@ -653,10 +686,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: local-path-provisioner-6f8956fb48-wgzmr + stringValue: local-path-provisioner-6f8956fb48-nl7dt - key: k8s.pod.uid value: - stringValue: 809e4615-fc78-494b-abde-5263a1ee31a0 + stringValue: e6f3d494-3e4e-4ed4-9f3b-054c9675a785 - key: metric_source value: stringValue: kubernetes @@ -667,20 +700,20 @@ resourceMetrics: name: k8s.pod.phase - gauge: dataPoints: - - asDouble: 0.2 + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 + stringValue: 003d3d03d91f08af36531d2160e85d83b3c497371e47017e42f21c538694b1b7 - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: quay.io/splunko11ytest/dotnet_test - key: container.image.tag value: - stringValue: 0.113.0 + stringValue: latest - key: customfield1 value: stringValue: customvalue1 @@ -692,7 +725,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: dotnet-test - key: k8s.namespace.name value: stringValue: default @@ -701,10 +734,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj + stringValue: dotnet-test-5479c475fc-8xpcw - key: k8s.pod.uid value: - stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c + stringValue: c28fcde1-8d20-4cfc-a975-8b2c08de526f - key: metric_source value: stringValue: kubernetes @@ -712,20 +745,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.1 + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 + stringValue: 004389c5623d8aabe7d71bb7a33cf264f880ed445a250140b686b6faf5976200 - key: container.image.name value: - stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/target-allocator - key: container.image.tag value: - stringValue: 0.116.0 + stringValue: v0.105.0 - key: customfield1 value: stringValue: customvalue1 @@ -737,7 +770,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: manager + stringValue: targetallocator - key: k8s.namespace.name value: stringValue: default @@ -746,10 +779,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4-26wmp - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: f4b8c20e-1dad-4eec-a849-6a15e9a08156 - key: metric_source value: stringValue: kubernetes @@ -757,20 +790,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.1 + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 55d8886e226d55a1a0f3e3f0bdc56d0e2a32c9ffdf6712c9e99c9873528f5b12 + stringValue: 08712584e737fe9c61d06351d7b205d6344a412e5f8231863cd7b591d2ebe729 - key: container.image.name value: - stringValue: registry.k8s.io/kube-scheduler + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: v1.29.0 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -782,7 +815,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-scheduler + stringValue: coredns - key: k8s.namespace.name value: stringValue: kube-system @@ -791,10 +824,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-scheduler-kind-control-plane + stringValue: coredns-76f75df574-j6vjb - key: k8s.pod.uid value: - stringValue: e8a35d2f-5099-41cb-97c1-7c20e9236fd5 + stringValue: c0dd36df-1e0c-4feb-b1b7-419681595dd2 - key: metric_source value: stringValue: kubernetes @@ -802,20 +835,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.1 + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 56c1f8ae24c544d0a51aabda6f200e7a491c22eeca767de49504632b0340e09c + stringValue: 15ff7b753a6950674b9e78ec8274e73bd135699d5e2e5744e22287da8d27fadc - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: docker.io/kindest/kindnetd - key: container.image.tag value: - stringValue: v1.11.1 + stringValue: v20230511-dc714da8 - key: customfield1 value: stringValue: customvalue1 @@ -827,7 +860,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + stringValue: kindnet-cni - key: k8s.namespace.name value: stringValue: kube-system @@ -836,10 +869,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-8w7l8 + stringValue: kindnet-b4pd7 - key: k8s.pod.uid value: - stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 + stringValue: 5c574843-642d-4ba6-bfd8-9aa160827de3 - key: metric_source value: stringValue: kubernetes @@ -847,20 +880,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.2 + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 + stringValue: 2676c08fa9df42f1b1d7dd55856946f2e9440b793ce98424575b56ffb32b991f - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: quay.io/jetstack/cert-manager-webhook - key: container.image.tag value: - stringValue: 0.113.0 + stringValue: v1.14.4 - key: customfield1 value: stringValue: customvalue1 @@ -872,19 +905,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: cert-manager-webhook - key: k8s.namespace.name value: - stringValue: default + stringValue: cert-manager - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-rm8js + stringValue: cert-manager-webhook-7f9f8648b9-pjrwc - key: k8s.pod.uid value: - stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 + stringValue: abf6af19-643c-4f88-96ae-beedc60f4f8e - key: metric_source value: stringValue: kubernetes @@ -892,14 +925,14 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.25 + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 6e3992f7de7d0611933767e445edc89ecc7b6bb086fbf9b82b7daba89df7f09a + stringValue: 2a5891c6055ebcb2aab796034ab47117e538b784d450d036bcba82caf56c0de2 - key: container.image.name value: stringValue: registry.k8s.io/kube-apiserver @@ -929,7 +962,7 @@ resourceMetrics: stringValue: kube-apiserver-kind-control-plane - key: k8s.pod.uid value: - stringValue: 830a2042-aec1-4502-8d2b-d96852bd105c + stringValue: a7644cdf-3844-439c-bd8f-dc0760623723 - key: metric_source value: stringValue: kubernetes @@ -937,20 +970,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.005 + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac + stringValue: 33ab498497f4b362fd83ec43b1e0c1ad26d37e8dfb524e3ba2a19050a5af59ed - key: container.image.name value: - stringValue: quay.io/brancz/kube-rbac-proxy + stringValue: quay.io/splunko11ytest/httpd - key: container.image.tag value: - stringValue: v0.18.1 + stringValue: latest - key: customfield1 value: stringValue: customvalue1 @@ -962,7 +995,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-rbac-proxy + stringValue: prometheus-annotation-test - key: k8s.namespace.name value: stringValue: default @@ -971,10 +1004,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: prometheus-annotation-test-cfc77c7b9-xhlhw - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: 2a992a4b-e975-4d29-b17c-3288b0043a0e - key: metric_source value: stringValue: kubernetes @@ -982,20 +1015,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.1 + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7930a07f4cb7fc9ea6159a3bc7c7485170f728ddc0cc0c50a6f571737c846e50 + stringValue: 50b808281e95714072a15e744c529bba4c3462043e9bfb45b2bb451ea787dd73 - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: v1.11.1 + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -1007,19 +1040,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + stringValue: otel-collector - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-wqrsn + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-59674d665-tc4ss - key: k8s.pod.uid value: - stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 + stringValue: c751b5f2-0b6b-418f-b71b-606330a83430 - key: metric_source value: stringValue: kubernetes @@ -1027,20 +1060,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.1 + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 82b7c36c5da8acb40f66be5b2c70430bb7d7c84e128bede5bc325f94653839bd + stringValue: 5eb6066cb19df83f23df91e843654e456e334a1fb7eadf2c699fcf5106506b74 - key: container.image.name value: - stringValue: registry.k8s.io/etcd + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: 3.5.10-0 + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -1052,19 +1085,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: etcd + stringValue: otel-collector - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: etcd-kind-control-plane + stringValue: sock-splunk-otel-collector-agent-6zqmr - key: k8s.pod.uid value: - stringValue: 68828dad-2ca2-47ca-914e-f41cfd58244b + stringValue: 4d0c9753-5f12-4ffb-a9c7-da33948c8c7f - key: metric_source value: stringValue: kubernetes @@ -1072,20 +1105,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.2 + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e2ea169579f87203b926492d33050b56fd253b2e07bd66730339fc75a2fd4621 + stringValue: 691a447c6f0f931e19e15831507ebf96e742c77315fe17f14dffcfa9dc148f4f - key: container.image.name value: - stringValue: registry.k8s.io/kube-controller-manager + stringValue: docker.io/kindest/local-path-provisioner - key: container.image.tag value: - stringValue: v1.29.0 + stringValue: v20230511-dc714da8 - key: customfield1 value: stringValue: customvalue1 @@ -1097,19 +1130,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-controller-manager + stringValue: local-path-provisioner - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: local-path-storage - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-controller-manager-kind-control-plane + stringValue: local-path-provisioner-6f8956fb48-nl7dt - key: k8s.pod.uid value: - stringValue: 5c40ac1e-5432-4249-b754-4795b36d4c99 + stringValue: e6f3d494-3e4e-4ed4-9f3b-054c9675a785 - key: metric_source value: stringValue: kubernetes @@ -1117,20 +1150,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.1 + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 + stringValue: 73670e794cf1a1c6b3e5a410cec652bcdb78c02a4793c3ed5beb4e93a0b4c8a2 - key: container.image.name value: - stringValue: docker.io/kindest/kindnetd + stringValue: registry.k8s.io/kube-proxy - key: container.image.tag value: - stringValue: v20230511-dc714da8 + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -1142,7 +1175,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kindnet-cni + stringValue: kube-proxy - key: k8s.namespace.name value: stringValue: kube-system @@ -1151,10 +1184,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kindnet-9xfzp + stringValue: kube-proxy-w4pq8 - key: k8s.pod.uid value: - stringValue: f8149b85-dab1-482e-a735-0c29a953061b + stringValue: 7b25c613-e655-4679-9ad5-0ef0419f6aa7 - key: metric_source value: stringValue: kubernetes @@ -1162,23 +1195,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - name: k8s.container.cpu_request - - gauge: - dataPoints: - - asInt: "524288000" + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 + stringValue: 844cdc39f6c38dfee2410beaf59f434017f01f1600a03601d06acc022b65e7de - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: registry.k8s.io/kube-controller-manager - key: container.image.tag value: - stringValue: 0.113.0 + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -1190,19 +1220,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: kube-controller-manager - key: k8s.namespace.name value: - stringValue: default + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj + stringValue: kube-controller-manager-kind-control-plane - key: k8s.pod.uid value: - stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c + stringValue: 80d09637-319b-4208-a062-393533fbf2ac - key: metric_source value: stringValue: kubernetes @@ -1210,20 +1240,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "134217728" + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 + stringValue: afc7413fdca060dddc8be931db2d2974c5348f058d7267fd13830251ad78fd69 - key: container.image.name value: stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator - key: container.image.tag value: - stringValue: 0.116.0 + stringValue: 0.110.0 - key: customfield1 value: stringValue: customvalue1 @@ -1244,10 +1274,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -1255,20 +1285,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "178257920" + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 56c1f8ae24c544d0a51aabda6f200e7a491c22eeca767de49504632b0340e09c + stringValue: b1e0c654ae5151efa4dbd3ca88f6bdf1e1f332393ed611328099b9fff0ad87d5 - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: quay.io/jetstack/cert-manager-controller - key: container.image.tag value: - stringValue: v1.11.1 + stringValue: v1.14.4 - key: customfield1 value: stringValue: customvalue1 @@ -1280,19 +1310,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + stringValue: cert-manager-controller - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: cert-manager - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-8w7l8 + stringValue: cert-manager-67c98b89c8-g22j7 - key: k8s.pod.uid value: - stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 + stringValue: 3ece0e7b-6f24-4bed-a51e-e0fcf81a5c26 - key: metric_source value: stringValue: kubernetes @@ -1300,20 +1330,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "524288000" + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 + stringValue: c260d848811ce9c4f324718840ef701569a548e7e769be413d466e1586b6606c - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: registry.k8s.io/etcd - key: container.image.tag value: - stringValue: 0.113.0 + stringValue: 3.5.10-0 - key: customfield1 value: stringValue: customvalue1 @@ -1325,19 +1355,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: etcd - key: k8s.namespace.name value: - stringValue: default + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-rm8js + stringValue: etcd-kind-control-plane - key: k8s.pod.uid value: - stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 + stringValue: 53f92a39-92e9-4ae4-b3e5-6f32ac6fb705 - key: metric_source value: stringValue: kubernetes @@ -1345,20 +1375,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "134217728" + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac + stringValue: d5b98f53c3b61471d924aa1eeaed91f8c4d71119b776d409386b14fa851e0344 - key: container.image.name value: - stringValue: quay.io/brancz/kube-rbac-proxy + stringValue: quay.io/jetstack/cert-manager-cainjector - key: container.image.tag value: - stringValue: v0.18.1 + stringValue: v1.14.4 - key: customfield1 value: stringValue: customvalue1 @@ -1370,19 +1400,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-rbac-proxy + stringValue: cert-manager-cainjector - key: k8s.namespace.name value: - stringValue: default + stringValue: cert-manager - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: cert-manager-cainjector-5c5695d979-4gn7v - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: c67d333e-6b13-4486-8b36-c9622a794d1f - key: metric_source value: stringValue: kubernetes @@ -1390,20 +1420,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "178257920" + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7930a07f4cb7fc9ea6159a3bc7c7485170f728ddc0cc0c50a6f571737c846e50 + stringValue: e26453afede340680ddff9cde881a88300ce30b850f21e7f05703c0c341e3726 - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: registry.k8s.io/kube-scheduler - key: container.image.tag value: - stringValue: v1.11.1 + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -1415,7 +1445,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + stringValue: kube-scheduler - key: k8s.namespace.name value: stringValue: kube-system @@ -1424,10 +1454,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-wqrsn + stringValue: kube-scheduler-kind-control-plane - key: k8s.pod.uid value: - stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 + stringValue: 966d4695-d046-4416-927d-8162dbaab50b - key: metric_source value: stringValue: kubernetes @@ -1435,20 +1465,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "52428800" + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 + stringValue: f463a6bb8e665cbe3927a3e0ae395a54955cdf6228c2957da1e925807d9f816f - key: container.image.name value: - stringValue: docker.io/kindest/kindnetd + stringValue: quay.io/brancz/kube-rbac-proxy - key: container.image.tag value: - stringValue: v20230511-dc714da8 + stringValue: v0.18.1 - key: customfield1 value: stringValue: customvalue1 @@ -1460,19 +1490,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kindnet-cni + stringValue: kube-rbac-proxy - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kindnet-9xfzp + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: f8149b85-dab1-482e-a735-0c29a953061b + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -1480,23 +1510,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - name: k8s.container.memory_limit - - gauge: - dataPoints: - - asInt: "524288000" + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 + stringValue: f981b0fd2934f376127fbe25d53a62eb4637e7a6eb554b34aa0cbfe0d1fadaa3 - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: 0.113.0 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -1508,19 +1535,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: coredns - key: k8s.namespace.name value: - stringValue: default + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj + stringValue: coredns-76f75df574-2gdxf - key: k8s.pod.uid value: - stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c + stringValue: cbe6b06d-1d5a-4235-8ded-a3d2b497138d - key: metric_source value: stringValue: kubernetes @@ -1528,20 +1555,23 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "67108864" + name: k8s.container.ready + - gauge: + dataPoints: + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 + stringValue: 003d3d03d91f08af36531d2160e85d83b3c497371e47017e42f21c538694b1b7 - key: container.image.name value: - stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator + stringValue: quay.io/splunko11ytest/dotnet_test - key: container.image.tag value: - stringValue: 0.116.0 + stringValue: latest - key: customfield1 value: stringValue: customvalue1 @@ -1553,7 +1583,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: manager + stringValue: dotnet-test - key: k8s.namespace.name value: stringValue: default @@ -1562,10 +1592,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: dotnet-test-5479c475fc-8xpcw - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: c28fcde1-8d20-4cfc-a975-8b2c08de526f - key: metric_source value: stringValue: kubernetes @@ -1573,20 +1603,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "73400320" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 56c1f8ae24c544d0a51aabda6f200e7a491c22eeca767de49504632b0340e09c + stringValue: 004389c5623d8aabe7d71bb7a33cf264f880ed445a250140b686b6faf5976200 - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/target-allocator - key: container.image.tag value: - stringValue: v1.11.1 + stringValue: v0.105.0 - key: customfield1 value: stringValue: customvalue1 @@ -1598,19 +1628,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + stringValue: targetallocator - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-8w7l8 + stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4-26wmp - key: k8s.pod.uid value: - stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 + stringValue: f4b8c20e-1dad-4eec-a849-6a15e9a08156 - key: metric_source value: stringValue: kubernetes @@ -1618,20 +1648,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "524288000" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 + stringValue: 08712584e737fe9c61d06351d7b205d6344a412e5f8231863cd7b591d2ebe729 - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: 0.113.0 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -1643,19 +1673,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: coredns - key: k8s.namespace.name value: - stringValue: default + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-rm8js + stringValue: coredns-76f75df574-j6vjb - key: k8s.pod.uid value: - stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 + stringValue: c0dd36df-1e0c-4feb-b1b7-419681595dd2 - key: metric_source value: stringValue: kubernetes @@ -1663,20 +1693,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "67108864" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac + stringValue: 15ff7b753a6950674b9e78ec8274e73bd135699d5e2e5744e22287da8d27fadc - key: container.image.name value: - stringValue: quay.io/brancz/kube-rbac-proxy + stringValue: docker.io/kindest/kindnetd - key: container.image.tag value: - stringValue: v0.18.1 + stringValue: v20230511-dc714da8 - key: customfield1 value: stringValue: customvalue1 @@ -1688,19 +1718,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-rbac-proxy + stringValue: kindnet-cni - key: k8s.namespace.name value: - stringValue: default + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: kindnet-b4pd7 - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: 5c574843-642d-4ba6-bfd8-9aa160827de3 - key: metric_source value: stringValue: kubernetes @@ -1708,20 +1738,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "73400320" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7930a07f4cb7fc9ea6159a3bc7c7485170f728ddc0cc0c50a6f571737c846e50 + stringValue: 2676c08fa9df42f1b1d7dd55856946f2e9440b793ce98424575b56ffb32b991f - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: quay.io/jetstack/cert-manager-webhook - key: container.image.tag value: - stringValue: v1.11.1 + stringValue: v1.14.4 - key: customfield1 value: stringValue: customvalue1 @@ -1733,19 +1763,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + stringValue: cert-manager-webhook - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: cert-manager - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-wqrsn + stringValue: cert-manager-webhook-7f9f8648b9-pjrwc - key: k8s.pod.uid value: - stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 + stringValue: abf6af19-643c-4f88-96ae-beedc60f4f8e - key: metric_source value: stringValue: kubernetes @@ -1753,20 +1783,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "104857600" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 82b7c36c5da8acb40f66be5b2c70430bb7d7c84e128bede5bc325f94653839bd + stringValue: 2a5891c6055ebcb2aab796034ab47117e538b784d450d036bcba82caf56c0de2 - key: container.image.name value: - stringValue: registry.k8s.io/etcd + stringValue: registry.k8s.io/kube-apiserver - key: container.image.tag value: - stringValue: 3.5.10-0 + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -1778,7 +1808,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: etcd + stringValue: kube-apiserver - key: k8s.namespace.name value: stringValue: kube-system @@ -1787,55 +1817,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: etcd-kind-control-plane - - key: k8s.pod.uid - value: - stringValue: 68828dad-2ca2-47ca-914e-f41cfd58244b - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asInt: "52428800" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: container.id - value: - stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 - - key: container.image.name - value: - stringValue: docker.io/kindest/kindnetd - - key: container.image.tag - value: - stringValue: v20230511-dc714da8 - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.container.name - value: - stringValue: kindnet-cni - - key: k8s.namespace.name - value: - stringValue: kube-system - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: kindnet-9xfzp + stringValue: kube-apiserver-kind-control-plane - key: k8s.pod.uid value: - stringValue: f8149b85-dab1-482e-a735-0c29a953061b + stringValue: a7644cdf-3844-439c-bd8f-dc0760623723 - key: metric_source value: stringValue: kubernetes @@ -1843,23 +1828,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - name: k8s.container.memory_request - - gauge: - dataPoints: - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 029555a4cfeffe308062ebe8f6f59e116313d079efd1a802064ed30e6e155150 + stringValue: 33ab498497f4b362fd83ec43b1e0c1ad26d37e8dfb524e3ba2a19050a5af59ed - key: container.image.name value: - stringValue: docker.io/kindest/local-path-provisioner + stringValue: quay.io/splunko11ytest/httpd - key: container.image.tag value: - stringValue: v20230511-dc714da8 + stringValue: latest - key: customfield1 value: stringValue: customvalue1 @@ -1871,19 +1853,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: local-path-provisioner + stringValue: prometheus-annotation-test - key: k8s.namespace.name value: - stringValue: local-path-storage + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: local-path-provisioner-6f8956fb48-wgzmr + stringValue: prometheus-annotation-test-cfc77c7b9-xhlhw - key: k8s.pod.uid value: - stringValue: 809e4615-fc78-494b-abde-5263a1ee31a0 + stringValue: 2a992a4b-e975-4d29-b17c-3288b0043a0e - key: metric_source value: stringValue: kubernetes @@ -1891,20 +1873,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 15a2d46d1533c984b885e8f767c50e7601241f026c5698a80cda3db5d2321c83 + stringValue: 50b808281e95714072a15e744c529bba4c3462043e9bfb45b2bb451ea787dd73 - key: container.image.name value: - stringValue: quay.io/splunko11ytest/nodejs_test + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: latest + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -1916,7 +1898,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: nodejs-test + stringValue: otel-collector - key: k8s.namespace.name value: stringValue: default @@ -1925,10 +1907,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: nodejs-test-56b74df9ff-klgm7 + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-59674d665-tc4ss - key: k8s.pod.uid value: - stringValue: 89b46064-f8e5-46d6-b54e-79a1cc7948df + stringValue: c751b5f2-0b6b-418f-b71b-606330a83430 - key: metric_source value: stringValue: kubernetes @@ -1936,20 +1918,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 + stringValue: 5eb6066cb19df83f23df91e843654e456e334a1fb7eadf2c699fcf5106506b74 - key: container.image.name value: stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: 0.113.0 + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -1970,10 +1952,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj + stringValue: sock-splunk-otel-collector-agent-6zqmr - key: k8s.pod.uid value: - stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c + stringValue: 4d0c9753-5f12-4ffb-a9c7-da33948c8c7f - key: metric_source value: stringValue: kubernetes @@ -1981,20 +1963,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 3917f7d60ba632ba65e55bdd2a69a516383982f5f6b555eaf86a688cea4c5515 + stringValue: 691a447c6f0f931e19e15831507ebf96e742c77315fe17f14dffcfa9dc148f4f - key: container.image.name value: - stringValue: quay.io/jetstack/cert-manager-webhook + stringValue: docker.io/kindest/local-path-provisioner - key: container.image.tag value: - stringValue: v1.14.4 + stringValue: v20230511-dc714da8 - key: customfield1 value: stringValue: customvalue1 @@ -2006,19 +1988,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: cert-manager-webhook + stringValue: local-path-provisioner - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: local-path-storage - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-webhook-7f9f8648b9-dzq2l + stringValue: local-path-provisioner-6f8956fb48-nl7dt - key: k8s.pod.uid value: - stringValue: 18826d35-ead9-4637-a492-8d78156959f6 + stringValue: e6f3d494-3e4e-4ed4-9f3b-054c9675a785 - key: metric_source value: stringValue: kubernetes @@ -2026,20 +2008,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 + stringValue: 73670e794cf1a1c6b3e5a410cec652bcdb78c02a4793c3ed5beb4e93a0b4c8a2 - key: container.image.name value: - stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator + stringValue: registry.k8s.io/kube-proxy - key: container.image.tag value: - stringValue: 0.116.0 + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -2051,19 +2033,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: manager + stringValue: kube-proxy - key: k8s.namespace.name value: - stringValue: default + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: kube-proxy-w4pq8 - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: 7b25c613-e655-4679-9ad5-0ef0419f6aa7 - key: metric_source value: stringValue: kubernetes @@ -2071,17 +2053,17 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 55d8886e226d55a1a0f3e3f0bdc56d0e2a32c9ffdf6712c9e99c9873528f5b12 + stringValue: 844cdc39f6c38dfee2410beaf59f434017f01f1600a03601d06acc022b65e7de - key: container.image.name value: - stringValue: registry.k8s.io/kube-scheduler + stringValue: registry.k8s.io/kube-controller-manager - key: container.image.tag value: stringValue: v1.29.0 @@ -2096,7 +2078,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-scheduler + stringValue: kube-controller-manager - key: k8s.namespace.name value: stringValue: kube-system @@ -2105,10 +2087,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-scheduler-kind-control-plane + stringValue: kube-controller-manager-kind-control-plane - key: k8s.pod.uid value: - stringValue: e8a35d2f-5099-41cb-97c1-7c20e9236fd5 + stringValue: 80d09637-319b-4208-a062-393533fbf2ac - key: metric_source value: stringValue: kubernetes @@ -2116,20 +2098,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 56c1f8ae24c544d0a51aabda6f200e7a491c22eeca767de49504632b0340e09c + stringValue: afc7413fdca060dddc8be931db2d2974c5348f058d7267fd13830251ad78fd69 - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator - key: container.image.tag value: - stringValue: v1.11.1 + stringValue: 0.110.0 - key: customfield1 value: stringValue: customvalue1 @@ -2141,19 +2123,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + stringValue: manager - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-8w7l8 + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -2161,20 +2143,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 + stringValue: b1e0c654ae5151efa4dbd3ca88f6bdf1e1f332393ed611328099b9fff0ad87d5 - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: quay.io/jetstack/cert-manager-controller - key: container.image.tag value: - stringValue: 0.113.0 + stringValue: v1.14.4 - key: customfield1 value: stringValue: customvalue1 @@ -2186,19 +2168,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: cert-manager-controller - key: k8s.namespace.name value: - stringValue: default + stringValue: cert-manager - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-rm8js + stringValue: cert-manager-67c98b89c8-g22j7 - key: k8s.pod.uid value: - stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 + stringValue: 3ece0e7b-6f24-4bed-a51e-e0fcf81a5c26 - key: metric_source value: stringValue: kubernetes @@ -2206,20 +2188,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 6e3992f7de7d0611933767e445edc89ecc7b6bb086fbf9b82b7daba89df7f09a + stringValue: c260d848811ce9c4f324718840ef701569a548e7e769be413d466e1586b6606c - key: container.image.name value: - stringValue: registry.k8s.io/kube-apiserver + stringValue: registry.k8s.io/etcd - key: container.image.tag value: - stringValue: v1.29.0 + stringValue: 3.5.10-0 - key: customfield1 value: stringValue: customvalue1 @@ -2231,7 +2213,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-apiserver + stringValue: etcd - key: k8s.namespace.name value: stringValue: kube-system @@ -2240,10 +2222,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-apiserver-kind-control-plane + stringValue: etcd-kind-control-plane - key: k8s.pod.uid value: - stringValue: 830a2042-aec1-4502-8d2b-d96852bd105c + stringValue: 53f92a39-92e9-4ae4-b3e5-6f32ac6fb705 - key: metric_source value: stringValue: kubernetes @@ -2251,20 +2233,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac + stringValue: d5b98f53c3b61471d924aa1eeaed91f8c4d71119b776d409386b14fa851e0344 - key: container.image.name value: - stringValue: quay.io/brancz/kube-rbac-proxy + stringValue: quay.io/jetstack/cert-manager-cainjector - key: container.image.tag value: - stringValue: v0.18.1 + stringValue: v1.14.4 - key: customfield1 value: stringValue: customvalue1 @@ -2276,19 +2258,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-rbac-proxy + stringValue: cert-manager-cainjector - key: k8s.namespace.name value: - stringValue: default + stringValue: cert-manager - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: cert-manager-cainjector-5c5695d979-4gn7v - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: c67d333e-6b13-4486-8b36-c9622a794d1f - key: metric_source value: stringValue: kubernetes @@ -2296,20 +2278,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7930a07f4cb7fc9ea6159a3bc7c7485170f728ddc0cc0c50a6f571737c846e50 + stringValue: e26453afede340680ddff9cde881a88300ce30b850f21e7f05703c0c341e3726 - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: registry.k8s.io/kube-scheduler - key: container.image.tag value: - stringValue: v1.11.1 + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -2321,7 +2303,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + stringValue: kube-scheduler - key: k8s.namespace.name value: stringValue: kube-system @@ -2330,10 +2312,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-wqrsn + stringValue: kube-scheduler-kind-control-plane - key: k8s.pod.uid value: - stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 + stringValue: 966d4695-d046-4416-927d-8162dbaab50b - key: metric_source value: stringValue: kubernetes @@ -2341,20 +2323,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7c2550f56f151c838ab4ddc00211edd3c1be45f992c4058759cc01e387c45e01 + stringValue: f463a6bb8e665cbe3927a3e0ae395a54955cdf6228c2957da1e925807d9f816f - key: container.image.name value: - stringValue: registry.k8s.io/kube-proxy + stringValue: quay.io/brancz/kube-rbac-proxy - key: container.image.tag value: - stringValue: v1.29.0 + stringValue: v0.18.1 - key: customfield1 value: stringValue: customvalue1 @@ -2366,19 +2348,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-proxy + stringValue: kube-rbac-proxy - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-proxy-tw2lr + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: 7b0de1af-95c5-4994-9e01-f16b25ba49c6 + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -2386,20 +2368,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7d239fcb5583c18f213c32748d6c127ee36426aa9fcfffb0533bf7a84d5f7194 + stringValue: f981b0fd2934f376127fbe25d53a62eb4637e7a6eb554b34aa0cbfe0d1fadaa3 - key: container.image.name value: - stringValue: quay.io/jetstack/cert-manager-controller + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: v1.14.4 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -2411,19 +2393,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: cert-manager-controller + stringValue: coredns - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-67c98b89c8-5dtxs + stringValue: coredns-76f75df574-2gdxf - key: k8s.pod.uid value: - stringValue: 9cd699ef-f612-4879-b1ce-04303d7b4f6c + stringValue: cbe6b06d-1d5a-4235-8ded-a3d2b497138d - key: metric_source value: stringValue: kubernetes @@ -2431,20 +2413,23 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + name: k8s.container.restarts + - gauge: + dataPoints: + - asDouble: 0.1 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7f2567f3445e62535252ac97a6b0b3eea860f21dffa4902c947c17d55a26ac2e + stringValue: 08712584e737fe9c61d06351d7b205d6344a412e5f8231863cd7b591d2ebe729 - key: container.image.name value: - stringValue: quay.io/jetstack/cert-manager-cainjector + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: v1.14.4 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -2456,19 +2441,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: cert-manager-cainjector + stringValue: coredns - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-cainjector-5c5695d979-h7c2k + stringValue: coredns-76f75df574-j6vjb - key: k8s.pod.uid value: - stringValue: 5a67f651-add4-43f6-b2a7-06afb5fef617 + stringValue: c0dd36df-1e0c-4feb-b1b7-419681595dd2 - key: metric_source value: stringValue: kubernetes @@ -2476,20 +2461,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asDouble: 0.1 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 82b7c36c5da8acb40f66be5b2c70430bb7d7c84e128bede5bc325f94653839bd + stringValue: 15ff7b753a6950674b9e78ec8274e73bd135699d5e2e5744e22287da8d27fadc - key: container.image.name value: - stringValue: registry.k8s.io/etcd + stringValue: docker.io/kindest/kindnetd - key: container.image.tag value: - stringValue: 3.5.10-0 + stringValue: v20230511-dc714da8 - key: customfield1 value: stringValue: customvalue1 @@ -2501,7 +2486,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: etcd + stringValue: kindnet-cni - key: k8s.namespace.name value: stringValue: kube-system @@ -2510,10 +2495,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: etcd-kind-control-plane + stringValue: kindnet-b4pd7 - key: k8s.pod.uid value: - stringValue: 68828dad-2ca2-47ca-914e-f41cfd58244b + stringValue: 5c574843-642d-4ba6-bfd8-9aa160827de3 - key: metric_source value: stringValue: kubernetes @@ -2521,20 +2506,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asDouble: 0.25 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 9001b70e2443496dc4699019d151e7ac94b30c7555c9f95e0e9fb569a3c5985c + stringValue: 2a5891c6055ebcb2aab796034ab47117e538b784d450d036bcba82caf56c0de2 - key: container.image.name value: - stringValue: quay.io/splunko11ytest/httpd + stringValue: registry.k8s.io/kube-apiserver - key: container.image.tag value: - stringValue: latest + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -2546,19 +2531,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: prometheus-annotation-test + stringValue: kube-apiserver - key: k8s.namespace.name value: - stringValue: default + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: prometheus-annotation-test-cfc77c7b9-86vg5 + stringValue: kube-apiserver-kind-control-plane - key: k8s.pod.uid value: - stringValue: 558db553-7cc6-44f2-9039-f81e43d0bc25 + stringValue: a7644cdf-3844-439c-bd8f-dc0760623723 - key: metric_source value: stringValue: kubernetes @@ -2566,20 +2551,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asDouble: 0.2 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: ad771ceab740a5a51b3c5e67b8ff36743ef86776f28942fcb28b22c4f37b309d + stringValue: 50b808281e95714072a15e744c529bba4c3462043e9bfb45b2bb451ea787dd73 - key: container.image.name value: - stringValue: quay.io/splunko11ytest/dotnet_test + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: latest + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -2591,7 +2576,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: dotnet-test + stringValue: otel-collector - key: k8s.namespace.name value: stringValue: default @@ -2600,10 +2585,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: dotnet-test-5479c475fc-qpr6c + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-59674d665-tc4ss - key: k8s.pod.uid value: - stringValue: bd83fe1d-786d-4da7-889e-cee578e6f2f8 + stringValue: c751b5f2-0b6b-418f-b71b-606330a83430 - key: metric_source value: stringValue: kubernetes @@ -2611,20 +2596,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asDouble: 0.2 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: af7431cadfb9e46f242716f4588134dee006641290c1405f88e468beb2fa559d + stringValue: 5eb6066cb19df83f23df91e843654e456e334a1fb7eadf2c699fcf5106506b74 - key: container.image.name value: - stringValue: ghcr.io/open-telemetry/opentelemetry-operator/target-allocator + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: v0.105.0 + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -2636,7 +2621,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: targetallocator + stringValue: otel-collector - key: k8s.namespace.name value: stringValue: default @@ -2645,10 +2630,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4-rpj6g + stringValue: sock-splunk-otel-collector-agent-6zqmr - key: k8s.pod.uid value: - stringValue: 4e7bef74-37d2-4380-b5d7-c0ce1476be95 + stringValue: 4d0c9753-5f12-4ffb-a9c7-da33948c8c7f - key: metric_source value: stringValue: kubernetes @@ -2656,14 +2641,14 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asDouble: 0.2 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e2ea169579f87203b926492d33050b56fd253b2e07bd66730339fc75a2fd4621 + stringValue: 844cdc39f6c38dfee2410beaf59f434017f01f1600a03601d06acc022b65e7de - key: container.image.name value: stringValue: registry.k8s.io/kube-controller-manager @@ -2693,7 +2678,7 @@ resourceMetrics: stringValue: kube-controller-manager-kind-control-plane - key: k8s.pod.uid value: - stringValue: 5c40ac1e-5432-4249-b754-4795b36d4c99 + stringValue: 80d09637-319b-4208-a062-393533fbf2ac - key: metric_source value: stringValue: kubernetes @@ -2701,20 +2686,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asDouble: 0.1 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e6089c166eeb1823e805c0845d43a777ae52ac054fe8ecc33805204995de77e7 + stringValue: afc7413fdca060dddc8be931db2d2974c5348f058d7267fd13830251ad78fd69 - key: container.image.name value: - stringValue: quay.io/splunko11ytest/java_test + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator - key: container.image.tag value: - stringValue: latest + stringValue: 0.110.0 - key: customfield1 value: stringValue: customvalue1 @@ -2726,7 +2711,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: java-test + stringValue: manager - key: k8s.namespace.name value: stringValue: default @@ -2735,10 +2720,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: java-test-5c4d6479b8-j7fmr + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: 63ca8dfe-1747-4097-9b9d-071b1cb3b891 + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -2746,20 +2731,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asDouble: 0.1 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 + stringValue: c260d848811ce9c4f324718840ef701569a548e7e769be413d466e1586b6606c - key: container.image.name value: - stringValue: docker.io/kindest/kindnetd + stringValue: registry.k8s.io/etcd - key: container.image.tag value: - stringValue: v20230511-dc714da8 + stringValue: 3.5.10-0 - key: customfield1 value: stringValue: customvalue1 @@ -2771,7 +2756,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kindnet-cni + stringValue: etcd - key: k8s.namespace.name value: stringValue: kube-system @@ -2780,148 +2765,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kindnet-9xfzp - - key: k8s.pod.uid - value: - stringValue: f8149b85-dab1-482e-a735-0c29a953061b - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - name: k8s.container.ready - - gauge: - dataPoints: - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: container.id - value: - stringValue: 029555a4cfeffe308062ebe8f6f59e116313d079efd1a802064ed30e6e155150 - - key: container.image.name - value: - stringValue: docker.io/kindest/local-path-provisioner - - key: container.image.tag - value: - stringValue: v20230511-dc714da8 - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.container.name - value: - stringValue: local-path-provisioner - - key: k8s.namespace.name - value: - stringValue: local-path-storage - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: local-path-provisioner-6f8956fb48-wgzmr - - key: k8s.pod.uid - value: - stringValue: 809e4615-fc78-494b-abde-5263a1ee31a0 - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: container.id - value: - stringValue: 15a2d46d1533c984b885e8f767c50e7601241f026c5698a80cda3db5d2321c83 - - key: container.image.name - value: - stringValue: quay.io/splunko11ytest/nodejs_test - - key: container.image.tag - value: - stringValue: latest - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.container.name - value: - stringValue: nodejs-test - - key: k8s.namespace.name - value: - stringValue: default - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: nodejs-test-56b74df9ff-klgm7 - - key: k8s.pod.uid - value: - stringValue: 89b46064-f8e5-46d6-b54e-79a1cc7948df - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: container.id - value: - stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 - - key: container.image.name - value: - stringValue: quay.io/signalfx/splunk-otel-collector - - key: container.image.tag - value: - stringValue: 0.113.0 - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.container.name - value: - stringValue: otel-collector - - key: k8s.namespace.name - value: - stringValue: default - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj + stringValue: etcd-kind-control-plane - key: k8s.pod.uid value: - stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c + stringValue: 53f92a39-92e9-4ae4-b3e5-6f32ac6fb705 - key: metric_source value: stringValue: kubernetes @@ -2929,20 +2776,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asDouble: 0.1 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 3917f7d60ba632ba65e55bdd2a69a516383982f5f6b555eaf86a688cea4c5515 + stringValue: e26453afede340680ddff9cde881a88300ce30b850f21e7f05703c0c341e3726 - key: container.image.name value: - stringValue: quay.io/jetstack/cert-manager-webhook + stringValue: registry.k8s.io/kube-scheduler - key: container.image.tag value: - stringValue: v1.14.4 + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -2954,19 +2801,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: cert-manager-webhook + stringValue: kube-scheduler - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-webhook-7f9f8648b9-dzq2l + stringValue: kube-scheduler-kind-control-plane - key: k8s.pod.uid value: - stringValue: 18826d35-ead9-4637-a492-8d78156959f6 + stringValue: 966d4695-d046-4416-927d-8162dbaab50b - key: metric_source value: stringValue: kubernetes @@ -2974,20 +2821,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asDouble: 0.005 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 + stringValue: f463a6bb8e665cbe3927a3e0ae395a54955cdf6228c2957da1e925807d9f816f - key: container.image.name value: - stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator + stringValue: quay.io/brancz/kube-rbac-proxy - key: container.image.tag value: - stringValue: 0.116.0 + stringValue: v0.18.1 - key: customfield1 value: stringValue: customvalue1 @@ -2999,7 +2846,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: manager + stringValue: kube-rbac-proxy - key: k8s.namespace.name value: stringValue: default @@ -3008,10 +2855,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -3019,20 +2866,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asDouble: 0.1 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 55d8886e226d55a1a0f3e3f0bdc56d0e2a32c9ffdf6712c9e99c9873528f5b12 + stringValue: f981b0fd2934f376127fbe25d53a62eb4637e7a6eb554b34aa0cbfe0d1fadaa3 - key: container.image.name value: - stringValue: registry.k8s.io/kube-scheduler + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: v1.29.0 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -3044,7 +2891,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-scheduler + stringValue: coredns - key: k8s.namespace.name value: stringValue: kube-system @@ -3053,10 +2900,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-scheduler-kind-control-plane + stringValue: coredns-76f75df574-2gdxf - key: k8s.pod.uid value: - stringValue: e8a35d2f-5099-41cb-97c1-7c20e9236fd5 + stringValue: cbe6b06d-1d5a-4235-8ded-a3d2b497138d - key: metric_source value: stringValue: kubernetes @@ -3064,14 +2911,17 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + name: k8s.container.cpu_request + - gauge: + dataPoints: + - asInt: "178257920" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 56c1f8ae24c544d0a51aabda6f200e7a491c22eeca767de49504632b0340e09c + stringValue: 08712584e737fe9c61d06351d7b205d6344a412e5f8231863cd7b591d2ebe729 - key: container.image.name value: stringValue: registry.k8s.io/coredns/coredns @@ -3098,10 +2948,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-8w7l8 + stringValue: coredns-76f75df574-j6vjb - key: k8s.pod.uid value: - stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 + stringValue: c0dd36df-1e0c-4feb-b1b7-419681595dd2 - key: metric_source value: stringValue: kubernetes @@ -3109,20 +2959,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "52428800" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 + stringValue: 15ff7b753a6950674b9e78ec8274e73bd135699d5e2e5744e22287da8d27fadc - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: docker.io/kindest/kindnetd - key: container.image.tag value: - stringValue: 0.113.0 + stringValue: v20230511-dc714da8 - key: customfield1 value: stringValue: customvalue1 @@ -3134,19 +2984,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: kindnet-cni - key: k8s.namespace.name value: - stringValue: default + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-rm8js + stringValue: kindnet-b4pd7 - key: k8s.pod.uid value: - stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 + stringValue: 5c574843-642d-4ba6-bfd8-9aa160827de3 - key: metric_source value: stringValue: kubernetes @@ -3154,20 +3004,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "524288000" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 6e3992f7de7d0611933767e445edc89ecc7b6bb086fbf9b82b7daba89df7f09a + stringValue: 50b808281e95714072a15e744c529bba4c3462043e9bfb45b2bb451ea787dd73 - key: container.image.name value: - stringValue: registry.k8s.io/kube-apiserver + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: v1.29.0 + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -3179,19 +3029,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-apiserver + stringValue: otel-collector - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-apiserver-kind-control-plane + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-59674d665-tc4ss - key: k8s.pod.uid value: - stringValue: 830a2042-aec1-4502-8d2b-d96852bd105c + stringValue: c751b5f2-0b6b-418f-b71b-606330a83430 - key: metric_source value: stringValue: kubernetes @@ -3199,20 +3049,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "524288000" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac + stringValue: 5eb6066cb19df83f23df91e843654e456e334a1fb7eadf2c699fcf5106506b74 - key: container.image.name value: - stringValue: quay.io/brancz/kube-rbac-proxy + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: v0.18.1 + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -3224,7 +3074,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-rbac-proxy + stringValue: otel-collector - key: k8s.namespace.name value: stringValue: default @@ -3233,10 +3083,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: sock-splunk-otel-collector-agent-6zqmr - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: 4d0c9753-5f12-4ffb-a9c7-da33948c8c7f - key: metric_source value: stringValue: kubernetes @@ -3244,20 +3094,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "134217728" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7930a07f4cb7fc9ea6159a3bc7c7485170f728ddc0cc0c50a6f571737c846e50 + stringValue: afc7413fdca060dddc8be931db2d2974c5348f058d7267fd13830251ad78fd69 - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator - key: container.image.tag value: - stringValue: v1.11.1 + stringValue: 0.110.0 - key: customfield1 value: stringValue: customvalue1 @@ -3269,19 +3119,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + stringValue: manager - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-76f75df574-wqrsn + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -3289,20 +3139,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "134217728" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7c2550f56f151c838ab4ddc00211edd3c1be45f992c4058759cc01e387c45e01 + stringValue: f463a6bb8e665cbe3927a3e0ae395a54955cdf6228c2957da1e925807d9f816f - key: container.image.name value: - stringValue: registry.k8s.io/kube-proxy + stringValue: quay.io/brancz/kube-rbac-proxy - key: container.image.tag value: - stringValue: v1.29.0 + stringValue: v0.18.1 - key: customfield1 value: stringValue: customvalue1 @@ -3314,19 +3164,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-proxy + stringValue: kube-rbac-proxy - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-proxy-tw2lr + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: 7b0de1af-95c5-4994-9e01-f16b25ba49c6 + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -3334,20 +3184,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "178257920" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7d239fcb5583c18f213c32748d6c127ee36426aa9fcfffb0533bf7a84d5f7194 + stringValue: f981b0fd2934f376127fbe25d53a62eb4637e7a6eb554b34aa0cbfe0d1fadaa3 - key: container.image.name value: - stringValue: quay.io/jetstack/cert-manager-controller + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: v1.14.4 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -3359,19 +3209,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: cert-manager-controller + stringValue: coredns - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-67c98b89c8-5dtxs + stringValue: coredns-76f75df574-2gdxf - key: k8s.pod.uid value: - stringValue: 9cd699ef-f612-4879-b1ce-04303d7b4f6c + stringValue: cbe6b06d-1d5a-4235-8ded-a3d2b497138d - key: metric_source value: stringValue: kubernetes @@ -3379,20 +3229,23 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + name: k8s.container.memory_limit + - gauge: + dataPoints: + - asInt: "73400320" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7f2567f3445e62535252ac97a6b0b3eea860f21dffa4902c947c17d55a26ac2e + stringValue: 08712584e737fe9c61d06351d7b205d6344a412e5f8231863cd7b591d2ebe729 - key: container.image.name value: - stringValue: quay.io/jetstack/cert-manager-cainjector + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: v1.14.4 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -3404,19 +3257,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: cert-manager-cainjector + stringValue: coredns - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-cainjector-5c5695d979-h7c2k + stringValue: coredns-76f75df574-j6vjb - key: k8s.pod.uid value: - stringValue: 5a67f651-add4-43f6-b2a7-06afb5fef617 + stringValue: c0dd36df-1e0c-4feb-b1b7-419681595dd2 - key: metric_source value: stringValue: kubernetes @@ -3424,20 +3277,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "52428800" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 82b7c36c5da8acb40f66be5b2c70430bb7d7c84e128bede5bc325f94653839bd + stringValue: 15ff7b753a6950674b9e78ec8274e73bd135699d5e2e5744e22287da8d27fadc - key: container.image.name value: - stringValue: registry.k8s.io/etcd + stringValue: docker.io/kindest/kindnetd - key: container.image.tag value: - stringValue: 3.5.10-0 + stringValue: v20230511-dc714da8 - key: customfield1 value: stringValue: customvalue1 @@ -3449,7 +3302,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: etcd + stringValue: kindnet-cni - key: k8s.namespace.name value: stringValue: kube-system @@ -3458,10 +3311,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: etcd-kind-control-plane + stringValue: kindnet-b4pd7 - key: k8s.pod.uid value: - stringValue: 68828dad-2ca2-47ca-914e-f41cfd58244b + stringValue: 5c574843-642d-4ba6-bfd8-9aa160827de3 - key: metric_source value: stringValue: kubernetes @@ -3469,20 +3322,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "524288000" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 9001b70e2443496dc4699019d151e7ac94b30c7555c9f95e0e9fb569a3c5985c + stringValue: 50b808281e95714072a15e744c529bba4c3462043e9bfb45b2bb451ea787dd73 - key: container.image.name value: - stringValue: quay.io/splunko11ytest/httpd + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: latest + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -3494,7 +3347,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: prometheus-annotation-test + stringValue: otel-collector - key: k8s.namespace.name value: stringValue: default @@ -3503,10 +3356,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: prometheus-annotation-test-cfc77c7b9-86vg5 + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-59674d665-tc4ss - key: k8s.pod.uid value: - stringValue: 558db553-7cc6-44f2-9039-f81e43d0bc25 + stringValue: c751b5f2-0b6b-418f-b71b-606330a83430 - key: metric_source value: stringValue: kubernetes @@ -3514,20 +3367,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "524288000" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: ad771ceab740a5a51b3c5e67b8ff36743ef86776f28942fcb28b22c4f37b309d + stringValue: 5eb6066cb19df83f23df91e843654e456e334a1fb7eadf2c699fcf5106506b74 - key: container.image.name value: - stringValue: quay.io/splunko11ytest/dotnet_test + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: latest + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -3539,7 +3392,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: dotnet-test + stringValue: otel-collector - key: k8s.namespace.name value: stringValue: default @@ -3548,10 +3401,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: dotnet-test-5479c475fc-qpr6c + stringValue: sock-splunk-otel-collector-agent-6zqmr - key: k8s.pod.uid value: - stringValue: bd83fe1d-786d-4da7-889e-cee578e6f2f8 + stringValue: 4d0c9753-5f12-4ffb-a9c7-da33948c8c7f - key: metric_source value: stringValue: kubernetes @@ -3559,20 +3412,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "67108864" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: af7431cadfb9e46f242716f4588134dee006641290c1405f88e468beb2fa559d + stringValue: afc7413fdca060dddc8be931db2d2974c5348f058d7267fd13830251ad78fd69 - key: container.image.name value: - stringValue: ghcr.io/open-telemetry/opentelemetry-operator/target-allocator + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator - key: container.image.tag value: - stringValue: v0.105.0 + stringValue: 0.110.0 - key: customfield1 value: stringValue: customvalue1 @@ -3584,7 +3437,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: targetallocator + stringValue: manager - key: k8s.namespace.name value: stringValue: default @@ -3593,10 +3446,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4-rpj6g + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: 4e7bef74-37d2-4380-b5d7-c0ce1476be95 + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -3604,20 +3457,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "104857600" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e2ea169579f87203b926492d33050b56fd253b2e07bd66730339fc75a2fd4621 + stringValue: c260d848811ce9c4f324718840ef701569a548e7e769be413d466e1586b6606c - key: container.image.name value: - stringValue: registry.k8s.io/kube-controller-manager + stringValue: registry.k8s.io/etcd - key: container.image.tag value: - stringValue: v1.29.0 + stringValue: 3.5.10-0 - key: customfield1 value: stringValue: customvalue1 @@ -3629,7 +3482,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-controller-manager + stringValue: etcd - key: k8s.namespace.name value: stringValue: kube-system @@ -3638,10 +3491,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-controller-manager-kind-control-plane + stringValue: etcd-kind-control-plane - key: k8s.pod.uid value: - stringValue: 5c40ac1e-5432-4249-b754-4795b36d4c99 + stringValue: 53f92a39-92e9-4ae4-b3e5-6f32ac6fb705 - key: metric_source value: stringValue: kubernetes @@ -3649,20 +3502,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "67108864" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e6089c166eeb1823e805c0845d43a777ae52ac054fe8ecc33805204995de77e7 + stringValue: f463a6bb8e665cbe3927a3e0ae395a54955cdf6228c2957da1e925807d9f816f - key: container.image.name value: - stringValue: quay.io/splunko11ytest/java_test + stringValue: quay.io/brancz/kube-rbac-proxy - key: container.image.tag value: - stringValue: latest + stringValue: v0.18.1 - key: customfield1 value: stringValue: customvalue1 @@ -3674,7 +3527,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: java-test + stringValue: kube-rbac-proxy - key: k8s.namespace.name value: stringValue: default @@ -3683,10 +3536,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: java-test-5c4d6479b8-j7fmr + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: 63ca8dfe-1747-4097-9b9d-071b1cb3b891 + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -3694,20 +3547,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "73400320" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 + stringValue: f981b0fd2934f376127fbe25d53a62eb4637e7a6eb554b34aa0cbfe0d1fadaa3 - key: container.image.name value: - stringValue: docker.io/kindest/kindnetd + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: v20230511-dc714da8 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -3719,7 +3572,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kindnet-cni + stringValue: coredns - key: k8s.namespace.name value: stringValue: kube-system @@ -3728,10 +3581,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kindnet-9xfzp + stringValue: coredns-76f75df574-2gdxf - key: k8s.pod.uid value: - stringValue: f8149b85-dab1-482e-a735-0c29a953061b + stringValue: cbe6b06d-1d5a-4235-8ded-a3d2b497138d - key: metric_source value: stringValue: kubernetes @@ -3739,23 +3592,23 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - name: k8s.container.restarts + name: k8s.container.memory_request - gauge: dataPoints: - - asDouble: 0.2 + - asDouble: 0.1 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 + stringValue: 15ff7b753a6950674b9e78ec8274e73bd135699d5e2e5744e22287da8d27fadc - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: docker.io/kindest/kindnetd - key: container.image.tag value: - stringValue: 0.113.0 + stringValue: v20230511-dc714da8 - key: customfield1 value: stringValue: customvalue1 @@ -3767,19 +3620,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: kindnet-cni - key: k8s.namespace.name value: - stringValue: default + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj + stringValue: kindnet-b4pd7 - key: k8s.pod.uid value: - stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c + stringValue: 5c574843-642d-4ba6-bfd8-9aa160827de3 - key: metric_source value: stringValue: kubernetes @@ -3787,20 +3640,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.1 + - asDouble: 0.2 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 + stringValue: 50b808281e95714072a15e744c529bba4c3462043e9bfb45b2bb451ea787dd73 - key: container.image.name value: - stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: 0.116.0 + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -3812,7 +3665,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: manager + stringValue: otel-collector - key: k8s.namespace.name value: stringValue: default @@ -3821,10 +3674,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-59674d665-tc4ss - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: c751b5f2-0b6b-418f-b71b-606330a83430 - key: metric_source value: stringValue: kubernetes @@ -3839,13 +3692,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 + stringValue: 5eb6066cb19df83f23df91e843654e456e334a1fb7eadf2c699fcf5106506b74 - key: container.image.name value: stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: 0.113.0 + stringValue: 0.117.0 - key: customfield1 value: stringValue: customvalue1 @@ -3866,10 +3719,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-rm8js + stringValue: sock-splunk-otel-collector-agent-6zqmr - key: k8s.pod.uid value: - stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 + stringValue: 4d0c9753-5f12-4ffb-a9c7-da33948c8c7f - key: metric_source value: stringValue: kubernetes @@ -3877,20 +3730,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.5 + - asDouble: 0.1 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac + stringValue: afc7413fdca060dddc8be931db2d2974c5348f058d7267fd13830251ad78fd69 - key: container.image.name value: - stringValue: quay.io/brancz/kube-rbac-proxy + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator - key: container.image.tag value: - stringValue: v0.18.1 + stringValue: 0.110.0 - key: customfield1 value: stringValue: customvalue1 @@ -3902,7 +3755,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-rbac-proxy + stringValue: manager - key: k8s.namespace.name value: stringValue: default @@ -3911,10 +3764,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-768dffbcb8-q7jff + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -3922,20 +3775,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.1 + - asDouble: 0.5 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 + stringValue: f463a6bb8e665cbe3927a3e0ae395a54955cdf6228c2957da1e925807d9f816f - key: container.image.name value: - stringValue: docker.io/kindest/kindnetd + stringValue: quay.io/brancz/kube-rbac-proxy - key: container.image.tag value: - stringValue: v20230511-dc714da8 + stringValue: v0.18.1 - key: customfield1 value: stringValue: customvalue1 @@ -3947,19 +3800,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kindnet-cni + stringValue: kube-rbac-proxy - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kindnet-9xfzp + stringValue: sock-operator-869bddff5c-q62nw - key: k8s.pod.uid value: - stringValue: f8149b85-dab1-482e-a735-0c29a953061b + stringValue: 60ad83a5-2a3f-4943-91a5-5cf771eb42c9 - key: metric_source value: stringValue: kubernetes @@ -3989,7 +3842,7 @@ resourceMetrics: stringValue: cert-manager - key: k8s.namespace.uid value: - stringValue: 0333ceb4-8c45-4aa4-9f30-e4611c1ba293 + stringValue: c5128346-03c0-426c-946c-72769ec6cd0e - key: metric_source value: stringValue: kubernetes @@ -4016,7 +3869,7 @@ resourceMetrics: stringValue: default - key: k8s.namespace.uid value: - stringValue: ec9c3e28-5900-4a19-8673-1849ea3d4822 + stringValue: 4041dac3-5365-4b4f-9727-edba78c405d3 - key: metric_source value: stringValue: kubernetes @@ -4043,7 +3896,7 @@ resourceMetrics: stringValue: kube-node-lease - key: k8s.namespace.uid value: - stringValue: e8150282-bdde-4b60-b5da-5258f5acd360 + stringValue: b5b704d1-3e89-4ff8-b3f1-813dcc762d1e - key: metric_source value: stringValue: kubernetes @@ -4070,7 +3923,7 @@ resourceMetrics: stringValue: kube-public - key: k8s.namespace.uid value: - stringValue: e85b2621-5db2-409c-8c4b-800a6b0ffda5 + stringValue: 28138937-7c9c-495b-ab56-238c299ab484 - key: metric_source value: stringValue: kubernetes @@ -4097,7 +3950,7 @@ resourceMetrics: stringValue: kube-system - key: k8s.namespace.uid value: - stringValue: 138057a9-3b09-42fe-88c0-c450ab0c801e + stringValue: 8819e4f7-83c6-42b6-a46f-e8049bf06498 - key: metric_source value: stringValue: kubernetes @@ -4124,7 +3977,7 @@ resourceMetrics: stringValue: local-path-storage - key: k8s.namespace.uid value: - stringValue: 43f6f82f-b222-4526-b1e9-f254882a95b3 + stringValue: 7e93cb2d-58bd-4e65-8238-ae99e4291970 - key: metric_source value: stringValue: kubernetes @@ -4151,7 +4004,7 @@ resourceMetrics: stringValue: ns-w-exclude - key: k8s.namespace.uid value: - stringValue: 1552ccba-ac45-4694-ab67-186fe7e3fb91 + stringValue: 7f169b1a-7749-49f9-9fd6-eb9ba7a5ccff - key: metric_source value: stringValue: kubernetes @@ -4178,7 +4031,7 @@ resourceMetrics: stringValue: ns-w-index - key: k8s.namespace.uid value: - stringValue: dcb6c3e6-3e4c-4cc2-9199-d2c0162ce5eb + stringValue: 71da66e5-f834-40e4-8326-72bf8be9876c - key: metric_source value: stringValue: kubernetes @@ -4205,7 +4058,7 @@ resourceMetrics: stringValue: ns-wo-index - key: k8s.namespace.uid value: - stringValue: 3d3deb73-f969-4042-9ee6-2760ce818ee9 + stringValue: cd4399fe-98cd-405c-9e87-142cfc4d78fb - key: metric_source value: stringValue: kubernetes @@ -4235,7 +4088,7 @@ resourceMetrics: stringValue: cert-manager - key: k8s.deployment.uid value: - stringValue: 0411cd92-0907-4a24-b0aa-50471f720a3f + stringValue: 56b9ded6-8560-4fa3-836e-45e2ad634a81 - key: k8s.namespace.name value: stringValue: cert-manager @@ -4265,7 +4118,7 @@ resourceMetrics: stringValue: cert-manager-cainjector - key: k8s.deployment.uid value: - stringValue: f3c40b77-bed5-4643-a630-851aa418186a + stringValue: b5cb47e6-3199-4e9c-838e-c438dd2061b1 - key: k8s.namespace.name value: stringValue: cert-manager @@ -4295,7 +4148,7 @@ resourceMetrics: stringValue: cert-manager-webhook - key: k8s.deployment.uid value: - stringValue: 0afc64c5-b327-4611-871d-e9061e984240 + stringValue: b9e1669e-b519-4c4d-b070-69f0197443b7 - key: k8s.namespace.name value: stringValue: cert-manager @@ -4325,7 +4178,7 @@ resourceMetrics: stringValue: coredns - key: k8s.deployment.uid value: - stringValue: 01557217-542e-474e-8163-3c904c2ff031 + stringValue: 8c6389e5-f954-4872-9674-6ffbac869c8f - key: k8s.namespace.name value: stringValue: kube-system @@ -4355,7 +4208,7 @@ resourceMetrics: stringValue: dotnet-test - key: k8s.deployment.uid value: - stringValue: 6100532a-534f-4b43-9e3f-c04717efc797 + stringValue: 0e90fccf-fbb6-49ae-93c6-f628023425fe - key: k8s.namespace.name value: stringValue: default @@ -4366,7 +4219,7 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: @@ -4385,7 +4238,7 @@ resourceMetrics: stringValue: java-test - key: k8s.deployment.uid value: - stringValue: 3bbabf1d-aeee-4015-8c01-f4d41b89fea3 + stringValue: 0395fdfe-3f1d-404c-b310-a246ea64e9af - key: k8s.namespace.name value: stringValue: default @@ -4415,7 +4268,7 @@ resourceMetrics: stringValue: local-path-provisioner - key: k8s.deployment.uid value: - stringValue: 1ef5c8b1-0c0f-4573-b3b7-c1f8cfb48378 + stringValue: 2b348aa7-d104-4ecf-9fd9-093202f4e23b - key: k8s.namespace.name value: stringValue: local-path-storage @@ -4426,7 +4279,7 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: @@ -4445,7 +4298,7 @@ resourceMetrics: stringValue: nodejs-test - key: k8s.deployment.uid value: - stringValue: 91f0e846-8d66-4d2d-8a65-ad0866560012 + stringValue: af333bc4-b7fd-4e04-83bb-b0f056aa4065 - key: k8s.namespace.name value: stringValue: default @@ -4475,7 +4328,37 @@ resourceMetrics: stringValue: prometheus-annotation-test - key: k8s.deployment.uid value: - stringValue: 42a2b74d-011e-4076-9ecc-74c483fd78f2 + stringValue: 00b5a036-dbd8-4066-a0e8-b3c41a4403f3 + - key: k8s.namespace.name + value: + stringValue: default + - key: metric_source + value: + stringValue: kubernetes + - key: receiver + value: + stringValue: k8scluster + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.deployment.name + value: + stringValue: python-test + - key: k8s.deployment.uid + value: + stringValue: 85a71a2c-c0f7-4a5f-99ef-06a704b7783e - key: k8s.namespace.name value: stringValue: default @@ -4505,7 +4388,7 @@ resourceMetrics: stringValue: sock-operator - key: k8s.deployment.uid value: - stringValue: 0ac9fc1b-abf1-487c-bae3-c85c85b215fb + stringValue: fbc6eaca-0133-4f3d-95ab-b4bce254f467 - key: k8s.namespace.name value: stringValue: default @@ -4535,7 +4418,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-k8s-cluster-receiver - key: k8s.deployment.uid value: - stringValue: 25b2563f-f023-40bb-864d-177c08d1c00c + stringValue: f3c90ac1-c9de-46a6-9479-d8326990abc7 - key: k8s.namespace.name value: stringValue: default @@ -4565,7 +4448,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-ta - key: k8s.deployment.uid value: - stringValue: fa1fd60a-a693-4842-8cc4-9dd96d675d06 + stringValue: b8a608b5-b7cf-4ec6-abbe-2f4d9b17948e - key: k8s.namespace.name value: stringValue: default @@ -4598,7 +4481,7 @@ resourceMetrics: stringValue: cert-manager - key: k8s.deployment.uid value: - stringValue: 0411cd92-0907-4a24-b0aa-50471f720a3f + stringValue: 56b9ded6-8560-4fa3-836e-45e2ad634a81 - key: k8s.namespace.name value: stringValue: cert-manager @@ -4628,7 +4511,7 @@ resourceMetrics: stringValue: cert-manager-cainjector - key: k8s.deployment.uid value: - stringValue: f3c40b77-bed5-4643-a630-851aa418186a + stringValue: b5cb47e6-3199-4e9c-838e-c438dd2061b1 - key: k8s.namespace.name value: stringValue: cert-manager @@ -4658,7 +4541,7 @@ resourceMetrics: stringValue: cert-manager-webhook - key: k8s.deployment.uid value: - stringValue: 0afc64c5-b327-4611-871d-e9061e984240 + stringValue: b9e1669e-b519-4c4d-b070-69f0197443b7 - key: k8s.namespace.name value: stringValue: cert-manager @@ -4688,7 +4571,7 @@ resourceMetrics: stringValue: coredns - key: k8s.deployment.uid value: - stringValue: 01557217-542e-474e-8163-3c904c2ff031 + stringValue: 8c6389e5-f954-4872-9674-6ffbac869c8f - key: k8s.namespace.name value: stringValue: kube-system @@ -4718,7 +4601,7 @@ resourceMetrics: stringValue: dotnet-test - key: k8s.deployment.uid value: - stringValue: 6100532a-534f-4b43-9e3f-c04717efc797 + stringValue: 0e90fccf-fbb6-49ae-93c6-f628023425fe - key: k8s.namespace.name value: stringValue: default @@ -4748,7 +4631,7 @@ resourceMetrics: stringValue: java-test - key: k8s.deployment.uid value: - stringValue: 3bbabf1d-aeee-4015-8c01-f4d41b89fea3 + stringValue: 0395fdfe-3f1d-404c-b310-a246ea64e9af - key: k8s.namespace.name value: stringValue: default @@ -4778,7 +4661,7 @@ resourceMetrics: stringValue: local-path-provisioner - key: k8s.deployment.uid value: - stringValue: 1ef5c8b1-0c0f-4573-b3b7-c1f8cfb48378 + stringValue: 2b348aa7-d104-4ecf-9fd9-093202f4e23b - key: k8s.namespace.name value: stringValue: local-path-storage @@ -4808,7 +4691,7 @@ resourceMetrics: stringValue: nodejs-test - key: k8s.deployment.uid value: - stringValue: 91f0e846-8d66-4d2d-8a65-ad0866560012 + stringValue: af333bc4-b7fd-4e04-83bb-b0f056aa4065 - key: k8s.namespace.name value: stringValue: default @@ -4838,7 +4721,37 @@ resourceMetrics: stringValue: prometheus-annotation-test - key: k8s.deployment.uid value: - stringValue: 42a2b74d-011e-4076-9ecc-74c483fd78f2 + stringValue: 00b5a036-dbd8-4066-a0e8-b3c41a4403f3 + - key: k8s.namespace.name + value: + stringValue: default + - key: metric_source + value: + stringValue: kubernetes + - key: receiver + value: + stringValue: k8scluster + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.deployment.name + value: + stringValue: python-test + - key: k8s.deployment.uid + value: + stringValue: 85a71a2c-c0f7-4a5f-99ef-06a704b7783e - key: k8s.namespace.name value: stringValue: default @@ -4868,7 +4781,7 @@ resourceMetrics: stringValue: sock-operator - key: k8s.deployment.uid value: - stringValue: 0ac9fc1b-abf1-487c-bae3-c85c85b215fb + stringValue: fbc6eaca-0133-4f3d-95ab-b4bce254f467 - key: k8s.namespace.name value: stringValue: default @@ -4898,7 +4811,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-k8s-cluster-receiver - key: k8s.deployment.uid value: - stringValue: 25b2563f-f023-40bb-864d-177c08d1c00c + stringValue: f3c90ac1-c9de-46a6-9479-d8326990abc7 - key: k8s.namespace.name value: stringValue: default @@ -4928,7 +4841,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-ta - key: k8s.deployment.uid value: - stringValue: fa1fd60a-a693-4842-8cc4-9dd96d675d06 + stringValue: b8a608b5-b7cf-4ec6-abbe-2f4d9b17948e - key: k8s.namespace.name value: stringValue: default @@ -4964,7 +4877,7 @@ resourceMetrics: stringValue: cert-manager-67c98b89c8 - key: k8s.replicaset.uid value: - stringValue: 7b42f487-280b-430a-b670-ef8f7795c516 + stringValue: 7955e1fb-2dec-4ddb-86af-77fe5d382112 - key: metric_source value: stringValue: kubernetes @@ -4994,7 +4907,7 @@ resourceMetrics: stringValue: cert-manager-cainjector-5c5695d979 - key: k8s.replicaset.uid value: - stringValue: 1d8e77d4-b9be-45d2-b4e0-eea4fffcdacd + stringValue: b7c85c60-c92c-470a-b95c-01b6409ae208 - key: metric_source value: stringValue: kubernetes @@ -5024,7 +4937,7 @@ resourceMetrics: stringValue: cert-manager-webhook-7f9f8648b9 - key: k8s.replicaset.uid value: - stringValue: 42043811-fc43-4ad0-87a3-d747d51c350f + stringValue: 51f90033-ab38-47ef-b7d9-8872b5ee6a7b - key: metric_source value: stringValue: kubernetes @@ -5054,7 +4967,7 @@ resourceMetrics: stringValue: dotnet-test-5479c475fc - key: k8s.replicaset.uid value: - stringValue: e7be52a8-2517-412c-b27a-6294600ee83e + stringValue: 4fce340a-8293-41a7-a36e-c81037c9df20 - key: metric_source value: stringValue: kubernetes @@ -5062,7 +4975,7 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: @@ -5084,7 +4997,7 @@ resourceMetrics: stringValue: java-test-5c4d6479b8 - key: k8s.replicaset.uid value: - stringValue: ba3559c4-273c-44ee-aedf-ade722b9b2e3 + stringValue: da7e6a0b-c32f-4981-85b2-746d5b7ddb4f - key: metric_source value: stringValue: kubernetes @@ -5092,7 +5005,7 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "0" attributes: - key: cluster_name value: @@ -5114,7 +5027,7 @@ resourceMetrics: stringValue: nodejs-test-56b74df9ff - key: k8s.replicaset.uid value: - stringValue: f6207697-49cc-40af-b3ac-f97f228b0025 + stringValue: 96f4ceac-b674-40f6-8609-19a547166de4 - key: metric_source value: stringValue: kubernetes @@ -5144,7 +5057,37 @@ resourceMetrics: stringValue: prometheus-annotation-test-cfc77c7b9 - key: k8s.replicaset.uid value: - stringValue: b93b7ff1-5ecf-49d3-af69-8df26c73d3e8 + stringValue: a5a38e86-34fd-4e48-9fe4-f994b133de5f + - key: metric_source + value: + stringValue: kubernetes + - key: receiver + value: + stringValue: k8scluster + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: default + - key: k8s.replicaset.name + value: + stringValue: python-test-84856b7fcd + - key: k8s.replicaset.uid + value: + stringValue: 2025ae2b-3811-4eb8-950f-e923912c56c7 - key: metric_source value: stringValue: kubernetes @@ -5171,10 +5114,10 @@ resourceMetrics: stringValue: default - key: k8s.replicaset.name value: - stringValue: sock-operator-768dffbcb8 + stringValue: sock-operator-869bddff5c - key: k8s.replicaset.uid value: - stringValue: 86862db6-a9f6-433f-9dff-cfcad25b822e + stringValue: 41d19321-fa22-4cf9-8677-c492ae1bce8a - key: metric_source value: stringValue: kubernetes @@ -5201,10 +5144,10 @@ resourceMetrics: stringValue: default - key: k8s.replicaset.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95 + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-59674d665 - key: k8s.replicaset.uid value: - stringValue: ed48b4b4-1bf7-4a60-9b69-543007ef27bc + stringValue: c9e689cb-687c-44ec-b64f-2bebcb8c5dea - key: metric_source value: stringValue: kubernetes @@ -5234,7 +5177,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4 - key: k8s.replicaset.uid value: - stringValue: b2d75e9f-1de8-4549-91ca-4ff6f282c319 + stringValue: 2efa97c0-3892-4823-92c9-ee8428e7b418 - key: metric_source value: stringValue: kubernetes @@ -5264,7 +5207,7 @@ resourceMetrics: stringValue: coredns-76f75df574 - key: k8s.replicaset.uid value: - stringValue: af56eca2-a6ec-485b-8547-f065708c4887 + stringValue: f0dd7d65-4a71-4526-902f-b7bb2efbff68 - key: metric_source value: stringValue: kubernetes @@ -5294,7 +5237,7 @@ resourceMetrics: stringValue: local-path-provisioner-6f8956fb48 - key: k8s.replicaset.uid value: - stringValue: bc94f22c-80e8-4eaa-8ee2-f7c1109a5ffc + stringValue: ca1166e9-97b0-4381-94c9-556666747e39 - key: metric_source value: stringValue: kubernetes @@ -5327,7 +5270,7 @@ resourceMetrics: stringValue: cert-manager-67c98b89c8 - key: k8s.replicaset.uid value: - stringValue: 7b42f487-280b-430a-b670-ef8f7795c516 + stringValue: 7955e1fb-2dec-4ddb-86af-77fe5d382112 - key: metric_source value: stringValue: kubernetes @@ -5357,7 +5300,7 @@ resourceMetrics: stringValue: cert-manager-cainjector-5c5695d979 - key: k8s.replicaset.uid value: - stringValue: 1d8e77d4-b9be-45d2-b4e0-eea4fffcdacd + stringValue: b7c85c60-c92c-470a-b95c-01b6409ae208 - key: metric_source value: stringValue: kubernetes @@ -5387,7 +5330,7 @@ resourceMetrics: stringValue: cert-manager-webhook-7f9f8648b9 - key: k8s.replicaset.uid value: - stringValue: 42043811-fc43-4ad0-87a3-d747d51c350f + stringValue: 51f90033-ab38-47ef-b7d9-8872b5ee6a7b - key: metric_source value: stringValue: kubernetes @@ -5417,7 +5360,7 @@ resourceMetrics: stringValue: dotnet-test-5479c475fc - key: k8s.replicaset.uid value: - stringValue: e7be52a8-2517-412c-b27a-6294600ee83e + stringValue: 4fce340a-8293-41a7-a36e-c81037c9df20 - key: metric_source value: stringValue: kubernetes @@ -5447,7 +5390,7 @@ resourceMetrics: stringValue: java-test-5c4d6479b8 - key: k8s.replicaset.uid value: - stringValue: ba3559c4-273c-44ee-aedf-ade722b9b2e3 + stringValue: da7e6a0b-c32f-4981-85b2-746d5b7ddb4f - key: metric_source value: stringValue: kubernetes @@ -5477,7 +5420,7 @@ resourceMetrics: stringValue: nodejs-test-56b74df9ff - key: k8s.replicaset.uid value: - stringValue: f6207697-49cc-40af-b3ac-f97f228b0025 + stringValue: 96f4ceac-b674-40f6-8609-19a547166de4 - key: metric_source value: stringValue: kubernetes @@ -5507,7 +5450,37 @@ resourceMetrics: stringValue: prometheus-annotation-test-cfc77c7b9 - key: k8s.replicaset.uid value: - stringValue: b93b7ff1-5ecf-49d3-af69-8df26c73d3e8 + stringValue: a5a38e86-34fd-4e48-9fe4-f994b133de5f + - key: metric_source + value: + stringValue: kubernetes + - key: receiver + value: + stringValue: k8scluster + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: default + - key: k8s.replicaset.name + value: + stringValue: python-test-84856b7fcd + - key: k8s.replicaset.uid + value: + stringValue: 2025ae2b-3811-4eb8-950f-e923912c56c7 - key: metric_source value: stringValue: kubernetes @@ -5534,10 +5507,10 @@ resourceMetrics: stringValue: default - key: k8s.replicaset.name value: - stringValue: sock-operator-768dffbcb8 + stringValue: sock-operator-869bddff5c - key: k8s.replicaset.uid value: - stringValue: 86862db6-a9f6-433f-9dff-cfcad25b822e + stringValue: 41d19321-fa22-4cf9-8677-c492ae1bce8a - key: metric_source value: stringValue: kubernetes @@ -5564,10 +5537,10 @@ resourceMetrics: stringValue: default - key: k8s.replicaset.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95 + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-59674d665 - key: k8s.replicaset.uid value: - stringValue: ed48b4b4-1bf7-4a60-9b69-543007ef27bc + stringValue: c9e689cb-687c-44ec-b64f-2bebcb8c5dea - key: metric_source value: stringValue: kubernetes @@ -5597,7 +5570,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4 - key: k8s.replicaset.uid value: - stringValue: b2d75e9f-1de8-4549-91ca-4ff6f282c319 + stringValue: 2efa97c0-3892-4823-92c9-ee8428e7b418 - key: metric_source value: stringValue: kubernetes @@ -5627,7 +5600,7 @@ resourceMetrics: stringValue: coredns-76f75df574 - key: k8s.replicaset.uid value: - stringValue: af56eca2-a6ec-485b-8547-f065708c4887 + stringValue: f0dd7d65-4a71-4526-902f-b7bb2efbff68 - key: metric_source value: stringValue: kubernetes @@ -5657,7 +5630,7 @@ resourceMetrics: stringValue: local-path-provisioner-6f8956fb48 - key: k8s.replicaset.uid value: - stringValue: bc94f22c-80e8-4eaa-8ee2-f7c1109a5ffc + stringValue: ca1166e9-97b0-4381-94c9-556666747e39 - key: metric_source value: stringValue: kubernetes @@ -5687,7 +5660,7 @@ resourceMetrics: stringValue: kindnet - key: k8s.daemonset.uid value: - stringValue: 2415753e-2368-49e3-af97-0f97ed8328d7 + stringValue: 5a546023-5d3b-4040-ab88-614a405accc2 - key: k8s.namespace.name value: stringValue: kube-system @@ -5717,7 +5690,7 @@ resourceMetrics: stringValue: kube-proxy - key: k8s.daemonset.uid value: - stringValue: 708ab381-ee91-4714-9baf-a934e69aaf04 + stringValue: 0759557b-9910-4f4e-809b-e26348076bb1 - key: k8s.namespace.name value: stringValue: kube-system @@ -5747,7 +5720,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-agent - key: k8s.daemonset.uid value: - stringValue: 524dde1d-442c-45d0-ba4e-cdd483ed7e59 + stringValue: 92574a9b-f1b0-4eb5-bf59-ca54edef93ef - key: k8s.namespace.name value: stringValue: default @@ -5780,7 +5753,7 @@ resourceMetrics: stringValue: kindnet - key: k8s.daemonset.uid value: - stringValue: 2415753e-2368-49e3-af97-0f97ed8328d7 + stringValue: 5a546023-5d3b-4040-ab88-614a405accc2 - key: k8s.namespace.name value: stringValue: kube-system @@ -5810,7 +5783,7 @@ resourceMetrics: stringValue: kube-proxy - key: k8s.daemonset.uid value: - stringValue: 708ab381-ee91-4714-9baf-a934e69aaf04 + stringValue: 0759557b-9910-4f4e-809b-e26348076bb1 - key: k8s.namespace.name value: stringValue: kube-system @@ -5840,7 +5813,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-agent - key: k8s.daemonset.uid value: - stringValue: 524dde1d-442c-45d0-ba4e-cdd483ed7e59 + stringValue: 92574a9b-f1b0-4eb5-bf59-ca54edef93ef - key: k8s.namespace.name value: stringValue: default @@ -5873,7 +5846,7 @@ resourceMetrics: stringValue: kindnet - key: k8s.daemonset.uid value: - stringValue: 2415753e-2368-49e3-af97-0f97ed8328d7 + stringValue: 5a546023-5d3b-4040-ab88-614a405accc2 - key: k8s.namespace.name value: stringValue: kube-system @@ -5903,7 +5876,7 @@ resourceMetrics: stringValue: kube-proxy - key: k8s.daemonset.uid value: - stringValue: 708ab381-ee91-4714-9baf-a934e69aaf04 + stringValue: 0759557b-9910-4f4e-809b-e26348076bb1 - key: k8s.namespace.name value: stringValue: kube-system @@ -5933,7 +5906,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-agent - key: k8s.daemonset.uid value: - stringValue: 524dde1d-442c-45d0-ba4e-cdd483ed7e59 + stringValue: 92574a9b-f1b0-4eb5-bf59-ca54edef93ef - key: k8s.namespace.name value: stringValue: default @@ -5966,7 +5939,7 @@ resourceMetrics: stringValue: kindnet - key: k8s.daemonset.uid value: - stringValue: 2415753e-2368-49e3-af97-0f97ed8328d7 + stringValue: 5a546023-5d3b-4040-ab88-614a405accc2 - key: k8s.namespace.name value: stringValue: kube-system @@ -5996,7 +5969,7 @@ resourceMetrics: stringValue: kube-proxy - key: k8s.daemonset.uid value: - stringValue: 708ab381-ee91-4714-9baf-a934e69aaf04 + stringValue: 0759557b-9910-4f4e-809b-e26348076bb1 - key: k8s.namespace.name value: stringValue: kube-system @@ -6026,7 +5999,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-agent - key: k8s.daemonset.uid value: - stringValue: 524dde1d-442c-45d0-ba4e-cdd483ed7e59 + stringValue: 92574a9b-f1b0-4eb5-bf59-ca54edef93ef - key: k8s.namespace.name value: stringValue: default @@ -6059,7 +6032,7 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.node.uid value: - stringValue: 15985013-7564-45b7-a2ae-3b5f5d9b93e5 + stringValue: e879976d-29c7-441f-926a-e4d94e6e3795 - key: metric_source value: stringValue: kubernetes diff --git a/functional_tests/testdata/expected_kind_values/expected_python_traces.yaml b/functional_tests/testdata/expected_kind_values/expected_python_traces.yaml new file mode 100644 index 000000000..f347c4768 --- /dev/null +++ b/functional_tests/testdata/expected_kind_values/expected_python_traces.yaml @@ -0,0 +1,334 @@ +resourceSpans: + - resource: + attributes: + - key: telemetry.sdk.language + value: + stringValue: python + - key: telemetry.sdk.name + value: + stringValue: opentelemetry + - key: telemetry.sdk.version + value: + stringValue: 1.29.0 + - key: splunk.zc.method + value: + stringValue: autoinstrumentation-python:0.50b0 + - key: k8s.container.name + value: + stringValue: python-test + - key: k8s.deployment.name + value: + stringValue: python-test + - key: k8s.namespace.name + value: + stringValue: default + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: python-test-84856b7fcd-vv6sr + - key: k8s.replicaset.name + value: + stringValue: python-test-84856b7fcd + - key: service.instance.id + value: + stringValue: default.python-test-84856b7fcd-vv6sr.python-test + - key: service.version + value: + stringValue: latest + - key: service.name + value: + stringValue: python-test + - key: telemetry.auto.version + value: + stringValue: 0.50b0 + - key: k8s.pod.ip + value: + stringValue: 10.244.0.40 + - key: k8s.pod.labels.app + value: + stringValue: python-test + - key: k8s.pod.uid + value: + stringValue: 455974ad-35dc-49d3-92eb-de0ab69d5836 + - key: container.image.name + value: + stringValue: quay.io/splunko11ytest/python_test + - key: container.image.tag + value: + stringValue: latest + - key: container.id + value: + stringValue: 7f281a7b98f45c809a54ff01599c93b7976aced06e44dddd6066606e088b3a5a + - key: host.name + value: + stringValue: kind-control-plane + - key: os.type + value: + stringValue: linux + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: deployment.environment + value: + stringValue: dev + schemaUrl: https://opentelemetry.io/schemas/1.6.1 + scopeSpans: + - scope: + name: opentelemetry.instrumentation.flask + spans: + - attributes: + - key: http.method + value: + stringValue: GET + - key: http.server_name + value: + stringValue: 127.0.0.1 + - key: http.scheme + value: + stringValue: http + - key: net.host.name + value: + stringValue: localhost:5000 + - key: http.host + value: + stringValue: localhost:5000 + - key: net.host.port + value: + intValue: "5000" + - key: http.target + value: + stringValue: / + - key: net.peer.ip + value: + stringValue: 127.0.0.1 + - key: net.peer.port + value: + intValue: "42002" + - key: http.user_agent + value: + stringValue: curl/8.11.1 + - key: http.flavor + value: + stringValue: "1.1" + - key: http.route + value: + stringValue: / + - key: http.status_code + value: + intValue: "200" + endTimeUnixNano: "1738537999011463717" + flags: 256 + kind: 2 + name: GET / + parentSpanId: "" + spanId: 1707330433e4d8e4 + startTimeUnixNano: "1738537999010832884" + status: {} + traceId: 9b9872fbb0a1bf639c46a8db05415a38 + - attributes: + - key: http.method + value: + stringValue: GET + - key: http.server_name + value: + stringValue: 127.0.0.1 + - key: http.scheme + value: + stringValue: http + - key: net.host.name + value: + stringValue: localhost:5000 + - key: http.host + value: + stringValue: localhost:5000 + - key: net.host.port + value: + intValue: "5000" + - key: http.target + value: + stringValue: / + - key: net.peer.ip + value: + stringValue: 127.0.0.1 + - key: net.peer.port + value: + intValue: "42014" + - key: http.user_agent + value: + stringValue: curl/8.11.1 + - key: http.flavor + value: + stringValue: "1.1" + - key: http.route + value: + stringValue: / + - key: http.status_code + value: + intValue: "200" + endTimeUnixNano: "1738538000017988093" + flags: 256 + kind: 2 + name: GET / + parentSpanId: "" + spanId: 24821892cdeac83e + startTimeUnixNano: "1738538000017615009" + status: {} + traceId: 4f20271b39b951106833307921d8b6a3 + - attributes: + - key: http.method + value: + stringValue: GET + - key: http.server_name + value: + stringValue: 127.0.0.1 + - key: http.scheme + value: + stringValue: http + - key: net.host.name + value: + stringValue: localhost:5000 + - key: http.host + value: + stringValue: localhost:5000 + - key: net.host.port + value: + intValue: "5000" + - key: http.target + value: + stringValue: / + - key: net.peer.ip + value: + stringValue: 127.0.0.1 + - key: net.peer.port + value: + intValue: "42020" + - key: http.user_agent + value: + stringValue: curl/8.11.1 + - key: http.flavor + value: + stringValue: "1.1" + - key: http.route + value: + stringValue: / + - key: http.status_code + value: + intValue: "200" + endTimeUnixNano: "1738538001015676218" + flags: 256 + kind: 2 + name: GET / + parentSpanId: "" + spanId: 48bd69405e485012 + startTimeUnixNano: "1738538001015309135" + status: {} + traceId: f894e8387b27d59608a80a0178fdd74c + - attributes: + - key: http.method + value: + stringValue: GET + - key: http.server_name + value: + stringValue: 127.0.0.1 + - key: http.scheme + value: + stringValue: http + - key: net.host.name + value: + stringValue: localhost:5000 + - key: http.host + value: + stringValue: localhost:5000 + - key: net.host.port + value: + intValue: "5000" + - key: http.target + value: + stringValue: / + - key: net.peer.ip + value: + stringValue: 127.0.0.1 + - key: net.peer.port + value: + intValue: "42022" + - key: http.user_agent + value: + stringValue: curl/8.11.1 + - key: http.flavor + value: + stringValue: "1.1" + - key: http.route + value: + stringValue: / + - key: http.status_code + value: + intValue: "200" + endTimeUnixNano: "1738538002016890344" + flags: 256 + kind: 2 + name: GET / + parentSpanId: "" + spanId: 091d856d5d7a5316 + startTimeUnixNano: "1738538002016388510" + status: {} + traceId: 43cf54af7ede4e91aae44c225e54c713 + - attributes: + - key: http.method + value: + stringValue: GET + - key: http.server_name + value: + stringValue: 127.0.0.1 + - key: http.scheme + value: + stringValue: http + - key: net.host.name + value: + stringValue: localhost:5000 + - key: http.host + value: + stringValue: localhost:5000 + - key: net.host.port + value: + intValue: "5000" + - key: http.target + value: + stringValue: / + - key: net.peer.ip + value: + stringValue: 127.0.0.1 + - key: net.peer.port + value: + intValue: "60058" + - key: http.user_agent + value: + stringValue: curl/8.11.1 + - key: http.flavor + value: + stringValue: "1.1" + - key: http.route + value: + stringValue: / + - key: http.status_code + value: + intValue: "200" + endTimeUnixNano: "1738538003018585678" + flags: 256 + kind: 2 + name: GET / + parentSpanId: "" + spanId: 6c482df1d62e30d1 + startTimeUnixNano: "1738538003018231178" + status: {} + traceId: d7fdbbf42252c71fb442dc5796cf64d4 diff --git a/functional_tests/testdata/python/Dockerfile b/functional_tests/testdata/python/Dockerfile new file mode 100644 index 000000000..c5e51e718 --- /dev/null +++ b/functional_tests/testdata/python/Dockerfile @@ -0,0 +1,10 @@ +FROM python:3.13-alpine + +RUN apk add --no-cache bash curl + +RUN pip install Flask + +COPY start.sh / +COPY web.py / + +ENTRYPOINT ["bash", "start.sh"] diff --git a/functional_tests/testdata/python/Makefile b/functional_tests/testdata/python/Makefile new file mode 100644 index 000000000..ba7c534d7 --- /dev/null +++ b/functional_tests/testdata/python/Makefile @@ -0,0 +1,4 @@ + +.PHONY: push +push: + docker buildx build --file Dockerfile --platform linux/amd64,linux/arm64 --tag quay.io/splunko11ytest/python_test:latest --push . diff --git a/functional_tests/testdata/python/README.md b/functional_tests/testdata/python/README.md new file mode 100644 index 000000000..f85c4e38b --- /dev/null +++ b/functional_tests/testdata/python/README.md @@ -0,0 +1,15 @@ +# Python test image + +This image is used for testing the auto-instrumentation of Python application through the OpenTelemetry Operator. + +This image is pushed to https://quay.io/repository/splunko11ytest/python_test. + +The container performs two separate functions: +* It runs a Python HTTP server on port 8000 of the container host. +* It runs HTTP requests against the server every second. + +Running this container inside a Kubernetes cluster under observation of the operator therefore creates traces. + +## Develop + +Login to quay.io and push with `make push` diff --git a/functional_tests/testdata/python/deployment.yaml b/functional_tests/testdata/python/deployment.yaml new file mode 100644 index 000000000..bdbca22ae --- /dev/null +++ b/functional_tests/testdata/python/deployment.yaml @@ -0,0 +1,24 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: python-test +spec: + replicas: 1 + selector: + matchLabels: + app: python-test + template: + metadata: + name: python-test + labels: + app: python-test + annotations: + instrumentation.opentelemetry.io/inject-python: "true" + spec: + automountServiceAccountToken: false + containers: + - image: quay.io/splunko11ytest/python_test:latest + name: python-test + imagePullPolicy: IfNotPresent + nodeSelector: + kubernetes.io/os: "linux" diff --git a/functional_tests/testdata/python/start.sh b/functional_tests/testdata/python/start.sh new file mode 100755 index 000000000..ecbb0482b --- /dev/null +++ b/functional_tests/testdata/python/start.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +python3 web.py & +pypid=$! + + +loop=0 + +function stop() +{ + kill $pypid + loop=1 + echo "Good bye" +} + +trap stop SIGINT + +while [ $loop -eq 0 ]; do + curl http://localhost:5000 & + sleep 1 +done diff --git a/functional_tests/testdata/python/web.py b/functional_tests/testdata/python/web.py new file mode 100644 index 000000000..c0cf11f8f --- /dev/null +++ b/functional_tests/testdata/python/web.py @@ -0,0 +1,7 @@ +from flask import Flask +app = Flask(__name__) +@app.route("/") +def helloworld(): + return "Hello World!" +if __name__ == "__main__": + app.run() diff --git a/helm-charts/splunk-otel-collector/values.yaml b/helm-charts/splunk-otel-collector/values.yaml index c6bfbe272..2d20cde81 100644 --- a/helm-charts/splunk-otel-collector/values.yaml +++ b/helm-charts/splunk-otel-collector/values.yaml @@ -1289,7 +1289,7 @@ instrumentation: # value: apache_value python: repository: ghcr.io/open-telemetry/opentelemetry-operator/autoinstrumentation-python - tag: 0.44b0 + tag: 0.50b0 # env: # - name: PYTHON_ENV_VAR # value: python_value