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 693f210c54..82eaaa6974 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 @@ -17,9 +17,6 @@ metadata: release: default heritage: Helm app.kubernetes.io/component: otel-operator - annotations: - "helm.sh/hook": post-install,post-upgrade - "helm.sh/hook-weight": "5" spec: exporter: endpoint: http://default-splunk-otel-collector-agent.default.svc.cluster.local:4317 diff --git a/functional_tests/functional_test.go b/functional_tests/functional_test.go index bca0fb2b9d..a96b045d4c 100644 --- a/functional_tests/functional_test.go +++ b/functional_tests/functional_test.go @@ -134,6 +134,103 @@ func deployChartsAndApps(t *testing.T) { require.NoError(t, err) dynamicClient, err := dynamic.NewForConfig(kubeConfig) require.NoError(t, err) + decode := scheme.Codecs.UniversalDeserializer().Decode + + // load up Prometheus PodMonitor and ServiceMonitor CRDs: + stream, err := os.ReadFile(filepath.Join(testDir, manifestsDir, "prometheus_operator_crds.yaml")) + require.NoError(t, err) + sch := k8sruntime.NewScheme() + + for _, resourceYAML := range strings.Split(string(stream), "---") { + if len(resourceYAML) == 0 { + continue + } + + obj, groupVersionKind, err := decode( + []byte(resourceYAML), + nil, + nil) + require.NoError(t, err) + if groupVersionKind.Group == "apiextensions.k8s.io" && + groupVersionKind.Version == "v1" && + groupVersionKind.Kind == "CustomResourceDefinition" { + crd := obj.(*appextensionsv1.CustomResourceDefinition) + apiExtensions := extensionsClient.ApiextensionsV1().CustomResourceDefinitions() + crd, err := apiExtensions.Create(context.Background(), crd, metav1.CreateOptions{}) + require.NoError(t, err) + t.Logf("Deployed CRD %s", crd.Name) + for _, version := range crd.Spec.Versions { + sch.AddKnownTypeWithName( + schema.GroupVersionKind{ + Group: crd.Spec.Group, + Version: version.Name, + Kind: crd.Spec.Names.Kind, + }, + &unstructured.Unstructured{}, + ) + } + } + } + + // deploy the operator CRDs + stream, err = os.ReadFile(filepath.Join(testDir, manifestsDir, "operator_crds.yaml")) + require.NoError(t, err) + + for _, resourceYAML := range strings.Split(string(stream), "---") { + if len(resourceYAML) == 0 { + continue + } + + obj, groupVersionKind, err := decode( + []byte(resourceYAML), + nil, + nil) + require.NoError(t, err) + if groupVersionKind.Group == "apiextensions.k8s.io" && + groupVersionKind.Version == "v1" && + groupVersionKind.Kind == "CustomResourceDefinition" { + crd := obj.(*appextensionsv1.CustomResourceDefinition) + apiExtensions := extensionsClient.ApiextensionsV1().CustomResourceDefinitions() + crd, err := apiExtensions.Create(context.Background(), crd, metav1.CreateOptions{}) + require.NoError(t, err) + t.Logf("Deployed CRD %s", crd.Name) + for _, version := range crd.Spec.Versions { + sch.AddKnownTypeWithName( + schema.GroupVersionKind{ + Group: crd.Spec.Group, + Version: version.Name, + Kind: crd.Spec.Names.Kind, + }, + &unstructured.Unstructured{}, + ) + } + } + } + + codecs := serializer.NewCodecFactory(sch) + crdDecode := codecs.UniversalDeserializer().Decode + // Prometheus pod monitor + stream, err = os.ReadFile(filepath.Join(testDir, manifestsDir, "pod_monitor.yaml")) + require.NoError(t, err) + + podMonitor, _, err := crdDecode(stream, nil, nil) + require.NoError(t, err) + g := schema.GroupVersionResource{ + Group: "monitoring.coreos.com", + Version: "v1", + Resource: "podmonitors", + } + // CRDs sometimes take time to register. We retry deploying the pod monitor until such a time all CRDs are deployed. + require.EventuallyWithT(t, func(tt *assert.CollectT) { + _, err = dynamicClient.Resource(g).Namespace("default").Create(context.Background(), podMonitor.(*unstructured.Unstructured), metav1.CreateOptions{}) + if err != nil { + _, err2 := dynamicClient.Resource(g).Namespace("default").Update(context.Background(), podMonitor.(*unstructured.Unstructured), metav1.UpdateOptions{}) + assert.NoError(tt, err2) + if err2 != nil { + assert.NoError(tt, err) + } + } + }, 1*time.Minute, 5*time.Second) chartPath := filepath.Join("..", "helm-charts", "splunk-otel-collector") chart, err := loader.Load(chartPath) @@ -207,9 +304,8 @@ func deployChartsAndApps(t *testing.T) { deployments := client.AppsV1().Deployments("default") - decode := scheme.Codecs.UniversalDeserializer().Decode // NodeJS test app - stream, err := os.ReadFile(filepath.Join(testDir, "nodejs", "deployment.yaml")) + stream, err = os.ReadFile(filepath.Join(testDir, "nodejs", "deployment.yaml")) require.NoError(t, err) deployment, _, err := decode(stream, nil, nil) require.NoError(t, err) @@ -260,68 +356,6 @@ func deployChartsAndApps(t *testing.T) { require.NoError(t, err) } } - // load up Prometheus PodMonitor and ServiceMonitor CRDs: - stream, err = os.ReadFile(filepath.Join(testDir, manifestsDir, "prometheus_operator_crds.yaml")) - require.NoError(t, err) - sch := k8sruntime.NewScheme() - var crds []*appextensionsv1.CustomResourceDefinition - - for _, resourceYAML := range strings.Split(string(stream), "---") { - if len(resourceYAML) == 0 { - continue - } - - obj, groupVersionKind, err := decode( - []byte(resourceYAML), - nil, - nil) - require.NoError(t, err) - if groupVersionKind.Group == "apiextensions.k8s.io" && - groupVersionKind.Version == "v1" && - groupVersionKind.Kind == "CustomResourceDefinition" { - crd := obj.(*appextensionsv1.CustomResourceDefinition) - crds = append(crds, crd) - apiExtensions := extensionsClient.ApiextensionsV1().CustomResourceDefinitions() - crd, err := apiExtensions.Create(context.Background(), crd, metav1.CreateOptions{}) - require.NoError(t, err) - t.Logf("Deployed CRD %s", crd.Name) - for _, version := range crd.Spec.Versions { - sch.AddKnownTypeWithName( - schema.GroupVersionKind{ - Group: crd.Spec.Group, - Version: version.Name, - Kind: crd.Spec.Names.Kind, - }, - &unstructured.Unstructured{}, - ) - } - } - } - - codecs := serializer.NewCodecFactory(sch) - crdDecode := codecs.UniversalDeserializer().Decode - // Prometheus pod monitor - stream, err = os.ReadFile(filepath.Join(testDir, manifestsDir, "pod_monitor.yaml")) - require.NoError(t, err) - - podMonitor, _, err := crdDecode(stream, nil, nil) - require.NoError(t, err) - g := schema.GroupVersionResource{ - Group: "monitoring.coreos.com", - Version: "v1", - Resource: "podmonitors", - } - // CRDs sometimes take time to register. We retry deploying the pod monitor until such a time all CRDs are deployed. - require.EventuallyWithT(t, func(tt *assert.CollectT) { - _, err = dynamicClient.Resource(g).Namespace("default").Create(context.Background(), podMonitor.(*unstructured.Unstructured), metav1.CreateOptions{}) - if err != nil { - _, err2 := dynamicClient.Resource(g).Namespace("default").Update(context.Background(), podMonitor.(*unstructured.Unstructured), metav1.UpdateOptions{}) - assert.NoError(tt, err2) - if err2 != nil { - assert.NoError(tt, err) - } - } - }, 1*time.Minute, 5*time.Second) // Service stream, err = os.ReadFile(filepath.Join(testDir, manifestsDir, "service.yaml")) @@ -481,7 +515,6 @@ func teardown(t *testing.T) { crdstream, err := os.ReadFile(filepath.Join(testDir, manifestsDir, "prometheus_operator_crds.yaml")) require.NoError(t, err) - var crds []*appextensionsv1.CustomResourceDefinition for _, resourceYAML := range strings.Split(string(crdstream), "---") { if len(resourceYAML) == 0 { continue @@ -496,7 +529,29 @@ func teardown(t *testing.T) { groupVersionKind.Version == "v1" && groupVersionKind.Kind == "CustomResourceDefinition" { crd := obj.(*appextensionsv1.CustomResourceDefinition) - crds = append(crds, crd) + apiExtensions := extensionsClient.ApiextensionsV1().CustomResourceDefinitions() + _ = apiExtensions.Delete(context.Background(), crd.Name, metav1.DeleteOptions{ + GracePeriodSeconds: &waitTime, + }) + } + } + + crdstream, err = os.ReadFile(filepath.Join(testDir, manifestsDir, "operator_crds.yaml")) + require.NoError(t, err) + for _, resourceYAML := range strings.Split(string(crdstream), "---") { + if len(resourceYAML) == 0 { + continue + } + + obj, groupVersionKind, err := decode( + []byte(resourceYAML), + nil, + nil) + require.NoError(t, err) + if groupVersionKind.Group == "apiextensions.k8s.io" && + groupVersionKind.Version == "v1" && + groupVersionKind.Kind == "CustomResourceDefinition" { + crd := obj.(*appextensionsv1.CustomResourceDefinition) apiExtensions := extensionsClient.ApiextensionsV1().CustomResourceDefinitions() _ = apiExtensions.Delete(context.Background(), crd.Name, metav1.DeleteOptions{ GracePeriodSeconds: &waitTime, @@ -601,6 +656,7 @@ func testNodeJSTraces(t *testing.T) { 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"), @@ -729,6 +785,7 @@ func testDotNetTraces(t *testing.T) { ptracetest.IgnoreResourceAttributeValue("telemetry.auto.version"), ptracetest.IgnoreResourceAttributeValue("splunk.distro.version"), ptracetest.IgnoreResourceAttributeValue("splunk.zc.method"), + ptracetest.IgnoreResourceAttributeValue("service.instance.id"), ptracetest.IgnoreSpanAttributeValue("net.sock.peer.port"), ptracetest.IgnoreSpanAttributeValue("thread.id"), ptracetest.IgnoreSpanAttributeValue("thread.name"), @@ -1076,7 +1133,6 @@ func testAgentMetrics(t *testing.T) { "system.cpu.load_average.1m", "system.cpu.load_average.5m", "system.disk.operations", - "system.filesystem.usage", "system.memory.usage", "system.network.errors", "system.network.io", @@ -1085,37 +1141,13 @@ func testAgentMetrics(t *testing.T) { } checkMetricsAreEmitted(t, agentMetricsConsumer, metricNames, nil) - expectedHostmetricsMetrics, err := golden.ReadMetrics(filepath.Join(testDir, expectedValuesDir, "expected_hostmetrics_metrics.yaml")) - require.NoError(t, err) - selectHostmetricsMetrics := selectMetricSet(expectedHostmetricsMetrics, "system.filesystem.usage", agentMetricsConsumer, false) - require.NotNil(t, selectHostmetricsMetrics) - - err = pmetrictest.CompareMetrics(expectedHostmetricsMetrics, *selectHostmetricsMetrics, - pmetrictest.IgnoreTimestamp(), - pmetrictest.IgnoreStartTimestamp(), - pmetrictest.IgnoreResourceAttributeValue("device"), - pmetrictest.IgnoreMetricAttributeValue("k8s.pod.uid", metricNames...), - pmetrictest.IgnoreMetricAttributeValue("k8s.pod.name", metricNames...), - pmetrictest.IgnoreMetricAttributeValue("device", "system.network.errors", "system.network.io", "disk.utilization", "system.filesystem.usage", "system.disk.operations"), - pmetrictest.IgnoreMetricAttributeValue("mode", "system.filesystem.usage"), - pmetrictest.IgnoreMetricAttributeValue("direction", "system.network.errors", "system.network.io"), - pmetrictest.IgnoreSubsequentDataPoints("system.disk.operations", "system.network.errors", "system.network.io"), - pmetrictest.IgnoreMetricValues(), - pmetrictest.IgnoreScopeVersion(), - pmetrictest.IgnoreResourceMetricsOrder(), - pmetrictest.IgnoreMetricsOrder(), - pmetrictest.IgnoreScopeMetricsOrder(), - pmetrictest.IgnoreMetricDataPointsOrder(), - ) - assert.NoError(t, err) - expectedInternalMetricsFile := filepath.Join(testDir, expectedValuesDir, "expected_internal_metrics.yaml") expectedInternalMetrics, err := golden.ReadMetrics(expectedInternalMetricsFile) require.NoError(t, err) replaceWithStar := func(string) string { return "*" } - selectedInternalMetrics := selectMetricSet(expectedInternalMetrics, "otelcol_process_runtime_total_alloc_bytes", agentMetricsConsumer, true) + selectedInternalMetrics := selectMetricSet(expectedInternalMetrics, "otelcol_process_runtime_total_alloc_bytes", agentMetricsConsumer, false) if selectedInternalMetrics == nil { t.Skip("No metric batch identified with the right metric count, exiting") return @@ -1345,8 +1377,6 @@ func testHECMetrics(t *testing.T) { "system.disk.operations", "system.disk.pending_operations", "system.disk.weighted_io_time", - "system.filesystem.inodes.usage", - "system.filesystem.usage", "system.memory.usage", "system.network.connections", "system.network.dropped", 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 397f3de0d8..10ec768cdd 100644 --- a/functional_tests/testdata/expected_eks_values/expected_cluster_receiver.yaml +++ b/functional_tests/testdata/expected_eks_values/expected_cluster_receiver.yaml @@ -6,9 +6,18 @@ resourceMetrics: dataPoints: - asInt: "2" 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: cert-manager @@ -17,10 +26,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-cainjector-65c7bff89d-vksqw + stringValue: cert-manager-67c98b89c8-5dtxs - key: k8s.pod.uid value: - stringValue: 36d87b59-8ddf-47e7-a145-aeb81201d19a + stringValue: 9cd699ef-f612-4879-b1ce-04303d7b4f6c - key: metric_source value: stringValue: kubernetes @@ -30,9 +39,18 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "2" 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: cert-manager @@ -41,10 +59,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-cbcf9668d-9xvq5 + stringValue: cert-manager-cainjector-5c5695d979-h7c2k - key: k8s.pod.uid value: - stringValue: 3e54c119-9054-428c-aeb4-14088263b4c7 + stringValue: 5a67f651-add4-43f6-b2a7-06afb5fef617 - key: metric_source value: stringValue: kubernetes @@ -54,9 +72,18 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "2" 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: cert-manager @@ -65,10 +92,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-webhook-594cb9799b-jtv49 + stringValue: cert-manager-webhook-7f9f8648b9-dzq2l - key: k8s.pod.uid value: - stringValue: 4d5a76c4-db4f-466f-b925-13dc115f4b1b + stringValue: 18826d35-ead9-4637-a492-8d78156959f6 - key: metric_source value: stringValue: kubernetes @@ -78,9 +105,18 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "2" 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -89,10 +125,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: nodejs-test-57564b7dc9-pf2bk + stringValue: dotnet-test-5479c475fc-qpr6c - key: k8s.pod.uid value: - stringValue: b660efd2-e961-488a-af7a-2161f27565bb + stringValue: bd83fe1d-786d-4da7-889e-cee578e6f2f8 - key: metric_source value: stringValue: kubernetes @@ -102,9 +138,18 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "2" 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -113,10 +158,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: dotnet-test-57564b7dc9-pf2bk + stringValue: java-test-5c4d6479b8-j7fmr - key: k8s.pod.uid value: - stringValue: b660efd2-e961-488a-af7a-2161f27565bb + stringValue: 63ca8dfe-1747-4097-9b9d-071b1cb3b891 - key: metric_source value: stringValue: kubernetes @@ -126,9 +171,18 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "2" 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -137,10 +191,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-7867c9764-gdv94 + stringValue: nodejs-test-56b74df9ff-klgm7 - key: k8s.pod.uid value: - stringValue: 062e3244-7c7d-4f1a-84e5-93451dd93467 + stringValue: 89b46064-f8e5-46d6-b54e-79a1cc7948df - key: metric_source value: stringValue: kubernetes @@ -150,9 +204,18 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "2" 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -161,10 +224,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-pfm6z + stringValue: prometheus-annotation-test-cfc77c7b9-86vg5 - key: k8s.pod.uid value: - stringValue: 9afe2416-ad03-4b81-8b21-051643ed6f11 + stringValue: 558db553-7cc6-44f2-9039-f81e43d0bc25 - key: metric_source value: stringValue: kubernetes @@ -174,9 +237,18 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "2" 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -185,10 +257,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-8687f4bfbb86fbd + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: d310e423-e3ee-42ac-a284-9bab01bcbba4 + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -198,21 +270,30 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "2" 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: rotel-eks + stringValue: dev-operator - 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-5dd5756b68-ttk8c + stringValue: sock-splunk-otel-collector-agent-rm8js - key: k8s.pod.uid value: - stringValue: e29ffd0f-0138-49ef-92c5-c62195097294 + stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 - key: metric_source value: stringValue: kubernetes @@ -222,21 +303,30 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "2" 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: rotel-eks + stringValue: dev-operator - 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-5dd5756b68-w7sqj + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj - key: k8s.pod.uid value: - stringValue: c026c30f-457d-4649-b070-c708867ef2be + stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c - key: metric_source value: stringValue: kubernetes @@ -246,21 +336,30 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "2" 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: rotel-eks + stringValue: dev-operator - 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-ta-7f6c9fdf4-rpj6g - key: k8s.pod.uid value: - stringValue: bf9cabc7-b0cb-4fe0-b57d-6c1bb6189913 + stringValue: 4e7bef74-37d2-4380-b5d7-c0ce1476be95 - key: metric_source value: stringValue: kubernetes @@ -270,9 +369,18 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "2" 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: kube-system @@ -281,10 +389,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kindnet-pbtbs + stringValue: coredns-76f75df574-8w7l8 - key: k8s.pod.uid value: - stringValue: 047ef34e-0d0d-4cc4-82d2-87495e01d3ac + stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 - key: metric_source value: stringValue: kubernetes @@ -294,9 +402,18 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "2" 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: kube-system @@ -305,10 +422,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-apiserver-kind-control-plane + stringValue: coredns-76f75df574-wqrsn - key: k8s.pod.uid value: - stringValue: 52cf37aa-d01a-495b-a6d9-1cad9ed2d512 + stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 - key: metric_source value: stringValue: kubernetes @@ -318,9 +435,18 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "2" 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: kube-system @@ -329,10 +455,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: a6874fb4-06a3-483b-829d-2497a9730bf0 + stringValue: 68828dad-2ca2-47ca-914e-f41cfd58244b - key: metric_source value: stringValue: kubernetes @@ -342,9 +468,18 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "2" 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: kube-system @@ -353,10 +488,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-proxy-8glvr + stringValue: kindnet-9xfzp - key: k8s.pod.uid value: - stringValue: 47a23d3f-4ed5-42b2-b571-430f5f2c08e9 + stringValue: f8149b85-dab1-482e-a735-0c29a953061b - key: metric_source value: stringValue: kubernetes @@ -366,9 +501,18 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "2" 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: kube-system @@ -377,10 +521,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-scheduler-kind-control-plane + stringValue: kube-apiserver-kind-control-plane - key: k8s.pod.uid value: - stringValue: 5f9e1240-ab5c-457a-a212-b47052c9d97d + stringValue: 830a2042-aec1-4502-8d2b-d96852bd105c - key: metric_source value: stringValue: kubernetes @@ -390,45 +534,30 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "2" attributes: - - key: k8s.cluster.name - value: - stringValue: rotel-eks - - 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-v8rfh - - key: k8s.pod.uid + - key: cluster_name value: - stringValue: bc4b4f43-06b7-4d79-9d86-1afcbf2cd221 - - key: metric_source + stringValue: ci-k8s-cluster + - key: customfield1 value: - stringValue: kubernetes - - key: receiver + stringValue: customvalue1 + - key: customfield2 value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asInt: "3" - attributes: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: - stringValue: ns-w-exclude + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-w-index-w-ns-exclude-xd5d5 + stringValue: kube-controller-manager-kind-control-plane - key: k8s.pod.uid value: - stringValue: e55cab80-fc61-4bf6-9ae7-5cdaf5928398 + stringValue: 5c40ac1e-5432-4249-b754-4795b36d4c99 - key: metric_source value: stringValue: kubernetes @@ -436,47 +565,32 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "3" + - asInt: "2" attributes: - - key: k8s.cluster.name - value: - stringValue: rotel-eks - - key: k8s.namespace.name - value: - stringValue: ns-w-index - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: pod-w-exclude-wo-ns-exclude-h2nnc - - key: k8s.pod.uid + - key: cluster_name value: - stringValue: 6d450ffa-15b4-4db1-a743-6e9101fea174 - - key: metric_source + stringValue: ci-k8s-cluster + - key: customfield1 value: - stringValue: kubernetes - - key: receiver + stringValue: customvalue1 + - key: customfield2 value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asInt: "3" - attributes: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: - stringValue: ns-w-index + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-w-index-w-ns-index-r8hsb + stringValue: kube-proxy-tw2lr - key: k8s.pod.uid value: - stringValue: efb9c24c-ad0f-435b-a2ee-e4d065acdd8e + stringValue: 7b0de1af-95c5-4994-9e01-f16b25ba49c6 - key: metric_source value: stringValue: kubernetes @@ -484,47 +598,32 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "3" + - asInt: "2" attributes: - - key: k8s.cluster.name - value: - stringValue: rotel-eks - - key: k8s.namespace.name - value: - stringValue: ns-w-index - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: pod-wo-index-w-ns-index-9jg7m - - key: k8s.pod.uid + - key: cluster_name value: - stringValue: 45b0a4da-029e-4c86-84b4-543590f62893 - - key: metric_source + stringValue: ci-k8s-cluster + - key: customfield1 value: - stringValue: kubernetes - - key: receiver + stringValue: customvalue1 + - key: customfield2 value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asInt: "3" - attributes: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: - stringValue: ns-wo-index + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-w-index-wo-ns-index-jqf98 + stringValue: kube-scheduler-kind-control-plane - key: k8s.pod.uid value: - stringValue: e5d5973b-0155-4424-81b9-dfd40262b53e + stringValue: e8a35d2f-5099-41cb-97c1-7c20e9236fd5 - key: metric_source value: stringValue: kubernetes @@ -534,21 +633,30 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "2" 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: - stringValue: ns-wo-index + stringValue: local-path-storage - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-wo-index-wo-ns-index-qngh7 + stringValue: local-path-provisioner-6f8956fb48-wgzmr - key: k8s.pod.uid value: - stringValue: bd9ad7d6-f45f-4cb6-af4f-27fc0b0d53f2 + stringValue: 809e4615-fc78-494b-abde-5263a1ee31a0 - key: metric_source value: stringValue: kubernetes @@ -559,35 +667,44 @@ resourceMetrics: name: k8s.pod.phase - gauge: dataPoints: - - asDouble: 0.1 + - asDouble: 0.2 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 0f2dea1b44ca69d59cd23e9ea0ddf09beb859f6c8c2122a30ffbfbc3c75f4ef4 + stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 - 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.9-0 + stringValue: 0.113.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + 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-k8s-cluster-receiver-dfc7f4c95-4qqkj - key: k8s.pod.uid value: - stringValue: bf9cabc7-b0cb-4fe0-b57d-6c1bb6189913 + stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c - key: metric_source value: stringValue: kubernetes @@ -597,18 +714,27 @@ resourceMetrics: timeUnixNano: "1000000" - asDouble: 0.1 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 167008237804229f4a618b65ebc574180fcb330a35b97ca53aead0bf1e7425fd + stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 - key: container.image.name value: stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator - key: container.image.tag value: - stringValue: v0.85.0 + stringValue: 0.116.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: stringValue: manager @@ -620,10 +746,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-7867c9764-gdv94 + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: 062e3244-7c7d-4f1a-84e5-93451dd93467 + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -631,23 +757,32 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.25 + - asDouble: 0.1 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 3cccbd65f14e8f5855c527e7fcd09840be671f95765cf72e3d07d8bd1f91d0e6 + stringValue: 55d8886e226d55a1a0f3e3f0bdc56d0e2a32c9ffdf6712c9e99c9873528f5b12 - key: container.image.name value: - stringValue: registry.k8s.io/kube-apiserver + stringValue: registry.k8s.io/kube-scheduler - key: container.image.tag value: - stringValue: v1.28.0 + stringValue: v1.29.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-apiserver + stringValue: kube-scheduler - key: k8s.namespace.name value: stringValue: kube-system @@ -656,10 +791,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-apiserver-kind-control-plane + stringValue: kube-scheduler-kind-control-plane - key: k8s.pod.uid value: - stringValue: 52cf37aa-d01a-495b-a6d9-1cad9ed2d512 + stringValue: e8a35d2f-5099-41cb-97c1-7c20e9236fd5 - key: metric_source value: stringValue: kubernetes @@ -669,18 +804,27 @@ resourceMetrics: timeUnixNano: "1000000" - asDouble: 0.1 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 5f18c9c8cd462d6e3b8fb356335844f6de2026ef7d93f9cfb74b1a08ae1ad1d0 + stringValue: 56c1f8ae24c544d0a51aabda6f200e7a491c22eeca767de49504632b0340e09c - key: container.image.name value: stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: v1.10.1 + stringValue: v1.11.1 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: stringValue: coredns @@ -692,10 +836,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-5dd5756b68-w7sqj + stringValue: coredns-76f75df574-8w7l8 - key: k8s.pod.uid value: - stringValue: c026c30f-457d-4649-b070-c708867ef2be + stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 - key: metric_source value: stringValue: kubernetes @@ -705,33 +849,42 @@ resourceMetrics: timeUnixNano: "1000000" - asDouble: 0.2 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 6ab275ce0fa40c66ca45b2438178cbe5632a38174a90d3fcc45ed3ecc5f4c38e + stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 - key: container.image.name value: - stringValue: registry.k8s.io/kube-controller-manager + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: v1.28.0 + stringValue: 0.113.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-controller-manager + 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-controller-manager-kind-control-plane + stringValue: sock-splunk-otel-collector-agent-rm8js - key: k8s.pod.uid value: - stringValue: a6874fb4-06a3-483b-829d-2497a9730bf0 + stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 - key: metric_source value: stringValue: kubernetes @@ -739,35 +892,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.005 + - asDouble: 0.25 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 8f91fb6daaa23a0d7310a6bdbed1ebd640680d4428652bac5053a37c5c019a4c + stringValue: 6e3992f7de7d0611933767e445edc89ecc7b6bb086fbf9b82b7daba89df7f09a - key: container.image.name value: - stringValue: quay.io/brancz/kube-rbac-proxy + stringValue: registry.k8s.io/kube-apiserver - key: container.image.tag value: - stringValue: v0.14.2 + stringValue: v1.29.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-rbac-proxy + 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: sock-operator-7867c9764-gdv94 + stringValue: kube-apiserver-kind-control-plane - key: k8s.pod.uid value: - stringValue: 062e3244-7c7d-4f1a-84e5-93451dd93467 + stringValue: 830a2042-aec1-4502-8d2b-d96852bd105c - key: metric_source value: stringValue: kubernetes @@ -775,23 +937,32 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.2 + - asDouble: 0.005 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: b68c07b4e82828c9fb83b3c9cd119e0837506fcafc73c43c6f11d2916daf4754 + stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: quay.io/brancz/kube-rbac-proxy - key: container.image.tag value: - stringValue: 0.85.0 + stringValue: v0.18.1 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: kube-rbac-proxy - key: k8s.namespace.name value: stringValue: default @@ -800,10 +971,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-pfm6z + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: 9afe2416-ad03-4b81-8b21-051643ed6f11 + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -813,18 +984,27 @@ resourceMetrics: timeUnixNano: "1000000" - asDouble: 0.1 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: b8b1c6e32ce1686ca6f1a61244f6b35631160ecbfc34bf499ebc4f042a44c8b3 + stringValue: 7930a07f4cb7fc9ea6159a3bc7c7485170f728ddc0cc0c50a6f571737c846e50 - key: container.image.name value: stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: v1.10.1 + stringValue: v1.11.1 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: stringValue: coredns @@ -836,10 +1016,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-5dd5756b68-ttk8c + stringValue: coredns-76f75df574-wqrsn - key: k8s.pod.uid value: - stringValue: e29ffd0f-0138-49ef-92c5-c62195097294 + stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 - key: metric_source value: stringValue: kubernetes @@ -847,35 +1027,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.2 + - asDouble: 0.1 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: d3e96ffe6a87a4b9927ac1627a7dc00c6e92561ef7d14d0f06340e706832071e + stringValue: 82b7c36c5da8acb40f66be5b2c70430bb7d7c84e128bede5bc325f94653839bd - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: registry.k8s.io/etcd - key: container.image.tag value: - stringValue: 0.85.0 + stringValue: 3.5.10-0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + 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-k8s-cluster-receiver-8687f4bfbb86fbd + stringValue: etcd-kind-control-plane - key: k8s.pod.uid value: - stringValue: d310e423-e3ee-42ac-a284-9bab01bcbba4 + stringValue: 68828dad-2ca2-47ca-914e-f41cfd58244b - key: metric_source value: stringValue: kubernetes @@ -883,23 +1072,32 @@ 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: e84ea721ed9d8bb476083d278dffa2f1ddf2c0d2ed6d1008264242a3f29a44df + stringValue: e2ea169579f87203b926492d33050b56fd253b2e07bd66730339fc75a2fd4621 - key: container.image.name value: - stringValue: docker.io/kindest/kindnetd + stringValue: registry.k8s.io/kube-controller-manager - key: container.image.tag value: - stringValue: v20230511-dc714da8 + stringValue: v1.29.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: kindnet-cni + stringValue: kube-controller-manager - key: k8s.namespace.name value: stringValue: kube-system @@ -908,10 +1106,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kindnet-pbtbs + stringValue: kube-controller-manager-kind-control-plane - key: k8s.pod.uid value: - stringValue: 047ef34e-0d0d-4cc4-82d2-87495e01d3ac + stringValue: 5c40ac1e-5432-4249-b754-4795b36d4c99 - key: metric_source value: stringValue: kubernetes @@ -921,21 +1119,30 @@ resourceMetrics: timeUnixNano: "1000000" - asDouble: 0.1 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: f305339d0131fb9abe4368daa59b1649e195f8d2f2f181cabacf3e5029a93856 + stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 - key: container.image.name value: - stringValue: registry.k8s.io/kube-scheduler + stringValue: docker.io/kindest/kindnetd - key: container.image.tag value: - stringValue: v1.28.0 + stringValue: v20230511-dc714da8 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-scheduler + stringValue: kindnet-cni - key: k8s.namespace.name value: stringValue: kube-system @@ -944,10 +1151,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-scheduler-kind-control-plane + stringValue: kindnet-9xfzp - key: k8s.pod.uid value: - stringValue: 5f9e1240-ab5c-457a-a212-b47052c9d97d + stringValue: f8149b85-dab1-482e-a735-0c29a953061b - key: metric_source value: stringValue: kubernetes @@ -958,35 +1165,44 @@ resourceMetrics: name: k8s.container.cpu_request - gauge: dataPoints: - - asInt: "0" + - asInt: "524288000" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 04e136acbbefd063fd743318a65e115f2a53de681d0b8d259158bdc44c2d81e0 + stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: 0.113.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-w-index-w-ns-exclude + stringValue: otel-collector - key: k8s.namespace.name value: - stringValue: ns-w-index + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-w-exclude-wo-ns-exclude-h2nnc + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj - key: k8s.pod.uid value: - stringValue: 6d450ffa-15b4-4db1-a743-6e9101fea174 + stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c - key: metric_source value: stringValue: kubernetes @@ -994,35 +1210,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "134217728" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 0ddf476d6f32cbcba5d75e07449d0bfdd2850152b241853a9b9f0f249e17d341 + stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: 0.116.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-w-index-w-ns-exclude + stringValue: manager - key: k8s.namespace.name value: - stringValue: ns-w-exclude + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-w-index-w-ns-exclude-xd5d5 + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: e55cab80-fc61-4bf6-9ae7-5cdaf5928398 + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -1030,35 +1255,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "178257920" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 0de43e72001a29620c17a2389a191c6614045d60a4209f47acc69e3f755fb901 + stringValue: 56c1f8ae24c544d0a51aabda6f200e7a491c22eeca767de49504632b0340e09c - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: v1.11.1 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-w-index-wo-ns-index + stringValue: coredns - key: k8s.namespace.name value: - stringValue: ns-wo-index + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-w-index-wo-ns-index-jqf98 + stringValue: coredns-76f75df574-8w7l8 - key: k8s.pod.uid value: - stringValue: e5d5973b-0155-4424-81b9-dfd40262b53e + stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 - key: metric_source value: stringValue: kubernetes @@ -1066,35 +1300,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "524288000" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 0f2dea1b44ca69d59cd23e9ea0ddf09beb859f6c8c2122a30ffbfbc3c75f4ef4 + stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 - 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.9-0 + stringValue: 0.113.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + 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-rm8js - key: k8s.pod.uid value: - stringValue: bf9cabc7-b0cb-4fe0-b57d-6c1bb6189913 + stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 - key: metric_source value: stringValue: kubernetes @@ -1102,23 +1345,32 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "134217728" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 167008237804229f4a618b65ebc574180fcb330a35b97ca53aead0bf1e7425fd + stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac - 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: v0.85.0 + stringValue: v0.18.1 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: manager + stringValue: kube-rbac-proxy - key: k8s.namespace.name value: stringValue: default @@ -1127,10 +1379,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-7867c9764-gdv94 + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: 062e3244-7c7d-4f1a-84e5-93451dd93467 + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -1138,35 +1390,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "178257920" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 38809b5e5212eddddeec2d4d387e2f27ff754e0c3f67cc9a9ffb89db72601480 + stringValue: 7930a07f4cb7fc9ea6159a3bc7c7485170f728ddc0cc0c50a6f571737c846e50 - key: container.image.name value: - stringValue: quay.io/splunko11ytest/nodejs_test + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: latest + stringValue: v1.11.1 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: nodejs-test + 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: nodejs-test-57564b7dc9-pf2bk + stringValue: coredns-76f75df574-wqrsn - key: k8s.pod.uid value: - stringValue: b660efd2-e961-488a-af7a-2161f27565bb + stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 - key: metric_source value: stringValue: kubernetes @@ -1174,35 +1435,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "52428800" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 38809b5e5212eddddeec2d4d387e2f27ff754e0c3f67cc9a9ffb89db72601480 + stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 - key: container.image.name value: - stringValue: quay.io/splunko11ytest/dotnet_test + stringValue: docker.io/kindest/kindnetd - key: container.image.tag value: - stringValue: latest + stringValue: v20230511-dc714da8 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: dotnet-test + 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: dotnet-test-57564b7dc9-pf2bk + stringValue: kindnet-9xfzp - key: k8s.pod.uid value: - stringValue: b660efd2-e961-488a-af7a-2161f27565bb + stringValue: f8149b85-dab1-482e-a735-0c29a953061b - key: metric_source value: stringValue: kubernetes @@ -1210,35 +1480,47 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + name: k8s.container.memory_limit + - gauge: + dataPoints: + - asInt: "524288000" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 3cccbd65f14e8f5855c527e7fcd09840be671f95765cf72e3d07d8bd1f91d0e6 + stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 - 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.28.0 + stringValue: 0.113.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + 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-dfc7f4c95-4qqkj - key: k8s.pod.uid value: - stringValue: 52cf37aa-d01a-495b-a6d9-1cad9ed2d512 + stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c - key: metric_source value: stringValue: kubernetes @@ -1246,35 +1528,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "67108864" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 507978464797f2c6cbdbca13eb1343ab759436f2ad1fd1b48ecd068ad978e73b + stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 - key: container.image.name value: - stringValue: docker.io/kindest/local-path-provisioner + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator - key: container.image.tag value: - stringValue: v20230511-dc714da8 + stringValue: 0.116.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: local-path-provisioner + stringValue: manager - 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-v8rfh + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: bc4b4f43-06b7-4d79-9d86-1afcbf2cd221 + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -1282,20 +1573,29 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "73400320" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 5f18c9c8cd462d6e3b8fb356335844f6de2026ef7d93f9cfb74b1a08ae1ad1d0 + stringValue: 56c1f8ae24c544d0a51aabda6f200e7a491c22eeca767de49504632b0340e09c - key: container.image.name value: stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: v1.10.1 + stringValue: v1.11.1 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: stringValue: coredns @@ -1307,10 +1607,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-5dd5756b68-w7sqj + stringValue: coredns-76f75df574-8w7l8 - key: k8s.pod.uid value: - stringValue: c026c30f-457d-4649-b070-c708867ef2be + stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 - key: metric_source value: stringValue: kubernetes @@ -1318,35 +1618,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "524288000" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 6ab275ce0fa40c66ca45b2438178cbe5632a38174a90d3fcc45ed3ecc5f4c38e + stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 - key: container.image.name value: - stringValue: registry.k8s.io/kube-controller-manager + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: v1.28.0 + stringValue: 0.113.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-controller-manager + 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-controller-manager-kind-control-plane + stringValue: sock-splunk-otel-collector-agent-rm8js - key: k8s.pod.uid value: - stringValue: a6874fb4-06a3-483b-829d-2497a9730bf0 + stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 - key: metric_source value: stringValue: kubernetes @@ -1354,35 +1663,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "67108864" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 85bd2e415148ad6f2088cda811ea999142093a04001a62f8b5e3593cbb9cb008 + stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac - key: container.image.name value: - stringValue: quay.io/jetstack/cert-manager-controller + stringValue: quay.io/brancz/kube-rbac-proxy - key: container.image.tag value: - stringValue: v1.13.1 + stringValue: v0.18.1 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: cert-manager-controller + stringValue: kube-rbac-proxy - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-cbcf9668d-9xvq5 + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: 3e54c119-9054-428c-aeb4-14088263b4c7 + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -1390,35 +1708,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "73400320" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 8e4a37866b88361493c42b279bfc0275b72e8d19c2dc2637e827063aa7c036ff + stringValue: 7930a07f4cb7fc9ea6159a3bc7c7485170f728ddc0cc0c50a6f571737c846e50 - key: container.image.name value: - stringValue: quay.io/jetstack/cert-manager-webhook + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: v1.13.1 + stringValue: v1.11.1 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: cert-manager-webhook + 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-webhook-594cb9799b-jtv49 + stringValue: coredns-76f75df574-wqrsn - key: k8s.pod.uid value: - stringValue: 4d5a76c4-db4f-466f-b925-13dc115f4b1b + stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 - key: metric_source value: stringValue: kubernetes @@ -1426,35 +1753,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "104857600" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 8f91fb6daaa23a0d7310a6bdbed1ebd640680d4428652bac5053a37c5c019a4c + stringValue: 82b7c36c5da8acb40f66be5b2c70430bb7d7c84e128bede5bc325f94653839bd - key: container.image.name value: - stringValue: quay.io/brancz/kube-rbac-proxy + stringValue: registry.k8s.io/etcd - key: container.image.tag value: - stringValue: v0.14.2 + stringValue: 3.5.10-0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-rbac-proxy + 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-operator-7867c9764-gdv94 + stringValue: etcd-kind-control-plane - key: k8s.pod.uid value: - stringValue: 062e3244-7c7d-4f1a-84e5-93451dd93467 + stringValue: 68828dad-2ca2-47ca-914e-f41cfd58244b - key: metric_source value: stringValue: kubernetes @@ -1462,35 +1798,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "52428800" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: b68c07b4e82828c9fb83b3c9cd119e0837506fcafc73c43c6f11d2916daf4754 + stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: docker.io/kindest/kindnetd - key: container.image.tag value: - stringValue: 0.85.0 + stringValue: v20230511-dc714da8 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + 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-pfm6z + stringValue: kindnet-9xfzp - key: k8s.pod.uid value: - stringValue: 9afe2416-ad03-4b81-8b21-051643ed6f11 + stringValue: f8149b85-dab1-482e-a735-0c29a953061b - key: metric_source value: stringValue: kubernetes @@ -1498,35 +1843,47 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" + name: k8s.container.memory_request + - gauge: + dataPoints: - asInt: "1" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: b8b1c6e32ce1686ca6f1a61244f6b35631160ecbfc34bf499ebc4f042a44c8b3 + stringValue: 029555a4cfeffe308062ebe8f6f59e116313d079efd1a802064ed30e6e155150 - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: docker.io/kindest/local-path-provisioner - key: container.image.tag value: - stringValue: v1.10.1 + stringValue: v20230511-dc714da8 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + 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: coredns-5dd5756b68-ttk8c + stringValue: local-path-provisioner-6f8956fb48-wgzmr - key: k8s.pod.uid value: - stringValue: e29ffd0f-0138-49ef-92c5-c62195097294 + stringValue: 809e4615-fc78-494b-abde-5263a1ee31a0 - key: metric_source value: stringValue: kubernetes @@ -1534,35 +1891,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "1" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: be43b1aca150b59e2b2f9b261b6cfd64619ba3238a1cc2e3c15c92ae3076cdfd + stringValue: 15a2d46d1533c984b885e8f767c50e7601241f026c5698a80cda3db5d2321c83 - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: quay.io/splunko11ytest/nodejs_test - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: latest + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-wo-index-w-ns-index + stringValue: nodejs-test - key: k8s.namespace.name value: - stringValue: ns-w-index + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-wo-index-w-ns-index-9jg7m + stringValue: nodejs-test-56b74df9ff-klgm7 - key: k8s.pod.uid value: - stringValue: 45b0a4da-029e-4c86-84b4-543590f62893 + stringValue: 89b46064-f8e5-46d6-b54e-79a1cc7948df - key: metric_source value: stringValue: kubernetes @@ -1572,18 +1938,27 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "1" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: d3e96ffe6a87a4b9927ac1627a7dc00c6e92561ef7d14d0f06340e706832071e + stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 - key: container.image.name value: stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: 0.85.0 + stringValue: 0.113.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: stringValue: otel-collector @@ -1595,10 +1970,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-8687f4bfbb86fbd + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj - key: k8s.pod.uid value: - stringValue: d310e423-e3ee-42ac-a284-9bab01bcbba4 + stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c - key: metric_source value: stringValue: kubernetes @@ -1608,33 +1983,42 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "1" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e031ab5010dcf8711677089ae047575d480010797533d017948f747bb0086f54 + stringValue: 3917f7d60ba632ba65e55bdd2a69a516383982f5f6b555eaf86a688cea4c5515 - key: container.image.name value: - stringValue: registry.k8s.io/kube-proxy + stringValue: quay.io/jetstack/cert-manager-webhook - key: container.image.tag value: - stringValue: v1.28.0 + stringValue: v1.14.4 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-proxy + 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: kube-proxy-8glvr + stringValue: cert-manager-webhook-7f9f8648b9-dzq2l - key: k8s.pod.uid value: - stringValue: 47a23d3f-4ed5-42b2-b571-430f5f2c08e9 + stringValue: 18826d35-ead9-4637-a492-8d78156959f6 - key: metric_source value: stringValue: kubernetes @@ -1644,33 +2028,42 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "1" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e84ea721ed9d8bb476083d278dffa2f1ddf2c0d2ed6d1008264242a3f29a44df + stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 - key: container.image.name value: - stringValue: docker.io/kindest/kindnetd + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator - key: container.image.tag value: - stringValue: v20230511-dc714da8 + stringValue: 0.116.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: kindnet-cni + 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: kindnet-pbtbs + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: 047ef34e-0d0d-4cc4-82d2-87495e01d3ac + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -1680,18 +2073,27 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "1" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: f305339d0131fb9abe4368daa59b1649e195f8d2f2f181cabacf3e5029a93856 + stringValue: 55d8886e226d55a1a0f3e3f0bdc56d0e2a32c9ffdf6712c9e99c9873528f5b12 - key: container.image.name value: stringValue: registry.k8s.io/kube-scheduler - key: container.image.tag value: - stringValue: v1.28.0 + stringValue: v1.29.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: stringValue: kube-scheduler @@ -1706,7 +2108,7 @@ resourceMetrics: stringValue: kube-scheduler-kind-control-plane - key: k8s.pod.uid value: - stringValue: 5f9e1240-ab5c-457a-a212-b47052c9d97d + stringValue: e8a35d2f-5099-41cb-97c1-7c20e9236fd5 - key: metric_source value: stringValue: kubernetes @@ -1716,33 +2118,42 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "1" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: f89d85a849e619987764e0fb1512a5fafaa5101ad1956e89e3935eca4194fb3a + stringValue: 56c1f8ae24c544d0a51aabda6f200e7a491c22eeca767de49504632b0340e09c - 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.13.1 + stringValue: v1.11.1 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + 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-65c7bff89d-vksqw + stringValue: coredns-76f75df574-8w7l8 - key: k8s.pod.uid value: - stringValue: 36d87b59-8ddf-47e7-a145-aeb81201d19a + stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 - key: metric_source value: stringValue: kubernetes @@ -1752,33 +2163,42 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "1" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: fdc0b7ceccd9a1fa5b0f941477e6ca8cc0c63fe512e0feb10a09270c69239ec1 + stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: 0.113.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-wo-index-wo-ns-index + stringValue: otel-collector - key: k8s.namespace.name value: - stringValue: ns-wo-index + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-wo-index-wo-ns-index-qngh7 + stringValue: sock-splunk-otel-collector-agent-rm8js - key: k8s.pod.uid value: - stringValue: bd9ad7d6-f45f-4cb6-af4f-27fc0b0d53f2 + stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 - key: metric_source value: stringValue: kubernetes @@ -1786,35 +2206,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "1" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: fe4e0e7117f2aaf3301cec1aafa623769e446120d276c29b25f2ec4c57996d63 + stringValue: 6e3992f7de7d0611933767e445edc89ecc7b6bb086fbf9b82b7daba89df7f09a - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: registry.k8s.io/kube-apiserver - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: v1.29.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-w-index-w-ns-index + stringValue: kube-apiserver - key: k8s.namespace.name value: - stringValue: ns-w-index + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-w-index-w-ns-index-r8hsb + stringValue: kube-apiserver-kind-control-plane - key: k8s.pod.uid value: - stringValue: efb9c24c-ad0f-435b-a2ee-e4d065acdd8e + stringValue: 830a2042-aec1-4502-8d2b-d96852bd105c - key: metric_source value: stringValue: kubernetes @@ -1822,38 +2251,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - name: k8s.container.ready - - gauge: - dataPoints: - - asInt: "0" + - asInt: "1" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 04e136acbbefd063fd743318a65e115f2a53de681d0b8d259158bdc44c2d81e0 + stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: quay.io/brancz/kube-rbac-proxy - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: v0.18.1 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-w-index-w-ns-exclude + stringValue: kube-rbac-proxy - key: k8s.namespace.name value: - stringValue: ns-w-index + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-w-exclude-wo-ns-exclude-h2nnc + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: 6d450ffa-15b4-4db1-a743-6e9101fea174 + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -1861,35 +2296,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "1" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 0ddf476d6f32cbcba5d75e07449d0bfdd2850152b241853a9b9f0f249e17d341 + stringValue: 7930a07f4cb7fc9ea6159a3bc7c7485170f728ddc0cc0c50a6f571737c846e50 - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: v1.11.1 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-w-index-w-ns-exclude + stringValue: coredns - key: k8s.namespace.name value: - stringValue: ns-w-exclude + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-w-index-w-ns-exclude-xd5d5 + stringValue: coredns-76f75df574-wqrsn - key: k8s.pod.uid value: - stringValue: e55cab80-fc61-4bf6-9ae7-5cdaf5928398 + stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 - key: metric_source value: stringValue: kubernetes @@ -1897,35 +2341,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "1" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 0de43e72001a29620c17a2389a191c6614045d60a4209f47acc69e3f755fb901 + stringValue: 7c2550f56f151c838ab4ddc00211edd3c1be45f992c4058759cc01e387c45e01 - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: registry.k8s.io/kube-proxy - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: v1.29.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-w-index-wo-ns-index + stringValue: kube-proxy - key: k8s.namespace.name value: - stringValue: ns-wo-index + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-w-index-wo-ns-index-jqf98 + stringValue: kube-proxy-tw2lr - key: k8s.pod.uid value: - stringValue: e5d5973b-0155-4424-81b9-dfd40262b53e + stringValue: 7b0de1af-95c5-4994-9e01-f16b25ba49c6 - key: metric_source value: stringValue: kubernetes @@ -1933,35 +2386,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "1" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 0f2dea1b44ca69d59cd23e9ea0ddf09beb859f6c8c2122a30ffbfbc3c75f4ef4 + stringValue: 7d239fcb5583c18f213c32748d6c127ee36426aa9fcfffb0533bf7a84d5f7194 - key: container.image.name value: - stringValue: registry.k8s.io/etcd + stringValue: quay.io/jetstack/cert-manager-controller - key: container.image.tag value: - stringValue: 3.5.9-0 + stringValue: v1.14.4 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: etcd + 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: etcd-kind-control-plane + stringValue: cert-manager-67c98b89c8-5dtxs - key: k8s.pod.uid value: - stringValue: bf9cabc7-b0cb-4fe0-b57d-6c1bb6189913 + stringValue: 9cd699ef-f612-4879-b1ce-04303d7b4f6c - key: metric_source value: stringValue: kubernetes @@ -1969,35 +2431,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "1" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 167008237804229f4a618b65ebc574180fcb330a35b97ca53aead0bf1e7425fd + stringValue: 7f2567f3445e62535252ac97a6b0b3eea860f21dffa4902c947c17d55a26ac2e - key: container.image.name value: - stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator + stringValue: quay.io/jetstack/cert-manager-cainjector - key: container.image.tag value: - stringValue: v0.85.0 + stringValue: v1.14.4 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: manager + 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-7867c9764-gdv94 + stringValue: cert-manager-cainjector-5c5695d979-h7c2k - key: k8s.pod.uid value: - stringValue: 062e3244-7c7d-4f1a-84e5-93451dd93467 + stringValue: 5a67f651-add4-43f6-b2a7-06afb5fef617 - key: metric_source value: stringValue: kubernetes @@ -2005,35 +2476,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "1" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 38809b5e5212eddddeec2d4d387e2f27ff754e0c3f67cc9a9ffb89db72601480 + stringValue: 82b7c36c5da8acb40f66be5b2c70430bb7d7c84e128bede5bc325f94653839bd - key: container.image.name value: - stringValue: quay.io/splunko11ytest/nodejs_test + stringValue: registry.k8s.io/etcd - key: container.image.tag value: - stringValue: latest + stringValue: 3.5.10-0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: nodejs-test + 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: nodejs-test-57564b7dc9-pf2bk + stringValue: etcd-kind-control-plane - key: k8s.pod.uid value: - stringValue: b660efd2-e961-488a-af7a-2161f27565bb + stringValue: 68828dad-2ca2-47ca-914e-f41cfd58244b - key: metric_source value: stringValue: kubernetes @@ -2041,35 +2521,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "1" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 3cccbd65f14e8f5855c527e7fcd09840be671f95765cf72e3d07d8bd1f91d0e6 + stringValue: 9001b70e2443496dc4699019d151e7ac94b30c7555c9f95e0e9fb569a3c5985c - key: container.image.name value: - stringValue: registry.k8s.io/kube-apiserver + stringValue: quay.io/splunko11ytest/httpd - key: container.image.tag value: - stringValue: v1.28.0 + stringValue: latest + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-apiserver + stringValue: prometheus-annotation-test - 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: prometheus-annotation-test-cfc77c7b9-86vg5 - key: k8s.pod.uid value: - stringValue: 52cf37aa-d01a-495b-a6d9-1cad9ed2d512 + stringValue: 558db553-7cc6-44f2-9039-f81e43d0bc25 - key: metric_source value: stringValue: kubernetes @@ -2077,35 +2566,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "1" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 507978464797f2c6cbdbca13eb1343ab759436f2ad1fd1b48ecd068ad978e73b + stringValue: ad771ceab740a5a51b3c5e67b8ff36743ef86776f28942fcb28b22c4f37b309d - key: container.image.name value: - stringValue: docker.io/kindest/local-path-provisioner + stringValue: quay.io/splunko11ytest/dotnet_test - key: container.image.tag value: - stringValue: v20230511-dc714da8 + stringValue: latest + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: local-path-provisioner + stringValue: dotnet-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-v8rfh + stringValue: dotnet-test-5479c475fc-qpr6c - key: k8s.pod.uid value: - stringValue: bc4b4f43-06b7-4d79-9d86-1afcbf2cd221 + stringValue: bd83fe1d-786d-4da7-889e-cee578e6f2f8 - key: metric_source value: stringValue: kubernetes @@ -2113,35 +2611,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "1" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 5f18c9c8cd462d6e3b8fb356335844f6de2026ef7d93f9cfb74b1a08ae1ad1d0 + stringValue: af7431cadfb9e46f242716f4588134dee006641290c1405f88e468beb2fa559d - 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.10.1 + stringValue: v0.105.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + 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-5dd5756b68-w7sqj + stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4-rpj6g - key: k8s.pod.uid value: - stringValue: c026c30f-457d-4649-b070-c708867ef2be + stringValue: 4e7bef74-37d2-4380-b5d7-c0ce1476be95 - key: metric_source value: stringValue: kubernetes @@ -2149,20 +2656,29 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "1" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 6ab275ce0fa40c66ca45b2438178cbe5632a38174a90d3fcc45ed3ecc5f4c38e + stringValue: e2ea169579f87203b926492d33050b56fd253b2e07bd66730339fc75a2fd4621 - key: container.image.name value: stringValue: registry.k8s.io/kube-controller-manager - key: container.image.tag value: - stringValue: v1.28.0 + stringValue: v1.29.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: stringValue: kube-controller-manager @@ -2177,7 +2693,7 @@ resourceMetrics: stringValue: kube-controller-manager-kind-control-plane - key: k8s.pod.uid value: - stringValue: a6874fb4-06a3-483b-829d-2497a9730bf0 + stringValue: 5c40ac1e-5432-4249-b754-4795b36d4c99 - key: metric_source value: stringValue: kubernetes @@ -2185,35 +2701,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "1" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 85bd2e415148ad6f2088cda811ea999142093a04001a62f8b5e3593cbb9cb008 + stringValue: e6089c166eeb1823e805c0845d43a777ae52ac054fe8ecc33805204995de77e7 - key: container.image.name value: - stringValue: quay.io/jetstack/cert-manager-controller + stringValue: quay.io/splunko11ytest/java_test - key: container.image.tag value: - stringValue: v1.13.1 + stringValue: latest + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: cert-manager-controller + stringValue: java-test - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-cbcf9668d-9xvq5 + stringValue: java-test-5c4d6479b8-j7fmr - key: k8s.pod.uid value: - stringValue: 3e54c119-9054-428c-aeb4-14088263b4c7 + stringValue: 63ca8dfe-1747-4097-9b9d-071b1cb3b891 - key: metric_source value: stringValue: kubernetes @@ -2221,35 +2746,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "1" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 8e4a37866b88361493c42b279bfc0275b72e8d19c2dc2637e827063aa7c036ff + stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 - key: container.image.name value: - stringValue: quay.io/jetstack/cert-manager-webhook + stringValue: docker.io/kindest/kindnetd - key: container.image.tag value: - stringValue: v1.13.1 + stringValue: v20230511-dc714da8 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: cert-manager-webhook + stringValue: kindnet-cni - 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-594cb9799b-jtv49 + stringValue: kindnet-9xfzp - key: k8s.pod.uid value: - stringValue: 4d5a76c4-db4f-466f-b925-13dc115f4b1b + stringValue: f8149b85-dab1-482e-a735-0c29a953061b - key: metric_source value: stringValue: kubernetes @@ -2257,35 +2791,47 @@ resourceMetrics: 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: 8f91fb6daaa23a0d7310a6bdbed1ebd640680d4428652bac5053a37c5c019a4c + stringValue: 029555a4cfeffe308062ebe8f6f59e116313d079efd1a802064ed30e6e155150 - key: container.image.name value: - stringValue: quay.io/brancz/kube-rbac-proxy + stringValue: docker.io/kindest/local-path-provisioner - key: container.image.tag value: - stringValue: v0.14.2 + stringValue: v20230511-dc714da8 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-rbac-proxy + stringValue: local-path-provisioner - key: k8s.namespace.name value: - stringValue: default + stringValue: local-path-storage - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-7867c9764-gdv94 + stringValue: local-path-provisioner-6f8956fb48-wgzmr - key: k8s.pod.uid value: - stringValue: 062e3244-7c7d-4f1a-84e5-93451dd93467 + stringValue: 809e4615-fc78-494b-abde-5263a1ee31a0 - key: metric_source value: stringValue: kubernetes @@ -2295,21 +2841,30 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "0" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: b68c07b4e82828c9fb83b3c9cd119e0837506fcafc73c43c6f11d2916daf4754 + stringValue: 15a2d46d1533c984b885e8f767c50e7601241f026c5698a80cda3db5d2321c83 - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: quay.io/splunko11ytest/nodejs_test - key: container.image.tag value: - stringValue: 0.85.0 + stringValue: latest + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: nodejs-test - key: k8s.namespace.name value: stringValue: default @@ -2318,10 +2873,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-pfm6z + stringValue: nodejs-test-56b74df9ff-klgm7 - key: k8s.pod.uid value: - stringValue: 9afe2416-ad03-4b81-8b21-051643ed6f11 + stringValue: 89b46064-f8e5-46d6-b54e-79a1cc7948df - key: metric_source value: stringValue: kubernetes @@ -2331,33 +2886,42 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "0" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: b8b1c6e32ce1686ca6f1a61244f6b35631160ecbfc34bf499ebc4f042a44c8b3 + stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 - 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.10.1 + stringValue: 0.113.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + 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-5dd5756b68-ttk8c + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj - key: k8s.pod.uid value: - stringValue: e29ffd0f-0138-49ef-92c5-c62195097294 + stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c - key: metric_source value: stringValue: kubernetes @@ -2367,33 +2931,42 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "0" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: be43b1aca150b59e2b2f9b261b6cfd64619ba3238a1cc2e3c15c92ae3076cdfd + stringValue: 3917f7d60ba632ba65e55bdd2a69a516383982f5f6b555eaf86a688cea4c5515 - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: quay.io/jetstack/cert-manager-webhook - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: v1.14.4 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-wo-index-w-ns-index + stringValue: cert-manager-webhook - key: k8s.namespace.name value: - stringValue: ns-w-index + stringValue: cert-manager - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-wo-index-w-ns-index-9jg7m + stringValue: cert-manager-webhook-7f9f8648b9-dzq2l - key: k8s.pod.uid value: - stringValue: 45b0a4da-029e-4c86-84b4-543590f62893 + stringValue: 18826d35-ead9-4637-a492-8d78156959f6 - key: metric_source value: stringValue: kubernetes @@ -2403,21 +2976,30 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "0" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: d3e96ffe6a87a4b9927ac1627a7dc00c6e92561ef7d14d0f06340e706832071e + stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator - key: container.image.tag value: - stringValue: 0.85.0 + stringValue: 0.116.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: manager - key: k8s.namespace.name value: stringValue: default @@ -2426,10 +3008,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-8687f4bfbb86fbd + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: d310e423-e3ee-42ac-a284-9bab01bcbba4 + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -2439,21 +3021,30 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "0" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e031ab5010dcf8711677089ae047575d480010797533d017948f747bb0086f54 + stringValue: 55d8886e226d55a1a0f3e3f0bdc56d0e2a32c9ffdf6712c9e99c9873528f5b12 - key: container.image.name value: - stringValue: registry.k8s.io/kube-proxy + stringValue: registry.k8s.io/kube-scheduler - key: container.image.tag value: - stringValue: v1.28.0 + stringValue: v1.29.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-proxy + stringValue: kube-scheduler - key: k8s.namespace.name value: stringValue: kube-system @@ -2462,10 +3053,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-proxy-8glvr + stringValue: kube-scheduler-kind-control-plane - key: k8s.pod.uid value: - stringValue: 47a23d3f-4ed5-42b2-b571-430f5f2c08e9 + stringValue: e8a35d2f-5099-41cb-97c1-7c20e9236fd5 - key: metric_source value: stringValue: kubernetes @@ -2475,21 +3066,30 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "0" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e84ea721ed9d8bb476083d278dffa2f1ddf2c0d2ed6d1008264242a3f29a44df + stringValue: 56c1f8ae24c544d0a51aabda6f200e7a491c22eeca767de49504632b0340e09c - 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 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: kindnet-cni + stringValue: coredns - key: k8s.namespace.name value: stringValue: kube-system @@ -2498,10 +3098,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kindnet-pbtbs + stringValue: coredns-76f75df574-8w7l8 - key: k8s.pod.uid value: - stringValue: 047ef34e-0d0d-4cc4-82d2-87495e01d3ac + stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 - key: metric_source value: stringValue: kubernetes @@ -2511,33 +3111,42 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "0" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: f305339d0131fb9abe4368daa59b1649e195f8d2f2f181cabacf3e5029a93856 + stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 - key: container.image.name value: - stringValue: registry.k8s.io/kube-scheduler + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: v1.28.0 + stringValue: 0.113.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-scheduler + 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-scheduler-kind-control-plane + stringValue: sock-splunk-otel-collector-agent-rm8js - key: k8s.pod.uid value: - stringValue: 5f9e1240-ab5c-457a-a212-b47052c9d97d + stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 - key: metric_source value: stringValue: kubernetes @@ -2547,33 +3156,42 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "0" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: f89d85a849e619987764e0fb1512a5fafaa5101ad1956e89e3935eca4194fb3a + stringValue: 6e3992f7de7d0611933767e445edc89ecc7b6bb086fbf9b82b7daba89df7f09a - key: container.image.name value: - stringValue: quay.io/jetstack/cert-manager-cainjector + stringValue: registry.k8s.io/kube-apiserver - key: container.image.tag value: - stringValue: v1.13.1 + stringValue: v1.29.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: cert-manager-cainjector + stringValue: kube-apiserver - 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-65c7bff89d-vksqw + stringValue: kube-apiserver-kind-control-plane - key: k8s.pod.uid value: - stringValue: 36d87b59-8ddf-47e7-a145-aeb81201d19a + stringValue: 830a2042-aec1-4502-8d2b-d96852bd105c - key: metric_source value: stringValue: kubernetes @@ -2583,33 +3201,42 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "0" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: fdc0b7ceccd9a1fa5b0f941477e6ca8cc0c63fe512e0feb10a09270c69239ec1 + stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: quay.io/brancz/kube-rbac-proxy - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: v0.18.1 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-wo-index-wo-ns-index + stringValue: kube-rbac-proxy - key: k8s.namespace.name value: - stringValue: ns-wo-index + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-wo-index-wo-ns-index-qngh7 + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: bd9ad7d6-f45f-4cb6-af4f-27fc0b0d53f2 + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -2619,33 +3246,42 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "0" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: fe4e0e7117f2aaf3301cec1aafa623769e446120d276c29b25f2ec4c57996d63 + stringValue: 7930a07f4cb7fc9ea6159a3bc7c7485170f728ddc0cc0c50a6f571737c846e50 - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: v1.11.1 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-w-index-w-ns-index + stringValue: coredns - key: k8s.namespace.name value: - stringValue: ns-w-index + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-w-index-w-ns-index-r8hsb + stringValue: coredns-76f75df574-wqrsn - key: k8s.pod.uid value: - stringValue: efb9c24c-ad0f-435b-a2ee-e4d065acdd8e + stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 - key: metric_source value: stringValue: kubernetes @@ -2653,38 +3289,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - name: k8s.container.restarts - - gauge: - dataPoints: - - asDouble: 0.1 + - asInt: "0" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 167008237804229f4a618b65ebc574180fcb330a35b97ca53aead0bf1e7425fd + stringValue: 7c2550f56f151c838ab4ddc00211edd3c1be45f992c4058759cc01e387c45e01 - 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: v0.85.0 + stringValue: v1.29.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + 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-7867c9764-gdv94 + stringValue: kube-proxy-tw2lr - key: k8s.pod.uid value: - stringValue: 062e3244-7c7d-4f1a-84e5-93451dd93467 + stringValue: 7b0de1af-95c5-4994-9e01-f16b25ba49c6 - key: metric_source value: stringValue: kubernetes @@ -2692,35 +3334,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.5 + - asInt: "1" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 8f91fb6daaa23a0d7310a6bdbed1ebd640680d4428652bac5053a37c5c019a4c + stringValue: 7d239fcb5583c18f213c32748d6c127ee36426aa9fcfffb0533bf7a84d5f7194 - key: container.image.name value: - stringValue: quay.io/brancz/kube-rbac-proxy + stringValue: quay.io/jetstack/cert-manager-controller - key: container.image.tag value: - stringValue: v0.14.2 + stringValue: v1.14.4 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-rbac-proxy + 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-operator-7867c9764-gdv94 + stringValue: cert-manager-67c98b89c8-5dtxs - key: k8s.pod.uid value: - stringValue: 062e3244-7c7d-4f1a-84e5-93451dd93467 + stringValue: 9cd699ef-f612-4879-b1ce-04303d7b4f6c - key: metric_source value: stringValue: kubernetes @@ -2728,35 +3379,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.2 + - asInt: "0" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: b68c07b4e82828c9fb83b3c9cd119e0837506fcafc73c43c6f11d2916daf4754 + stringValue: 7f2567f3445e62535252ac97a6b0b3eea860f21dffa4902c947c17d55a26ac2e - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: quay.io/jetstack/cert-manager-cainjector - key: container.image.tag value: - stringValue: 0.85.0 + stringValue: v1.14.4 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + 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-splunk-otel-collector-agent-pfm6z + stringValue: cert-manager-cainjector-5c5695d979-h7c2k - key: k8s.pod.uid value: - stringValue: 9afe2416-ad03-4b81-8b21-051643ed6f11 + stringValue: 5a67f651-add4-43f6-b2a7-06afb5fef617 - key: metric_source value: stringValue: kubernetes @@ -2764,35 +3424,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.2 + - asInt: "0" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: d3e96ffe6a87a4b9927ac1627a7dc00c6e92561ef7d14d0f06340e706832071e + stringValue: 82b7c36c5da8acb40f66be5b2c70430bb7d7c84e128bede5bc325f94653839bd - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: registry.k8s.io/etcd - key: container.image.tag value: - stringValue: 0.85.0 + stringValue: 3.5.10-0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + 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-k8s-cluster-receiver-8687f4bfbb86fbd + stringValue: etcd-kind-control-plane - key: k8s.pod.uid value: - stringValue: d310e423-e3ee-42ac-a284-9bab01bcbba4 + stringValue: 68828dad-2ca2-47ca-914e-f41cfd58244b - key: metric_source value: stringValue: kubernetes @@ -2800,35 +3469,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.1 + - asInt: "0" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e84ea721ed9d8bb476083d278dffa2f1ddf2c0d2ed6d1008264242a3f29a44df + stringValue: 9001b70e2443496dc4699019d151e7ac94b30c7555c9f95e0e9fb569a3c5985c - key: container.image.name value: - stringValue: docker.io/kindest/kindnetd + stringValue: quay.io/splunko11ytest/httpd - key: container.image.tag value: - stringValue: v20230511-dc714da8 + stringValue: latest + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: kindnet-cni + stringValue: prometheus-annotation-test - 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-pbtbs + stringValue: prometheus-annotation-test-cfc77c7b9-86vg5 - key: k8s.pod.uid value: - stringValue: 047ef34e-0d0d-4cc4-82d2-87495e01d3ac + stringValue: 558db553-7cc6-44f2-9039-f81e43d0bc25 - key: metric_source value: stringValue: kubernetes @@ -2836,26 +3514,32 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - name: k8s.container.cpu_limit - - gauge: - dataPoints: - - asInt: "134217728" + - asInt: "1" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 167008237804229f4a618b65ebc574180fcb330a35b97ca53aead0bf1e7425fd + stringValue: ad771ceab740a5a51b3c5e67b8ff36743ef86776f28942fcb28b22c4f37b309d - 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: v0.85.0 + stringValue: latest + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: manager + stringValue: dotnet-test - key: k8s.namespace.name value: stringValue: default @@ -2864,10 +3548,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-7867c9764-gdv94 + stringValue: dotnet-test-5479c475fc-qpr6c - key: k8s.pod.uid value: - stringValue: 062e3244-7c7d-4f1a-84e5-93451dd93467 + stringValue: bd83fe1d-786d-4da7-889e-cee578e6f2f8 - key: metric_source value: stringValue: kubernetes @@ -2875,35 +3559,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "178257920" + - asInt: "0" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 5f18c9c8cd462d6e3b8fb356335844f6de2026ef7d93f9cfb74b1a08ae1ad1d0 + stringValue: af7431cadfb9e46f242716f4588134dee006641290c1405f88e468beb2fa559d - 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.10.1 + stringValue: v0.105.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + 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-5dd5756b68-w7sqj + stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4-rpj6g - key: k8s.pod.uid value: - stringValue: c026c30f-457d-4649-b070-c708867ef2be + stringValue: 4e7bef74-37d2-4380-b5d7-c0ce1476be95 - key: metric_source value: stringValue: kubernetes @@ -2911,35 +3604,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "134217728" + - asInt: "0" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 8f91fb6daaa23a0d7310a6bdbed1ebd640680d4428652bac5053a37c5c019a4c + stringValue: e2ea169579f87203b926492d33050b56fd253b2e07bd66730339fc75a2fd4621 - key: container.image.name value: - stringValue: quay.io/brancz/kube-rbac-proxy + stringValue: registry.k8s.io/kube-controller-manager - key: container.image.tag value: - stringValue: v0.14.2 + stringValue: v1.29.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-rbac-proxy + 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-operator-7867c9764-gdv94 + stringValue: kube-controller-manager-kind-control-plane - key: k8s.pod.uid value: - stringValue: 062e3244-7c7d-4f1a-84e5-93451dd93467 + stringValue: 5c40ac1e-5432-4249-b754-4795b36d4c99 - key: metric_source value: stringValue: kubernetes @@ -2947,23 +3649,32 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "524288000" + - asInt: "0" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: b68c07b4e82828c9fb83b3c9cd119e0837506fcafc73c43c6f11d2916daf4754 + stringValue: e6089c166eeb1823e805c0845d43a777ae52ac054fe8ecc33805204995de77e7 - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: quay.io/splunko11ytest/java_test - key: container.image.tag value: - stringValue: 0.85.0 + stringValue: latest + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: java-test - key: k8s.namespace.name value: stringValue: default @@ -2972,10 +3683,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-pfm6z + stringValue: java-test-5c4d6479b8-j7fmr - key: k8s.pod.uid value: - stringValue: 9afe2416-ad03-4b81-8b21-051643ed6f11 + stringValue: 63ca8dfe-1747-4097-9b9d-071b1cb3b891 - key: metric_source value: stringValue: kubernetes @@ -2983,23 +3694,32 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "178257920" + - asInt: "0" attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: b8b1c6e32ce1686ca6f1a61244f6b35631160ecbfc34bf499ebc4f042a44c8b3 + stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: docker.io/kindest/kindnetd - key: container.image.tag value: - stringValue: v1.10.1 + stringValue: v20230511-dc714da8 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + stringValue: kindnet-cni - key: k8s.namespace.name value: stringValue: kube-system @@ -3008,10 +3728,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-5dd5756b68-ttk8c + stringValue: kindnet-9xfzp - key: k8s.pod.uid value: - stringValue: e29ffd0f-0138-49ef-92c5-c62195097294 + stringValue: f8149b85-dab1-482e-a735-0c29a953061b - key: metric_source value: stringValue: kubernetes @@ -3019,20 +3739,32 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "524288000" + name: k8s.container.restarts + - gauge: + dataPoints: + - asDouble: 0.2 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: d3e96ffe6a87a4b9927ac1627a7dc00c6e92561ef7d14d0f06340e706832071e + stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 - key: container.image.name value: stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: 0.85.0 + stringValue: 0.113.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: stringValue: otel-collector @@ -3044,10 +3776,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-8687f4bfbb86fbd + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj - key: k8s.pod.uid value: - stringValue: d310e423-e3ee-42ac-a284-9bab01bcbba4 + stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c - key: metric_source value: stringValue: kubernetes @@ -3055,35 +3787,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "52428800" + - asDouble: 0.1 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e84ea721ed9d8bb476083d278dffa2f1ddf2c0d2ed6d1008264242a3f29a44df + stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 - key: container.image.name value: - stringValue: docker.io/kindest/kindnetd + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator - key: container.image.tag value: - stringValue: v20230511-dc714da8 + stringValue: 0.116.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: kindnet-cni + 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: kindnet-pbtbs + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: 047ef34e-0d0d-4cc4-82d2-87495e01d3ac + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -3091,38 +3832,44 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - name: k8s.container.memory_limit - - gauge: - dataPoints: - - asInt: "104857600" + - asDouble: 0.2 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 0f2dea1b44ca69d59cd23e9ea0ddf09beb859f6c8c2122a30ffbfbc3c75f4ef4 + stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 - 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.9-0 + stringValue: 0.113.0 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + 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-rm8js - key: k8s.pod.uid value: - stringValue: bf9cabc7-b0cb-4fe0-b57d-6c1bb6189913 + stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 - key: metric_source value: stringValue: kubernetes @@ -3130,23 +3877,32 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "67108864" + - asDouble: 0.5 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 167008237804229f4a618b65ebc574180fcb330a35b97ca53aead0bf1e7425fd + stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac - 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: v0.85.0 + stringValue: v0.18.1 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: manager + stringValue: kube-rbac-proxy - key: k8s.namespace.name value: stringValue: default @@ -3155,10 +3911,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-7867c9764-gdv94 + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: 062e3244-7c7d-4f1a-84e5-93451dd93467 + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -3166,23 +3922,32 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "73400320" + - asDouble: 0.1 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 5f18c9c8cd462d6e3b8fb356335844f6de2026ef7d93f9cfb74b1a08ae1ad1d0 + stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: docker.io/kindest/kindnetd - key: container.image.tag value: - stringValue: v1.10.1 + stringValue: v20230511-dc714da8 + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + stringValue: kindnet-cni - key: k8s.namespace.name value: stringValue: kube-system @@ -3191,10 +3956,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-5dd5756b68-w7sqj + stringValue: kindnet-9xfzp - key: k8s.pod.uid value: - stringValue: c026c30f-457d-4649-b070-c708867ef2be + stringValue: f8149b85-dab1-482e-a735-0c29a953061b - key: metric_source value: stringValue: kubernetes @@ -3202,35 +3967,29 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "67108864" + name: k8s.container.cpu_limit + - gauge: + dataPoints: + - asInt: "1" attributes: - - key: container.id + - key: cluster_name value: - stringValue: 8f91fb6daaa23a0d7310a6bdbed1ebd640680d4428652bac5053a37c5c019a4c - - key: container.image.name + stringValue: ci-k8s-cluster + - key: customfield1 value: - stringValue: quay.io/brancz/kube-rbac-proxy - - key: container.image.tag + stringValue: customvalue1 + - key: customfield2 value: - stringValue: v0.14.2 + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks - - key: k8s.container.name - value: - stringValue: kube-rbac-proxy + 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: sock-operator-7867c9764-gdv94 - - key: k8s.pod.uid + stringValue: cert-manager + - key: k8s.namespace.uid value: - stringValue: 062e3244-7c7d-4f1a-84e5-93451dd93467 + stringValue: 0333ceb4-8c45-4aa4-9f30-e4611c1ba293 - key: metric_source value: stringValue: kubernetes @@ -3238,35 +3997,26 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "524288000" + - asInt: "1" attributes: - - key: container.id + - key: cluster_name value: - stringValue: b68c07b4e82828c9fb83b3c9cd119e0837506fcafc73c43c6f11d2916daf4754 - - key: container.image.name + stringValue: ci-k8s-cluster + - key: customfield1 value: - stringValue: quay.io/signalfx/splunk-otel-collector - - key: container.image.tag + stringValue: customvalue1 + - key: customfield2 value: - stringValue: 0.85.0 + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks - - key: k8s.container.name - value: - stringValue: otel-collector + 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: sock-splunk-otel-collector-agent-pfm6z - - key: k8s.pod.uid + - key: k8s.namespace.uid value: - stringValue: 9afe2416-ad03-4b81-8b21-051643ed6f11 + stringValue: ec9c3e28-5900-4a19-8673-1849ea3d4822 - key: metric_source value: stringValue: kubernetes @@ -3274,35 +4024,26 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "73400320" + - asInt: "1" attributes: - - key: container.id + - key: cluster_name value: - stringValue: b8b1c6e32ce1686ca6f1a61244f6b35631160ecbfc34bf499ebc4f042a44c8b3 - - key: container.image.name + stringValue: ci-k8s-cluster + - key: customfield1 value: - stringValue: registry.k8s.io/coredns/coredns - - key: container.image.tag + stringValue: customvalue1 + - key: customfield2 value: - stringValue: v1.10.1 + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks - - key: k8s.container.name - value: - stringValue: coredns + stringValue: dev-operator - key: k8s.namespace.name value: - stringValue: kube-system - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: coredns-5dd5756b68-ttk8c - - key: k8s.pod.uid + stringValue: kube-node-lease + - key: k8s.namespace.uid value: - stringValue: e29ffd0f-0138-49ef-92c5-c62195097294 + stringValue: e8150282-bdde-4b60-b5da-5258f5acd360 - key: metric_source value: stringValue: kubernetes @@ -3310,35 +4051,26 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "524288000" + - asInt: "1" attributes: - - key: container.id + - key: cluster_name value: - stringValue: d3e96ffe6a87a4b9927ac1627a7dc00c6e92561ef7d14d0f06340e706832071e - - key: container.image.name + stringValue: ci-k8s-cluster + - key: customfield1 value: - stringValue: quay.io/signalfx/splunk-otel-collector - - key: container.image.tag + stringValue: customvalue1 + - key: customfield2 value: - stringValue: 0.85.0 + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks - - key: k8s.container.name - value: - stringValue: otel-collector + 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: sock-splunk-otel-collector-k8s-cluster-receiver-8687f4bfbb86fbd - - key: k8s.pod.uid + stringValue: kube-public + - key: k8s.namespace.uid value: - stringValue: d310e423-e3ee-42ac-a284-9bab01bcbba4 + stringValue: e85b2621-5db2-409c-8c4b-800a6b0ffda5 - key: metric_source value: stringValue: kubernetes @@ -3346,35 +4078,53 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "52428800" + - asInt: "1" attributes: - - key: container.id + - key: cluster_name value: - stringValue: e84ea721ed9d8bb476083d278dffa2f1ddf2c0d2ed6d1008264242a3f29a44df - - key: container.image.name + stringValue: ci-k8s-cluster + - key: customfield1 value: - stringValue: docker.io/kindest/kindnetd - - key: container.image.tag + stringValue: customvalue1 + - key: customfield2 value: - stringValue: v20230511-dc714da8 + stringValue: customvalue2 - key: k8s.cluster.name value: - stringValue: rotel-eks - - key: k8s.container.name - value: - stringValue: kindnet-cni + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: kube-system - - key: k8s.node.name + - key: k8s.namespace.uid value: - stringValue: kind-control-plane - - key: k8s.pod.name + stringValue: 138057a9-3b09-42fe-88c0-c450ab0c801e + - key: metric_source value: - stringValue: kindnet-pbtbs - - key: k8s.pod.uid + 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: local-path-storage + - key: k8s.namespace.uid value: - stringValue: 047ef34e-0d0d-4cc4-82d2-87495e01d3ac + stringValue: 43f6f82f-b222-4526-b1e9-f254882a95b3 - key: metric_source value: stringValue: kubernetes @@ -3382,20 +4132,26 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - name: k8s.container.memory_request - - gauge: - dataPoints: - 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: ns-w-exclude - key: k8s.namespace.uid value: - stringValue: 70f7e9eb-77bc-47aa-86c7-e852ed47365b + stringValue: 1552ccba-ac45-4694-ab67-186fe7e3fb91 - key: metric_source value: stringValue: kubernetes @@ -3405,15 +4161,24 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: - stringValue: default + stringValue: ns-w-index - key: k8s.namespace.uid value: - stringValue: 66c6e06b-978e-4e4e-963c-1a6a858c31cf + stringValue: dcb6c3e6-3e4c-4cc2-9199-d2c0162ce5eb - key: metric_source value: stringValue: kubernetes @@ -3423,15 +4188,24 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: - stringValue: kube-node-lease + stringValue: ns-wo-index - key: k8s.namespace.uid value: - stringValue: 2859d780-e331-4785-a103-fd53c36a5cb8 + stringValue: 3d3deb73-f969-4042-9ee6-2760ce818ee9 - key: metric_source value: stringValue: kubernetes @@ -3439,17 +4213,62 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" + name: k8s.namespace.phase + - gauge: + dataPoints: - 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: rotel-eks + stringValue: dev-operator + - key: k8s.deployment.name + value: + stringValue: cert-manager + - key: k8s.deployment.uid + value: + stringValue: 0411cd92-0907-4a24-b0aa-50471f720a3f - key: k8s.namespace.name value: - stringValue: kube-public - - key: k8s.namespace.uid + stringValue: cert-manager + - key: metric_source value: - stringValue: fd827296-7360-4e0c-a3db-0cd13a1867a4 + 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: cert-manager-cainjector + - key: k8s.deployment.uid + value: + stringValue: f3c40b77-bed5-4643-a630-851aa418186a + - key: k8s.namespace.name + value: + stringValue: cert-manager - key: metric_source value: stringValue: kubernetes @@ -3459,15 +4278,57 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator + - key: k8s.deployment.name + value: + stringValue: cert-manager-webhook + - key: k8s.deployment.uid + value: + stringValue: 0afc64c5-b327-4611-871d-e9061e984240 - key: k8s.namespace.name value: - stringValue: kube-system - - key: k8s.namespace.uid + stringValue: cert-manager + - key: metric_source + value: + stringValue: kubernetes + - key: receiver value: - stringValue: d629fbc5-fed8-4748-89b7-9dcf828d9816 + stringValue: k8scluster + timeUnixNano: "1000000" + - asInt: "2" + 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: coredns + - key: k8s.deployment.uid + value: + stringValue: 01557217-542e-474e-8163-3c904c2ff031 + - key: k8s.namespace.name + value: + stringValue: kube-system - key: metric_source value: stringValue: kubernetes @@ -3477,15 +4338,57 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator + - key: k8s.deployment.name + value: + stringValue: dotnet-test + - key: k8s.deployment.uid + value: + stringValue: 6100532a-534f-4b43-9e3f-c04717efc797 - key: k8s.namespace.name value: - stringValue: local-path-storage - - key: k8s.namespace.uid + 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: 3991e76f-b0f1-4253-a53c-29628be0d2f0 + stringValue: dev-operator + - key: k8s.deployment.name + value: + stringValue: java-test + - key: k8s.deployment.uid + value: + stringValue: 3bbabf1d-aeee-4015-8c01-f4d41b89fea3 + - key: k8s.namespace.name + value: + stringValue: default - key: metric_source value: stringValue: kubernetes @@ -3495,15 +4398,57 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator + - key: k8s.deployment.name + value: + stringValue: local-path-provisioner + - key: k8s.deployment.uid + value: + stringValue: 1ef5c8b1-0c0f-4573-b3b7-c1f8cfb48378 - key: k8s.namespace.name value: - stringValue: ns-w-exclude - - key: k8s.namespace.uid + stringValue: local-path-storage + - 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: 484ae869-2b18-4855-9368-43d55c1385ce + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.deployment.name + value: + stringValue: nodejs-test + - key: k8s.deployment.uid + value: + stringValue: 91f0e846-8d66-4d2d-8a65-ad0866560012 + - key: k8s.namespace.name + value: + stringValue: default - key: metric_source value: stringValue: kubernetes @@ -3513,15 +4458,57 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator + - key: k8s.deployment.name + value: + stringValue: prometheus-annotation-test + - key: k8s.deployment.uid + value: + stringValue: 42a2b74d-011e-4076-9ecc-74c483fd78f2 - key: k8s.namespace.name value: - stringValue: ns-w-index - - key: k8s.namespace.uid + 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: sock-operator + - key: k8s.deployment.uid + value: + stringValue: 0ac9fc1b-abf1-487c-bae3-c85c85b215fb + - key: k8s.namespace.name value: - stringValue: be389993-32a3-421e-a4e5-197ea936e996 + stringValue: default - key: metric_source value: stringValue: kubernetes @@ -3531,15 +4518,57 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator + - key: k8s.deployment.name + value: + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver + - key: k8s.deployment.uid + value: + stringValue: 25b2563f-f023-40bb-864d-177c08d1c00c - key: k8s.namespace.name value: - stringValue: ns-wo-index - - key: k8s.namespace.uid + 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: d907432d-ee7b-4d1d-9739-27df63e9eb8e + stringValue: sock-splunk-otel-collector-ta + - key: k8s.deployment.uid + value: + stringValue: fa1fd60a-a693-4842-8cc4-9dd96d675d06 + - key: k8s.namespace.name + value: + stringValue: default - key: metric_source value: stringValue: kubernetes @@ -3547,20 +4576,89 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - name: k8s.namespace.phase + name: k8s.deployment.available - gauge: dataPoints: - 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: cert-manager + - key: k8s.deployment.uid + value: + stringValue: 0411cd92-0907-4a24-b0aa-50471f720a3f + - key: k8s.namespace.name + value: + stringValue: cert-manager + - 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: cert-manager-cainjector + - key: k8s.deployment.uid + value: + stringValue: f3c40b77-bed5-4643-a630-851aa418186a + - key: k8s.namespace.name + value: + stringValue: cert-manager + - 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: rotel-eks + stringValue: dev-operator - key: k8s.deployment.name value: - stringValue: cert-manager + stringValue: cert-manager-webhook - key: k8s.deployment.uid value: - stringValue: cd2a6b90-0eb6-4e27-9f35-5cdbec85ebdd + stringValue: 0afc64c5-b327-4611-871d-e9061e984240 - key: k8s.namespace.name value: stringValue: cert-manager @@ -3571,20 +4669,29 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "2" 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: rotel-eks + stringValue: dev-operator - key: k8s.deployment.name value: - stringValue: cert-manager-cainjector + stringValue: coredns - key: k8s.deployment.uid value: - stringValue: 9d2daa69-2e21-4274-9f8d-e38b05bbf2b5 + stringValue: 01557217-542e-474e-8163-3c904c2ff031 - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: kube-system - key: metric_source value: stringValue: kubernetes @@ -3594,18 +4701,27 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.deployment.name value: - stringValue: cert-manager-webhook + stringValue: dotnet-test - key: k8s.deployment.uid value: - stringValue: 00c95a5a-1bba-47b5-819f-dd692807cfa2 + stringValue: 6100532a-534f-4b43-9e3f-c04717efc797 - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: default - key: metric_source value: stringValue: kubernetes @@ -3613,20 +4729,29 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "2" + - 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: rotel-eks + stringValue: dev-operator - key: k8s.deployment.name value: - stringValue: coredns + stringValue: java-test - key: k8s.deployment.uid value: - stringValue: 8d51777a-0115-465a-94e1-43a5e871d581 + stringValue: 3bbabf1d-aeee-4015-8c01-f4d41b89fea3 - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: default - key: metric_source value: stringValue: kubernetes @@ -3636,15 +4761,24 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.deployment.name value: stringValue: local-path-provisioner - key: k8s.deployment.uid value: - stringValue: a690d7bd-a831-48ae-a0fa-44a4485b2b3e + stringValue: 1ef5c8b1-0c0f-4573-b3b7-c1f8cfb48378 - key: k8s.namespace.name value: stringValue: local-path-storage @@ -3657,15 +4791,24 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.deployment.name value: stringValue: nodejs-test - key: k8s.deployment.uid value: - stringValue: 4d52f5ff-5b2f-4b1c-a488-639f029967eb + stringValue: 91f0e846-8d66-4d2d-8a65-ad0866560012 - key: k8s.namespace.name value: stringValue: default @@ -3678,15 +4821,24 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.deployment.name value: - stringValue: sock-operator + stringValue: prometheus-annotation-test - key: k8s.deployment.uid value: - stringValue: 8d77cf86-4513-4a5d-bb64-2bf8ea7c4dc3 + stringValue: 42a2b74d-011e-4076-9ecc-74c483fd78f2 - key: k8s.namespace.name value: stringValue: default @@ -3699,15 +4851,24 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.deployment.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver + stringValue: sock-operator - key: k8s.deployment.uid value: - stringValue: a9ae7c39-b804-4cb5-b9a1-95b8bcf6cf25 + stringValue: 0ac9fc1b-abf1-487c-bae3-c85c85b215fb - key: k8s.namespace.name value: stringValue: default @@ -3718,23 +4879,29 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - name: k8s.deployment.available - - gauge: - dataPoints: - 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: rotel-eks + stringValue: dev-operator - key: k8s.deployment.name value: - stringValue: cert-manager + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver - key: k8s.deployment.uid value: - stringValue: cd2a6b90-0eb6-4e27-9f35-5cdbec85ebdd + stringValue: 25b2563f-f023-40bb-864d-177c08d1c00c - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: default - key: metric_source value: stringValue: kubernetes @@ -3744,18 +4911,27 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.deployment.name value: - stringValue: cert-manager-cainjector + stringValue: sock-splunk-otel-collector-ta - key: k8s.deployment.uid value: - stringValue: 9d2daa69-2e21-4274-9f8d-e38b05bbf2b5 + stringValue: fa1fd60a-a693-4842-8cc4-9dd96d675d06 - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: default - key: metric_source value: stringValue: kubernetes @@ -3763,20 +4939,32 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" + name: k8s.deployment.desired + - gauge: + dataPoints: - asInt: "1" attributes: - - key: k8s.cluster.name + - key: cluster_name value: - stringValue: rotel-eks - - key: k8s.deployment.name + stringValue: ci-k8s-cluster + - key: customfield1 value: - stringValue: cert-manager-webhook - - key: k8s.deployment.uid + stringValue: customvalue1 + - key: customfield2 value: - stringValue: 00c95a5a-1bba-47b5-819f-dd692807cfa2 + stringValue: customvalue2 + - key: k8s.cluster.name + value: + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: cert-manager + - key: k8s.replicaset.name + value: + stringValue: cert-manager-67c98b89c8 + - key: k8s.replicaset.uid + value: + stringValue: 7b42f487-280b-430a-b670-ef8f7795c516 - key: metric_source value: stringValue: kubernetes @@ -3784,20 +4972,29 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "2" + - asInt: "1" attributes: - - key: k8s.cluster.name + - key: cluster_name value: - stringValue: rotel-eks - - key: k8s.deployment.name + stringValue: ci-k8s-cluster + - key: customfield1 value: - stringValue: coredns - - key: k8s.deployment.uid + stringValue: customvalue1 + - key: customfield2 value: - stringValue: 8d51777a-0115-465a-94e1-43a5e871d581 + stringValue: customvalue2 + - key: k8s.cluster.name + value: + stringValue: dev-operator - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: cert-manager + - key: k8s.replicaset.name + value: + stringValue: cert-manager-cainjector-5c5695d979 + - key: k8s.replicaset.uid + value: + stringValue: 1d8e77d4-b9be-45d2-b4e0-eea4fffcdacd - key: metric_source value: stringValue: kubernetes @@ -3807,18 +5004,27 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "1" attributes: - - key: k8s.cluster.name + - key: cluster_name value: - stringValue: rotel-eks - - key: k8s.deployment.name + stringValue: ci-k8s-cluster + - key: customfield1 value: - stringValue: local-path-provisioner - - key: k8s.deployment.uid + stringValue: customvalue1 + - key: customfield2 value: - stringValue: a690d7bd-a831-48ae-a0fa-44a4485b2b3e + stringValue: customvalue2 + - key: k8s.cluster.name + value: + stringValue: dev-operator - key: k8s.namespace.name value: - stringValue: local-path-storage + stringValue: cert-manager + - key: k8s.replicaset.name + value: + stringValue: cert-manager-webhook-7f9f8648b9 + - key: k8s.replicaset.uid + value: + stringValue: 42043811-fc43-4ad0-87a3-d747d51c350f - key: metric_source value: stringValue: kubernetes @@ -3828,18 +5034,27 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "1" attributes: - - key: k8s.cluster.name + - key: cluster_name value: - stringValue: rotel-eks - - key: k8s.deployment.name + stringValue: ci-k8s-cluster + - key: customfield1 value: - stringValue: nodejs-test - - key: k8s.deployment.uid + stringValue: customvalue1 + - key: customfield2 value: - stringValue: 4d52f5ff-5b2f-4b1c-a488-639f029967eb + stringValue: customvalue2 + - key: k8s.cluster.name + value: + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default + - key: k8s.replicaset.name + value: + stringValue: dotnet-test-5479c475fc + - key: k8s.replicaset.uid + value: + stringValue: e7be52a8-2517-412c-b27a-6294600ee83e - key: metric_source value: stringValue: kubernetes @@ -3849,18 +5064,27 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "1" attributes: - - key: k8s.cluster.name + - key: cluster_name value: - stringValue: rotel-eks - - key: k8s.deployment.name + stringValue: ci-k8s-cluster + - key: customfield1 value: - stringValue: sock-operator - - key: k8s.deployment.uid + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: k8s.cluster.name value: - stringValue: 8d77cf86-4513-4a5d-bb64-2bf8ea7c4dc3 + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default + - key: k8s.replicaset.name + value: + stringValue: java-test-5c4d6479b8 + - key: k8s.replicaset.uid + value: + stringValue: ba3559c4-273c-44ee-aedf-ade722b9b2e3 - key: metric_source value: stringValue: kubernetes @@ -3870,18 +5094,27 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "1" attributes: - - key: k8s.cluster.name + - key: cluster_name value: - stringValue: rotel-eks - - key: k8s.deployment.name + stringValue: ci-k8s-cluster + - key: customfield1 value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver - - key: k8s.deployment.uid + stringValue: customvalue1 + - key: customfield2 value: - stringValue: a9ae7c39-b804-4cb5-b9a1-95b8bcf6cf25 + stringValue: customvalue2 + - key: k8s.cluster.name + value: + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default + - key: k8s.replicaset.name + value: + stringValue: nodejs-test-56b74df9ff + - key: k8s.replicaset.uid + value: + stringValue: f6207697-49cc-40af-b3ac-f97f228b0025 - key: metric_source value: stringValue: kubernetes @@ -3889,23 +5122,29 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - name: k8s.deployment.desired - - gauge: - dataPoints: - 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: default - key: k8s.replicaset.name value: - stringValue: cert-manager-cainjector-65c7bff89d + stringValue: prometheus-annotation-test-cfc77c7b9 - key: k8s.replicaset.uid value: - stringValue: 16620753-2ac6-4c9d-a6b6-57ce6444cc32 + stringValue: b93b7ff1-5ecf-49d3-af69-8df26c73d3e8 - key: metric_source value: stringValue: kubernetes @@ -3915,18 +5154,27 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: default - key: k8s.replicaset.name value: - stringValue: cert-manager-cbcf9668d + stringValue: sock-operator-768dffbcb8 - key: k8s.replicaset.uid value: - stringValue: e352e7ed-b9c7-4b1e-9702-c8eebb9f28bc + stringValue: 86862db6-a9f6-433f-9dff-cfcad25b822e - key: metric_source value: stringValue: kubernetes @@ -3936,18 +5184,27 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: default - key: k8s.replicaset.name value: - stringValue: cert-manager-webhook-594cb9799b + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95 - key: k8s.replicaset.uid value: - stringValue: b529b042-8ef6-49b4-a005-e67aea95c1fc + stringValue: ed48b4b4-1bf7-4a60-9b69-543007ef27bc - key: metric_source value: stringValue: kubernetes @@ -3957,18 +5214,27 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default - key: k8s.replicaset.name value: - stringValue: nodejs-test-57564b7dc9 + stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4 - key: k8s.replicaset.uid value: - stringValue: fc4c748c-a646-4813-9abf-f0688a15d022 + stringValue: b2d75e9f-1de8-4549-91ca-4ff6f282c319 - key: metric_source value: stringValue: kubernetes @@ -3976,20 +5242,29 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "2" 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: - stringValue: default + stringValue: kube-system - key: k8s.replicaset.name value: - stringValue: dotnet-test-57564b7dc9 + stringValue: coredns-76f75df574 - key: k8s.replicaset.uid value: - stringValue: fc4c748c-a646-4813-9abf-f0688a15d022 + stringValue: af56eca2-a6ec-485b-8547-f065708c4887 - key: metric_source value: stringValue: kubernetes @@ -3999,18 +5274,27 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: - stringValue: default + stringValue: local-path-storage - key: k8s.replicaset.name value: - stringValue: sock-operator-7867c9764 + stringValue: local-path-provisioner-6f8956fb48 - key: k8s.replicaset.uid value: - stringValue: d129ef46-3a1c-4e26-987b-b778356962e5 + stringValue: bc94f22c-80e8-4eaa-8ee2-f7c1109a5ffc - key: metric_source value: stringValue: kubernetes @@ -4018,20 +5302,32 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" + name: k8s.replicaset.available + - gauge: + dataPoints: - 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: - stringValue: default + stringValue: cert-manager - key: k8s.replicaset.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-8687f4bfbb + stringValue: cert-manager-67c98b89c8 - key: k8s.replicaset.uid value: - stringValue: 779c6bfc-728e-43b2-9e38-c80f56d7f8c1 + stringValue: 7b42f487-280b-430a-b670-ef8f7795c516 - key: metric_source value: stringValue: kubernetes @@ -4039,20 +5335,29 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "2" + - 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: - stringValue: kube-system + stringValue: cert-manager - key: k8s.replicaset.name value: - stringValue: coredns-5dd5756b68 + stringValue: cert-manager-cainjector-5c5695d979 - key: k8s.replicaset.uid value: - stringValue: e0ccf64f-8b03-4ffc-8fb1-a84507cca4b5 + stringValue: 1d8e77d4-b9be-45d2-b4e0-eea4fffcdacd - key: metric_source value: stringValue: kubernetes @@ -4062,18 +5367,27 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: - stringValue: local-path-storage + stringValue: cert-manager - key: k8s.replicaset.name value: - stringValue: local-path-provisioner-6f8956fb48 + stringValue: cert-manager-webhook-7f9f8648b9 - key: k8s.replicaset.uid value: - stringValue: 4b3bdd53-7d41-4413-9a97-c89c6d60576e + stringValue: 42043811-fc43-4ad0-87a3-d747d51c350f - key: metric_source value: stringValue: kubernetes @@ -4081,23 +5395,29 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - name: k8s.replicaset.available - - gauge: - dataPoints: - 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: default - key: k8s.replicaset.name value: - stringValue: cert-manager-cainjector-65c7bff89d + stringValue: dotnet-test-5479c475fc - key: k8s.replicaset.uid value: - stringValue: 16620753-2ac6-4c9d-a6b6-57ce6444cc32 + stringValue: e7be52a8-2517-412c-b27a-6294600ee83e - key: metric_source value: stringValue: kubernetes @@ -4107,18 +5427,27 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: default - key: k8s.replicaset.name value: - stringValue: cert-manager-cbcf9668d + stringValue: java-test-5c4d6479b8 - key: k8s.replicaset.uid value: - stringValue: e352e7ed-b9c7-4b1e-9702-c8eebb9f28bc + stringValue: ba3559c4-273c-44ee-aedf-ade722b9b2e3 - key: metric_source value: stringValue: kubernetes @@ -4128,18 +5457,27 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: - stringValue: cert-manager + stringValue: default - key: k8s.replicaset.name value: - stringValue: cert-manager-webhook-594cb9799b + stringValue: nodejs-test-56b74df9ff - key: k8s.replicaset.uid value: - stringValue: b529b042-8ef6-49b4-a005-e67aea95c1fc + stringValue: f6207697-49cc-40af-b3ac-f97f228b0025 - key: metric_source value: stringValue: kubernetes @@ -4149,18 +5487,27 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default - key: k8s.replicaset.name value: - stringValue: nodejs-test-57564b7dc9 + stringValue: prometheus-annotation-test-cfc77c7b9 - key: k8s.replicaset.uid value: - stringValue: fc4c748c-a646-4813-9abf-f0688a15d022 + stringValue: b93b7ff1-5ecf-49d3-af69-8df26c73d3e8 - key: metric_source value: stringValue: kubernetes @@ -4170,18 +5517,27 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default - key: k8s.replicaset.name value: - stringValue: dotnet-test-57564b7dc9 + stringValue: sock-operator-768dffbcb8 - key: k8s.replicaset.uid value: - stringValue: fc4c748c-a646-4813-9abf-f0688a15d022 + stringValue: 86862db6-a9f6-433f-9dff-cfcad25b822e - key: metric_source value: stringValue: kubernetes @@ -4191,18 +5547,27 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default - key: k8s.replicaset.name value: - stringValue: sock-operator-7867c9764 + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95 - key: k8s.replicaset.uid value: - stringValue: d129ef46-3a1c-4e26-987b-b778356962e5 + stringValue: ed48b4b4-1bf7-4a60-9b69-543007ef27bc - key: metric_source value: stringValue: kubernetes @@ -4212,18 +5577,27 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default - key: k8s.replicaset.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-8687f4bfbb + stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4 - key: k8s.replicaset.uid value: - stringValue: 779c6bfc-728e-43b2-9e38-c80f56d7f8c1 + stringValue: b2d75e9f-1de8-4549-91ca-4ff6f282c319 - key: metric_source value: stringValue: kubernetes @@ -4233,18 +5607,27 @@ resourceMetrics: timeUnixNano: "1000000" - asInt: "2" 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: kube-system - key: k8s.replicaset.name value: - stringValue: coredns-5dd5756b68 + stringValue: coredns-76f75df574 - key: k8s.replicaset.uid value: - stringValue: e0ccf64f-8b03-4ffc-8fb1-a84507cca4b5 + stringValue: af56eca2-a6ec-485b-8547-f065708c4887 - key: metric_source value: stringValue: kubernetes @@ -4254,9 +5637,18 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: local-path-storage @@ -4265,7 +5657,7 @@ resourceMetrics: stringValue: local-path-provisioner-6f8956fb48 - key: k8s.replicaset.uid value: - stringValue: 4b3bdd53-7d41-4413-9a97-c89c6d60576e + stringValue: bc94f22c-80e8-4eaa-8ee2-f7c1109a5ffc - key: metric_source value: stringValue: kubernetes @@ -4278,15 +5670,24 @@ resourceMetrics: dataPoints: - 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: rotel-eks + stringValue: dev-operator - key: k8s.daemonset.name value: stringValue: kindnet - key: k8s.daemonset.uid value: - stringValue: 178ae82d-c61b-4ccd-8f0e-681092827d83 + stringValue: 2415753e-2368-49e3-af97-0f97ed8328d7 - key: k8s.namespace.name value: stringValue: kube-system @@ -4299,15 +5700,24 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.daemonset.name value: stringValue: kube-proxy - key: k8s.daemonset.uid value: - stringValue: 08707a00-e808-4df3-8162-d6a71e63ec81 + stringValue: 708ab381-ee91-4714-9baf-a934e69aaf04 - key: k8s.namespace.name value: stringValue: kube-system @@ -4320,15 +5730,24 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.daemonset.name value: stringValue: sock-splunk-otel-collector-agent - key: k8s.daemonset.uid value: - stringValue: 28a98e0e-076d-4ed2-8970-f487c4112875 + stringValue: 524dde1d-442c-45d0-ba4e-cdd483ed7e59 - key: k8s.namespace.name value: stringValue: default @@ -4344,15 +5763,24 @@ resourceMetrics: dataPoints: - 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: rotel-eks + stringValue: dev-operator - key: k8s.daemonset.name value: stringValue: kindnet - key: k8s.daemonset.uid value: - stringValue: 178ae82d-c61b-4ccd-8f0e-681092827d83 + stringValue: 2415753e-2368-49e3-af97-0f97ed8328d7 - key: k8s.namespace.name value: stringValue: kube-system @@ -4365,15 +5793,24 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.daemonset.name value: stringValue: kube-proxy - key: k8s.daemonset.uid value: - stringValue: 08707a00-e808-4df3-8162-d6a71e63ec81 + stringValue: 708ab381-ee91-4714-9baf-a934e69aaf04 - key: k8s.namespace.name value: stringValue: kube-system @@ -4386,15 +5823,24 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.daemonset.name value: stringValue: sock-splunk-otel-collector-agent - key: k8s.daemonset.uid value: - stringValue: 28a98e0e-076d-4ed2-8970-f487c4112875 + stringValue: 524dde1d-442c-45d0-ba4e-cdd483ed7e59 - key: k8s.namespace.name value: stringValue: default @@ -4410,15 +5856,24 @@ resourceMetrics: dataPoints: - 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: rotel-eks + stringValue: dev-operator - key: k8s.daemonset.name value: stringValue: kindnet - key: k8s.daemonset.uid value: - stringValue: 178ae82d-c61b-4ccd-8f0e-681092827d83 + stringValue: 2415753e-2368-49e3-af97-0f97ed8328d7 - key: k8s.namespace.name value: stringValue: kube-system @@ -4431,15 +5886,24 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.daemonset.name value: stringValue: kube-proxy - key: k8s.daemonset.uid value: - stringValue: 08707a00-e808-4df3-8162-d6a71e63ec81 + stringValue: 708ab381-ee91-4714-9baf-a934e69aaf04 - key: k8s.namespace.name value: stringValue: kube-system @@ -4452,15 +5916,24 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.daemonset.name value: stringValue: sock-splunk-otel-collector-agent - key: k8s.daemonset.uid value: - stringValue: 28a98e0e-076d-4ed2-8970-f487c4112875 + stringValue: 524dde1d-442c-45d0-ba4e-cdd483ed7e59 - key: k8s.namespace.name value: stringValue: default @@ -4476,15 +5949,24 @@ resourceMetrics: dataPoints: - 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: rotel-eks + stringValue: dev-operator - key: k8s.daemonset.name value: stringValue: kindnet - key: k8s.daemonset.uid value: - stringValue: 178ae82d-c61b-4ccd-8f0e-681092827d83 + stringValue: 2415753e-2368-49e3-af97-0f97ed8328d7 - key: k8s.namespace.name value: stringValue: kube-system @@ -4497,15 +5979,24 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.daemonset.name value: stringValue: kube-proxy - key: k8s.daemonset.uid value: - stringValue: 08707a00-e808-4df3-8162-d6a71e63ec81 + stringValue: 708ab381-ee91-4714-9baf-a934e69aaf04 - key: k8s.namespace.name value: stringValue: kube-system @@ -4518,15 +6009,24 @@ resourceMetrics: 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: rotel-eks + stringValue: dev-operator - key: k8s.daemonset.name value: stringValue: sock-splunk-otel-collector-agent - key: k8s.daemonset.uid value: - stringValue: 28a98e0e-076d-4ed2-8970-f487c4112875 + stringValue: 524dde1d-442c-45d0-ba4e-cdd483ed7e59 - key: k8s.namespace.name value: stringValue: default @@ -4542,15 +6042,24 @@ resourceMetrics: dataPoints: - 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: rotel-eks + stringValue: dev-operator - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.node.uid value: - stringValue: 33909090-f3de-4231-a442-9f10007a030d + stringValue: 15985013-7564-45b7-a2ae-3b5f5d9b93e5 - key: metric_source value: stringValue: kubernetes diff --git a/functional_tests/testdata/expected_eks_values/expected_dotnet_traces.yaml b/functional_tests/testdata/expected_eks_values/expected_dotnet_traces.yaml index 91189e3556..6c8f7ab793 100644 --- a/functional_tests/testdata/expected_eks_values/expected_dotnet_traces.yaml +++ b/functional_tests/testdata/expected_eks_values/expected_dotnet_traces.yaml @@ -3,13 +3,28 @@ resourceSpans: attributes: - key: splunk.distro.version value: - stringValue: 1.4.0 + stringValue: 1.8.0 - key: telemetry.distro.name value: stringValue: splunk-otel-dotnet - key: telemetry.distro.version value: - stringValue: 1.4.0 + stringValue: 1.8.0 + - key: os.type + value: + stringValue: linux + - key: os.description + value: + stringValue: Alpine Linux v3.19 + - key: os.build_id + value: + stringValue: 6.10.14-linuxkit + - key: os.name + value: + stringValue: Alpine Linux + - key: os.version + value: + stringValue: 3.19.1 - key: host.name value: stringValue: kind-control-plane @@ -30,7 +45,7 @@ resourceSpans: stringValue: 8.0.3 - key: container.id value: - stringValue: efe5e5c4a3ff4cb3620cf1ea1b6210aadc0d78592a001ec6ae52dceacb4a3fbd + stringValue: 2cddc8bca4ee39b99dbceddfb87c2816bc255d62105fd0684b8441c1ba1bb032 - key: telemetry.sdk.name value: stringValue: opentelemetry @@ -39,13 +54,13 @@ resourceSpans: stringValue: dotnet - key: telemetry.sdk.version value: - stringValue: 1.7.0 + stringValue: 1.9.0 - key: service.name value: stringValue: dotnet-test - key: splunk.zc.method value: - stringValue: splunk-otel-dotnet:v1.4.0 + stringValue: splunk-otel-dotnet:v1.8.0 - key: k8s.container.name value: stringValue: dotnet-test @@ -60,19 +75,22 @@ resourceSpans: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: dotnet-test-764877d877-l94s6 + stringValue: dotnet-test-5479c475fc-xfq6h - key: k8s.replicaset.name value: - stringValue: dotnet-test-764877d877 + stringValue: dotnet-test-5479c475fc + - key: service.instance.id + value: + stringValue: default.dotnet-test-5479c475fc-xfq6h.dotnet-test - key: service.version value: stringValue: latest - key: k8s.pod.ip value: - stringValue: 10.244.0.69 + stringValue: 10.244.0.35 - key: k8s.pod.uid value: - stringValue: 290889bb-9f5e-439a-9135-65c604334749 + stringValue: 6063a76c-a33f-4bc4-9f45-5d4634d5ee2f - key: k8s.pod.labels.app value: stringValue: dotnet-test @@ -82,9 +100,6 @@ resourceSpans: - key: container.image.tag value: stringValue: latest - - key: os.type - value: - stringValue: linux - key: k8s.cluster.name value: stringValue: dev-operator @@ -130,14 +145,15 @@ resourceSpans: - key: http.response.status_code value: intValue: "200" - endTimeUnixNano: "1715969864227389200" + endTimeUnixNano: "1736397260127721500" + flags: 769 kind: 2 name: GET / - parentSpanId: da5dd755f29fad09 - spanId: 0038c8de02b44e52 - startTimeUnixNano: "1715969864226627200" + parentSpanId: "" + spanId: 68d682aca4683031 + startTimeUnixNano: "1736397260126572600" status: {} - traceId: a924e52ebd34a2bb97656d9a60cf8212 + traceId: 7793d37e4f80ad6044f69b76d5a1f133 - attributes: - key: server.address value: @@ -163,14 +179,15 @@ resourceSpans: - key: http.response.status_code value: intValue: "200" - endTimeUnixNano: "1715969865240829300" + endTimeUnixNano: "1736397261137453200" + flags: 769 kind: 2 name: GET / - parentSpanId: 43dcce3eb67fa6bd - spanId: c567a29214cdf900 - startTimeUnixNano: "1715969865236407900" + parentSpanId: "" + spanId: 711fa6975e0e8f44 + startTimeUnixNano: "1736397261135556000" status: {} - traceId: 361172a0f5dfd7d548694f8ba9fc7b98 + traceId: 0d313e324befe48cc88f09e5e5bf3d25 - attributes: - key: server.address value: @@ -196,14 +213,15 @@ resourceSpans: - key: http.response.status_code value: intValue: "200" - endTimeUnixNano: "1715969866248003700" + endTimeUnixNano: "1736397262168718400" + flags: 769 kind: 2 name: GET / - parentSpanId: 17ba1638a4f7c60d - spanId: 073e155b17f07ad9 - startTimeUnixNano: "1715969866247119500" + parentSpanId: "" + spanId: bf3f028b17c95f10 + startTimeUnixNano: "1736397262149689400" status: {} - traceId: 7010aa6cf5bcca3700ef756a8a245861 + traceId: 21ad12bd014be61ac8c2d7d5dbc16a6f - attributes: - key: server.address value: @@ -229,14 +247,15 @@ resourceSpans: - key: http.response.status_code value: intValue: "200" - endTimeUnixNano: "1715969867251548500" + endTimeUnixNano: "1736397263171261500" + flags: 769 kind: 2 name: GET / - parentSpanId: 72e40086b5b0decd - spanId: 0cbfe346413e4bd2 - startTimeUnixNano: "1715969867250849200" + parentSpanId: "" + spanId: 4e61e74903f07f0d + startTimeUnixNano: "1736397263170709600" status: {} - traceId: d18cbfbb3ebf052ed5ed379787523eea + traceId: fb2460a9f91bf865f0e14ccd42c1faf4 - attributes: - key: server.address value: @@ -262,14 +281,15 @@ resourceSpans: - key: http.response.status_code value: intValue: "200" - endTimeUnixNano: "1715969868255270900" + endTimeUnixNano: "1736397264178789800" + flags: 769 kind: 2 name: GET / - parentSpanId: 3f5a1f8c161e1850 - spanId: 4ac4972d600be731 - startTimeUnixNano: "1715969868254656300" + parentSpanId: "" + spanId: d9019541eb6268d3 + startTimeUnixNano: "1736397264177741000" status: {} - traceId: ddbc75950dd2f4469d767a7ce569d3cd + traceId: d4a76f55aa09c0f484537f8c71db770a - scope: name: System.Net.Http spans: @@ -292,14 +312,15 @@ resourceSpans: - key: http.response.status_code value: intValue: "200" - endTimeUnixNano: "1715969864228877600" + endTimeUnixNano: "1736397260128340800" + flags: 257 kind: 3 name: GET parentSpanId: "" - spanId: da5dd755f29fad09 - startTimeUnixNano: "1715969864225322300" + spanId: d12a4bf91e087496 + startTimeUnixNano: "1736397260125453400" status: {} - traceId: a924e52ebd34a2bb97656d9a60cf8212 + traceId: 7793d37e4f80ad6044f69b76d5a1f133 - attributes: - key: http.request.method value: @@ -319,14 +340,15 @@ resourceSpans: - key: http.response.status_code value: intValue: "200" - endTimeUnixNano: "1715969865241549900" + endTimeUnixNano: "1736397261137033900" + flags: 257 kind: 3 name: GET parentSpanId: "" - spanId: 43dcce3eb67fa6bd - startTimeUnixNano: "1715969865232068500" + spanId: 4855c9c1b7ee6d95 + startTimeUnixNano: "1736397261132354800" status: {} - traceId: 361172a0f5dfd7d548694f8ba9fc7b98 + traceId: 0d313e324befe48cc88f09e5e5bf3d25 - attributes: - key: http.request.method value: @@ -346,14 +368,15 @@ resourceSpans: - key: http.response.status_code value: intValue: "200" - endTimeUnixNano: "1715969866248180700" + endTimeUnixNano: "1736397262158260200" + flags: 257 kind: 3 name: GET parentSpanId: "" - spanId: 17ba1638a4f7c60d - startTimeUnixNano: "1715969866246343600" + spanId: 5d82ea96efad0603 + startTimeUnixNano: "1736397262142078100" status: {} - traceId: 7010aa6cf5bcca3700ef756a8a245861 + traceId: 21ad12bd014be61ac8c2d7d5dbc16a6f - attributes: - key: http.request.method value: @@ -373,14 +396,15 @@ resourceSpans: - key: http.response.status_code value: intValue: "200" - endTimeUnixNano: "1715969867251664300" + endTimeUnixNano: "1736397263171362000" + flags: 257 kind: 3 name: GET parentSpanId: "" - spanId: 72e40086b5b0decd - startTimeUnixNano: "1715969867250062200" + spanId: 6c513a95d5051993 + startTimeUnixNano: "1736397263169900600" status: {} - traceId: d18cbfbb3ebf052ed5ed379787523eea + traceId: fb2460a9f91bf865f0e14ccd42c1faf4 - attributes: - key: http.request.method value: @@ -400,11 +424,12 @@ resourceSpans: - key: http.response.status_code value: intValue: "200" - endTimeUnixNano: "1715969868255724700" + endTimeUnixNano: "1736397264179404000" + flags: 257 kind: 3 name: GET parentSpanId: "" - spanId: 3f5a1f8c161e1850 - startTimeUnixNano: "1715969868253213300" + spanId: 805d744cc1048960 + startTimeUnixNano: "1736397264173926600" status: {} - traceId: ddbc75950dd2f4469d767a7ce569d3cd + traceId: d4a76f55aa09c0f484537f8c71db770a diff --git a/functional_tests/testdata/expected_eks_values/expected_internal_metrics.yaml b/functional_tests/testdata/expected_eks_values/expected_internal_metrics.yaml index ba86491651..086a28bf57 100644 --- a/functional_tests/testdata/expected_eks_values/expected_internal_metrics.yaml +++ b/functional_tests/testdata/expected_eks_values/expected_internal_metrics.yaml @@ -2,12 +2,19 @@ resourceMetrics: - resource: {} scopeMetrics: - metrics: - - name: otelcol_otelsvc_k8s_namespace_added - sum: - aggregationTemporality: 2 + - gauge: dataPoints: - - asDouble: 18 + - asDouble: 27 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -16,7 +23,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -25,40 +32,54 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - gauge: + name: otelcol_fileconsumer_open_files + - name: otelcol_otelsvc_k8s_namespace_deleted + sum: + aggregationTemporality: 2 dataPoints: - - asDouble: 1.114112e+07 + - asDouble: 12 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -67,7 +88,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -76,42 +97,54 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - name: otelcol_process_memory_rss - - name: otelcol_processor_accepted_log_records + isMonotonic: true + - name: otelcol_otelsvc_k8s_namespace_updated sum: aggregationTemporality: 2 dataPoints: - - asDouble: 433 + - asDouble: 12 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -120,7 +153,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -129,43 +162,54 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: processor + - key: server.port value: - stringValue: memory_limiter + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" isMonotonic: true - - gauge: + - name: otelcol_processor_outgoing_items + sum: + aggregationTemporality: 2 dataPoints: - - asDouble: 1 + - asDouble: 1691 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -174,7 +218,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -183,36 +227,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: otel_signal + value: + stringValue: logs + - key: processor + value: + stringValue: filter/logs + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - name: up - - name: otelcol_exporter_send_failed_log_records - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 68 + - asDouble: 1817 attributes: - - key: exporter + - key: cluster_name value: - stringValue: splunk_hec/platform_logs + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -221,7 +284,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -230,40 +293,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: otel_signal + value: + stringValue: logs + - key: processor + value: + stringValue: k8sattributes + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - gauge: - dataPoints: - - asDouble: 92 + - asDouble: 2463 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -272,7 +350,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -281,33 +359,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: otel_signal + value: + stringValue: logs + - key: processor + value: + stringValue: memory_limiter + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - name: scrape_samples_post_metric_relabeling - - name: otelcol_processor_refused_metric_points - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 0 + - asDouble: 2337 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -316,7 +416,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -325,45 +425,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: otel_signal + value: + stringValue: logs - key: processor value: - stringValue: memory_limiter + stringValue: resource + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_otelsvc_k8s_pod_updated - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 90 + - asDouble: 2337 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -372,7 +482,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -381,42 +491,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: otel_signal + value: + stringValue: logs + - key: processor + value: + stringValue: resource/add_environment + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_process_runtime_total_alloc_bytes - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 9.78757056e+08 + - asDouble: 1691 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -425,7 +548,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -434,42 +557,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: otel_signal + value: + stringValue: logs + - key: processor + value: + stringValue: resource/logs + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_processor_accepted_spans - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 137 + - asDouble: 1691 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -478,7 +614,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -487,45 +623,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: otel_signal + value: + stringValue: logs - key: processor value: - stringValue: memory_limiter + stringValue: resourcedetection + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_processor_refused_spans - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 0 + - asDouble: 10725 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -534,7 +680,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -543,45 +689,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: otel_signal + value: + stringValue: metrics - key: processor value: - stringValue: memory_limiter + stringValue: attributes/istio + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_receiver_refused_log_records - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 0 + - asDouble: 11733 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -590,7 +746,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -599,45 +755,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver + - key: otel_signal value: - stringValue: filelog + stringValue: metrics + - key: processor + value: + stringValue: k8sattributes/metrics + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_scraper_errored_metric_points - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 0 + - asDouble: 11733 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -646,7 +812,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -655,43 +821,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver + - key: otel_signal value: - stringValue: hostmetrics - - key: scraper + stringValue: metrics + - key: processor value: - stringValue: cpu + stringValue: memory_limiter + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 11733 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -700,7 +878,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -709,43 +887,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver + - key: otel_signal value: - stringValue: hostmetrics - - key: scraper + stringValue: metrics + - key: processor value: - stringValue: disk + stringValue: resource + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 1008 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -754,7 +944,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -763,43 +953,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver + - key: otel_signal value: - stringValue: hostmetrics - - key: scraper + stringValue: metrics + - key: processor value: - stringValue: filesystem + stringValue: resource/add_agent_k8s + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 10725 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -808,7 +1010,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -817,43 +1019,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver + - key: otel_signal value: - stringValue: hostmetrics - - key: scraper + stringValue: metrics + - key: processor value: - stringValue: load + stringValue: resource/add_environment + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 11733 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -862,7 +1076,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -871,43 +1085,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver + - key: otel_signal value: - stringValue: hostmetrics - - key: scraper + stringValue: metrics + - key: processor value: - stringValue: memory + stringValue: resourcedetection + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 313 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -916,7 +1142,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -925,43 +1151,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver + - key: otel_signal value: - stringValue: hostmetrics - - key: scraper + stringValue: traces + - key: processor value: - stringValue: network + stringValue: k8sattributes + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 313 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -970,7 +1208,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -979,43 +1217,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver + - key: otel_signal value: - stringValue: hostmetrics - - key: scraper + stringValue: traces + - key: processor value: - stringValue: paging + stringValue: memory_limiter + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 309 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -1024,7 +1274,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -1033,43 +1283,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver + - key: otel_signal value: - stringValue: hostmetrics - - key: scraper + stringValue: traces + - key: processor value: - stringValue: processes + stringValue: resource + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 309 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -1078,7 +1340,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -1087,48 +1349,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver + - key: otel_signal value: - stringValue: kubeletstats - - key: scraper + stringValue: traces + - key: processor value: - stringValue: kubeletstats + stringValue: resource/add_environment + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_processor_dropped_metric_points - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 0 + - asDouble: 309 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -1137,7 +1406,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -1146,45 +1415,60 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: otel_signal + value: + stringValue: traces - key: processor value: - stringValue: memory_limiter + stringValue: resourcedetection + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" isMonotonic: true - - name: otelcol_receiver_accepted_log_records + - name: otelcol_receiver_refused_log_records sum: aggregationTemporality: 2 dataPoints: - - asDouble: 433 + - asDouble: 0 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -1193,7 +1477,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -1202,13 +1486,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -1218,29 +1499,39 @@ resourceMetrics: - key: receiver value: stringValue: filelog + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_scraper_scraped_metric_points - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 14 + - asDouble: 0 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -1249,7 +1540,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -1258,13 +1549,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -1273,28 +1561,40 @@ resourceMetrics: stringValue: linux - key: receiver value: - stringValue: hostmetrics - - key: scraper + stringValue: journald/containerd + - key: server.port value: - stringValue: cpu + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 98 + - asDouble: 0 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -1303,7 +1603,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -1312,13 +1612,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -1327,28 +1624,40 @@ resourceMetrics: stringValue: linux - key: receiver value: - stringValue: hostmetrics - - key: scraper + stringValue: journald/kubelet + - key: server.port value: - stringValue: disk + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 28 + - asDouble: 0 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -1357,7 +1666,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -1366,13 +1675,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -1381,28 +1687,52 @@ resourceMetrics: stringValue: linux - key: receiver value: - stringValue: hostmetrics - - key: scraper + stringValue: otlp + - key: server.port value: - stringValue: filesystem + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: http + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 42 + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: data_type + value: + stringValue: logs + - key: exporter + value: + stringValue: otlphttp/entities - key: host.name value: stringValue: kind-control-plane @@ -1411,7 +1741,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -1420,43 +1750,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver - value: - stringValue: hostmetrics - - key: scraper + - key: server.port value: - stringValue: load + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 14 + - asDouble: 0 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: data_type + value: + stringValue: logs + - key: exporter + value: + stringValue: splunk_hec/platform_logs - key: host.name value: stringValue: kind-control-plane @@ -1465,7 +1807,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -1474,43 +1816,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver - value: - stringValue: hostmetrics - - key: scraper + - key: server.port value: - stringValue: memory + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 70 + - asDouble: 0 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: data_type + value: + stringValue: metrics + - key: exporter + value: + stringValue: signalfx - key: host.name value: stringValue: kind-control-plane @@ -1519,7 +1873,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -1528,43 +1882,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver - value: - stringValue: hostmetrics - - key: scraper + - key: server.port value: - stringValue: network + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 42 + - asDouble: 0 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: data_type + value: + stringValue: metrics + - key: exporter + value: + stringValue: splunk_hec/platform_metrics - key: host.name value: stringValue: kind-control-plane @@ -1573,7 +1939,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -1582,43 +1948,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver - value: - stringValue: hostmetrics - - key: scraper + - key: server.port value: - stringValue: paging + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 28 + - asDouble: 0 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: data_type + value: + stringValue: traces + - key: exporter + value: + stringValue: otlp - key: host.name value: stringValue: kind-control-plane @@ -1627,7 +2005,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -1636,43 +2014,52 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver - value: - stringValue: hostmetrics - - key: scraper + - key: server.port value: - stringValue: processes + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 5523 + name: otelcol_exporter_queue_size + - gauge: + dataPoints: + - asDouble: 0 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -1681,7 +2068,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -1690,46 +2077,52 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver - value: - stringValue: kubeletstats - - key: scraper + - key: server.port value: - stringValue: kubeletstats + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - isMonotonic: true + name: otelcol_fileconsumer_reading_files - gauge: dataPoints: - - asDouble: 92 + - asDouble: 117 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -1738,7 +2131,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -1747,84 +2140,54 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - timeUnixNano: "1000000" - name: scrape_samples_scraped - - gauge: - dataPoints: - - asDouble: 73 - attributes: - - key: host.name + - key: service_instance_id value: - stringValue: kind-control-plane - - key: http.scheme - value: - stringValue: http - - key: k8s.cluster.name - value: - stringValue: rotel-eks - - 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-agent-spjmf - - key: k8s.pod.uid - value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 - - key: net.host.port - value: - stringValue: "8889" - - key: os.type - value: - stringValue: linux - - key: service.instance.id - value: - stringValue: 172.18.0.2:8889 - - key: service.name - value: - stringValue: otel-agent - - key: service_instance_id - value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" name: otelcol_otelsvc_k8s_pod_table_size - - name: otelcol_process_cpu_seconds + - name: otelcol_process_uptime sum: aggregationTemporality: 2 dataPoints: - - asDouble: 1.51 + - asDouble: 95.333973003 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -1833,7 +2196,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -1842,42 +2205,54 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" isMonotonic: true - name: otelcol_processor_accepted_metric_points sum: aggregationTemporality: 2 dataPoints: - - asDouble: 11662 + - asDouble: 11733 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -1886,7 +2261,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -1895,13 +2270,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -1911,29 +2283,47 @@ resourceMetrics: - key: processor value: stringValue: memory_limiter + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" isMonotonic: true - - name: otelcol_processor_dropped_log_records + - name: otelcol_processor_filter_logs_filtered sum: aggregationTemporality: 2 dataPoints: - - asDouble: 0 + - asDouble: 126 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: filter + value: + stringValue: filter/logs - key: host.name value: stringValue: kind-control-plane @@ -1942,7 +2332,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -1951,87 +2341,57 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: processor + - key: server.port value: - stringValue: memory_limiter + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" isMonotonic: true - - gauge: + - name: otelcol_exporter_sent_log_records + sum: + aggregationTemporality: 2 dataPoints: - - asDouble: 92 + - asDouble: 2337 attributes: - - key: host.name - value: - stringValue: kind-control-plane - - key: http.scheme - value: - stringValue: http - - key: k8s.cluster.name - value: - stringValue: rotel-eks - - key: k8s.namespace.name - value: - stringValue: default - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name + - key: cluster_name value: - stringValue: sock-splunk-otel-collector-agent-spjmf - - key: k8s.pod.uid - value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 - - key: net.host.port + stringValue: ci-k8s-cluster + - key: customfield1 value: - stringValue: "8889" - - key: os.type - value: - stringValue: linux - - key: service.instance.id + stringValue: customvalue1 + - key: customfield2 value: - stringValue: 172.18.0.2:8889 - - key: service.name + stringValue: customvalue2 + - key: exporter value: - stringValue: otel-agent - timeUnixNano: "1000000" - name: scrape_series_added - - name: otelcol_otelsvc_k8s_pod_added - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 46 - attributes: + stringValue: splunk_hec/platform_logs - key: host.name value: stringValue: kind-control-plane @@ -2040,7 +2400,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -2049,45 +2409,57 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" isMonotonic: true - - name: otelcol_exporter_sent_log_records + - name: otelcol_exporter_send_failed_spans sum: aggregationTemporality: 2 dataPoints: - - asDouble: 344 + - asDouble: 0 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: exporter value: - stringValue: splunk_hec/platform_logs + stringValue: otlp - key: host.name value: stringValue: kind-control-plane @@ -2096,7 +2468,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -2105,42 +2477,54 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" isMonotonic: true - name: otelcol_exporter_sent_metric_points sum: aggregationTemporality: 2 dataPoints: - - asDouble: 11662 + - asDouble: 11733 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: exporter value: stringValue: signalfx @@ -2152,7 +2536,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -2161,37 +2545,49 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 11662 + - asDouble: 11733 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: exporter value: stringValue: splunk_hec/platform_metrics @@ -2203,7 +2599,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -2212,45 +2608,54 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" isMonotonic: true - - name: otelcol_exporter_sent_spans + - name: otelcol_otelsvc_k8s_ip_lookup_miss sum: aggregationTemporality: 2 dataPoints: - - asDouble: 137 + - asDouble: 638 attributes: - - key: exporter + - key: cluster_name value: - stringValue: otlp + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -2259,7 +2664,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -2268,42 +2673,54 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" isMonotonic: true - - name: otelcol_otelsvc_k8s_ip_lookup_miss + - name: otelcol_otelsvc_k8s_pod_added sum: aggregationTemporality: 2 dataPoints: - - asDouble: 50 + - asDouble: 136 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -2312,7 +2729,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -2321,42 +2738,54 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" isMonotonic: true - - name: otelcol_process_uptime + - name: otelcol_processor_accepted_log_records sum: aggregationTemporality: 2 dataPoints: - - asDouble: 135.914531118 + - asDouble: 2463 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -2365,7 +2794,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -2374,43 +2803,57 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: processor + value: + stringValue: memory_limiter + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" isMonotonic: true - - gauge: + - name: otelcol_receiver_refused_metric_points + sum: + aggregationTemporality: 2 dataPoints: - - asDouble: 1000 + - asDouble: 0 attributes: - - key: exporter + - key: cluster_name value: - stringValue: otlp + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -2419,7 +2862,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -2428,40 +2871,52 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: receiver + value: + stringValue: hostmetrics + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 1000 + - asDouble: 0 attributes: - - key: exporter + - key: cluster_name value: - stringValue: signalfx + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -2470,7 +2925,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -2479,40 +2934,52 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: receiver + value: + stringValue: kubeletstats + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 5000 + - asDouble: 0 attributes: - - key: exporter + - key: cluster_name value: - stringValue: splunk_hec/platform_logs + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -2521,7 +2988,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -2530,40 +2997,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: receiver + value: + stringValue: otlp + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: http + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 5000 + - asDouble: 0 attributes: - - key: exporter + - key: cluster_name value: - stringValue: splunk_hec/platform_metrics + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -2572,7 +3054,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -2581,42 +3063,55 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: receiver + value: + stringValue: prometheus/agent + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: http + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - name: otelcol_exporter_queue_capacity - - name: otelcol_receiver_accepted_spans - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 137 + - asDouble: 0 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -2625,7 +3120,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -2634,13 +3129,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -2649,31 +3141,43 @@ resourceMetrics: stringValue: linux - key: receiver value: - stringValue: otlp + stringValue: prometheus/ta + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 - key: transport value: - stringValue: grpc + stringValue: http + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - gauge: - dataPoints: - - asDouble: 0.006659417 + - asDouble: 0 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -2682,7 +3186,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -2691,33 +3195,3991 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: prometheus_simple//receiver_creator{endpoint="10.244.0.52:80"}/k8s_observer/7cae3ddb-ab84-4dc1-8b8c-ec90665d7d07 + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: transport + value: + stringValue: http + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: prometheus_simple//receiver_creator{endpoint="10.244.0.5:9402"}/k8s_observer/9cd699ef-f612-4879-b1ce-04303d7b4f6c + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: transport + value: + stringValue: http + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: smartagent/coredns/receiver_creator{endpoint="10.244.0.2"}/k8s_observer/6568d3fb-f7c9-4968-a57e-7830b92b4c48 + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: transport + value: + stringValue: internal + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: smartagent/coredns/receiver_creator{endpoint="10.244.0.3"}/k8s_observer/9080fd41-e66e-423d-87fd-a1e86ac15678 + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: transport + value: + stringValue: internal + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: smartagent/kubernetes-proxy/receiver_creator{endpoint="172.19.0.2"}/k8s_observer/7b0de1af-95c5-4994-9e01-f16b25ba49c6 + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: transport + value: + stringValue: internal + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: otelcol_receiver_refused_spans + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: otlp + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: transport + value: + stringValue: grpc + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: otlp + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: transport + value: + stringValue: http + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: otelcol_exporter_send_failed_metric_points + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: exporter + value: + stringValue: signalfx + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: exporter + value: + stringValue: splunk_hec/platform_metrics + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 154 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: scrape_samples_scraped + - name: otelcol_otelsvc_k8s_namespace_added + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 48 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: otelcol_otelsvc_k8s_pod_updated + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 156 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 2.32971928e+08 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: otelcol_process_runtime_heap_alloc_bytes + - name: otelcol_process_runtime_total_alloc_bytes + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 9.06314512e+08 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: up + - gauge: + dataPoints: + - asDouble: 1000 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: exporter + value: + stringValue: otlp + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1000 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: exporter + value: + stringValue: otlphttp/entities + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1000 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: exporter + value: + stringValue: signalfx + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1000 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: exporter + value: + stringValue: splunk_hec/platform_logs + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1000 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: exporter + value: + stringValue: splunk_hec/platform_metrics + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: otelcol_exporter_queue_capacity + - name: otelcol_process_cpu_seconds + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 4.15 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: otelcol_processor_incoming_items + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1817 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: otel_signal + value: + stringValue: logs + - key: processor + value: + stringValue: filter/logs + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1817 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: otel_signal + value: + stringValue: logs + - key: processor + value: + stringValue: k8sattributes + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 2463 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: otel_signal + value: + stringValue: logs + - key: processor + value: + stringValue: memory_limiter + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 2337 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: otel_signal + value: + stringValue: logs + - key: processor + value: + stringValue: resource + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 2337 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: otel_signal + value: + stringValue: logs + - key: processor + value: + stringValue: resource/add_environment + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1691 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: otel_signal + value: + stringValue: logs + - key: processor + value: + stringValue: resource/logs + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1691 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: otel_signal + value: + stringValue: logs + - key: processor + value: + stringValue: resourcedetection + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 10725 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: otel_signal + value: + stringValue: metrics + - key: processor + value: + stringValue: attributes/istio + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 11733 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: otel_signal + value: + stringValue: metrics + - key: processor + value: + stringValue: k8sattributes/metrics + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 11733 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: otel_signal + value: + stringValue: metrics + - key: processor + value: + stringValue: memory_limiter + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 11733 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: otel_signal + value: + stringValue: metrics + - key: processor + value: + stringValue: resource + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1008 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: otel_signal + value: + stringValue: metrics + - key: processor + value: + stringValue: resource/add_agent_k8s + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 10725 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: otel_signal + value: + stringValue: metrics + - key: processor + value: + stringValue: resource/add_environment + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 11733 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: otel_signal + value: + stringValue: metrics + - key: processor + value: + stringValue: resourcedetection + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 313 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: otel_signal + value: + stringValue: traces + - key: processor + value: + stringValue: k8sattributes + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 313 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: otel_signal + value: + stringValue: traces + - key: processor + value: + stringValue: memory_limiter + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 309 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: otel_signal + value: + stringValue: traces + - key: processor + value: + stringValue: resource + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 309 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: otel_signal + value: + stringValue: traces + - key: processor + value: + stringValue: resource/add_environment + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 309 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: otel_signal + value: + stringValue: traces + - key: processor + value: + stringValue: resourcedetection + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: otelcol_receiver_accepted_log_records + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1491 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: filelog + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 425 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: journald/containerd + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 221 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: journald/kubelet + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 326 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: otlp + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: transport + value: + stringValue: http + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: otelcol_exporter_send_failed_log_records + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: exporter + value: + stringValue: splunk_hec/platform_logs + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 4.00932864e+08 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: otelcol_process_memory_rss + - gauge: + dataPoints: + - asDouble: 0.002808834 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: scrape_duration_seconds + - name: otelcol_otelsvc_k8s_pod_deleted + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 32 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 3.06300232e+08 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: otelcol_process_runtime_total_sys_memory_bytes + - name: otelcol_receiver_accepted_metric_points + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 3713 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: hostmetrics + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 5419 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: kubeletstats + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 96 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: otlp + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: transport + value: + stringValue: http + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1008 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: prometheus/agent + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: transport + value: + stringValue: http + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 26 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: prometheus/ta + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: transport + value: + stringValue: http + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 91 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: prometheus_simple//receiver_creator{endpoint="10.244.0.52:80"}/k8s_observer/7cae3ddb-ab84-4dc1-8b8c-ec90665d7d07 + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: transport + value: + stringValue: http + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 180 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: prometheus_simple//receiver_creator{endpoint="10.244.0.5:9402"}/k8s_observer/9cd699ef-f612-4879-b1ce-04303d7b4f6c + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: transport + value: + stringValue: http + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 90 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: smartagent/coredns/receiver_creator{endpoint="10.244.0.2"}/k8s_observer/6568d3fb-f7c9-4968-a57e-7830b92b4c48 + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: transport + value: + stringValue: internal + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 90 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: smartagent/coredns/receiver_creator{endpoint="10.244.0.3"}/k8s_observer/9080fd41-e66e-423d-87fd-a1e86ac15678 + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: transport + value: + stringValue: internal + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1020 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: smartagent/kubernetes-proxy/receiver_creator{endpoint="172.19.0.2"}/k8s_observer/7b0de1af-95c5-4994-9e01-f16b25ba49c6 + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: transport + value: + stringValue: internal + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: otelcol_scraper_errored_metric_points + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: hostmetrics + - key: scraper + value: + stringValue: cpu + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name value: - stringValue: 172.18.0.2 + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: receiver + value: + stringValue: hostmetrics + - key: scraper + value: + stringValue: disk + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - name: scrape_duration_seconds - - name: otelcol_processor_refused_log_records - sum: - aggregationTemporality: 2 - dataPoints: - asDouble: 0 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -2726,7 +7188,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -2735,43 +7197,121 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: hostmetrics + - key: scraper + value: + stringValue: filesystem + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: processor + - key: receiver value: - stringValue: memory_limiter + stringValue: hostmetrics + - key: scraper + value: + stringValue: load + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - gauge: - dataPoints: - - asDouble: 3.08930416e+08 + - asDouble: 0 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -2780,7 +7320,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -2789,40 +7329,121 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: hostmetrics + - key: scraper + value: + stringValue: memory + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 value: - stringValue: 172.18.0.2 + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: receiver + value: + stringValue: hostmetrics + - key: scraper + value: + stringValue: network + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - name: otelcol_process_runtime_heap_alloc_bytes - - gauge: - dataPoints: - - asDouble: 4.96314744e+08 + - asDouble: 0 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -2831,7 +7452,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -2840,42 +7461,121 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: hostmetrics + - key: scraper + value: + stringValue: paging + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - - key: os.type - value: - stringValue: linux + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: hostmetrics + - key: scraper + value: + stringValue: processes + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - name: otelcol_process_runtime_total_sys_memory_bytes - - name: otelcol_processor_dropped_spans - sum: - aggregationTemporality: 2 - dataPoints: - asDouble: 0 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -2884,7 +7584,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -2893,45 +7593,63 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: processor + - key: receiver value: - stringValue: memory_limiter + stringValue: kubeletstats + - key: scraper + value: + stringValue: kubeletstats + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" isMonotonic: true - - name: otelcol_receiver_accepted_metric_points + - name: otelcol_exporter_sent_spans sum: aggregationTemporality: 2 dataPoints: - - asDouble: 4480 + - asDouble: 309 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: exporter + value: + stringValue: otlp - key: host.name value: stringValue: kind-control-plane @@ -2940,7 +7658,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -2949,40 +7667,54 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver + - key: server.port value: - stringValue: hostmetrics + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 6013 + isMonotonic: true + - name: otelcol_receiver_accepted_spans + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 81 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -2991,7 +7723,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -3000,13 +7732,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -3015,25 +7744,43 @@ resourceMetrics: stringValue: linux - key: receiver value: - stringValue: kubeletstats + stringValue: otlp + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: grpc + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 945 + - asDouble: 232 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -3042,7 +7789,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -3051,13 +7798,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -3066,28 +7810,48 @@ resourceMetrics: stringValue: linux - key: receiver value: - stringValue: prometheus/agent + stringValue: otlp + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 - key: transport value: stringValue: http + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 112 + isMonotonic: true + - name: otelcol_scraper_scraped_metric_points + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 10 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -3096,7 +7860,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -3105,13 +7869,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -3120,28 +7881,43 @@ resourceMetrics: stringValue: linux - key: receiver value: - stringValue: smartagent/coredns/receiver_creator{endpoint="10.244.0.4"}/k8s_observer/57cc319a-277e-4990-964a-a1ed26930a46 + stringValue: hostmetrics + - key: scraper + value: + stringValue: cpu + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 - - key: transport + stringValue: v0.113.0 + - key: url.scheme value: - stringValue: internal + stringValue: http timeUnixNano: "1000000" - - asDouble: 112 + - asDouble: 70 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -3150,7 +7926,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -3159,13 +7935,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -3174,33 +7947,43 @@ resourceMetrics: stringValue: linux - key: receiver value: - stringValue: smartagent/coredns/receiver_creator{endpoint="10.244.0.7"}/k8s_observer/3ecfb91f-eb83-4b29-bb85-f75f7ea3a321 + stringValue: hostmetrics + - key: scraper + value: + stringValue: disk + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 - - key: transport + stringValue: v0.113.0 + - key: url.scheme value: - stringValue: internal + stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_receiver_refused_metric_points - sum: - aggregationTemporality: 2 - dataPoints: - asDouble: 0 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -3209,7 +7992,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -3218,13 +8001,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -3234,24 +8014,42 @@ resourceMetrics: - key: receiver value: stringValue: hostmetrics + - key: scraper + value: + stringValue: filesystem + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 30 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -3260,7 +8058,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -3269,13 +8067,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -3284,25 +8079,43 @@ resourceMetrics: stringValue: linux - key: receiver value: - stringValue: kubeletstats + stringValue: hostmetrics + - key: scraper + value: + stringValue: load + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 10 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -3311,7 +8124,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -3320,13 +8133,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -3335,28 +8145,43 @@ resourceMetrics: stringValue: linux - key: receiver value: - stringValue: prometheus/agent + stringValue: hostmetrics + - key: scraper + value: + stringValue: memory + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 - - key: transport + stringValue: v0.113.0 + - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 50 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -3365,7 +8190,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -3374,13 +8199,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -3389,28 +8211,43 @@ resourceMetrics: stringValue: linux - key: receiver value: - stringValue: smartagent/coredns/receiver_creator{endpoint="10.244.0.4"}/k8s_observer/57cc319a-277e-4990-964a-a1ed26930a46 + stringValue: hostmetrics + - key: scraper + value: + stringValue: network + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 - - key: transport + stringValue: v0.113.0 + - key: url.scheme value: - stringValue: internal + stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 30 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -3419,7 +8256,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -3428,13 +8265,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -3443,33 +8277,43 @@ resourceMetrics: stringValue: linux - key: receiver value: - stringValue: smartagent/coredns/receiver_creator{endpoint="10.244.0.7"}/k8s_observer/3ecfb91f-eb83-4b29-bb85-f75f7ea3a321 + stringValue: hostmetrics + - key: scraper + value: + stringValue: paging + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 - - key: transport + stringValue: v0.113.0 + - key: url.scheme value: - stringValue: internal + stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_receiver_refused_spans - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 0 + - asDouble: 20 attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -3478,7 +8322,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -3487,13 +8331,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -3502,34 +8343,43 @@ resourceMetrics: stringValue: linux - key: receiver value: - stringValue: otlp + stringValue: hostmetrics + - key: scraper + value: + stringValue: processes + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 - - key: transport + stringValue: v0.113.0 + - key: url.scheme value: - stringValue: grpc + stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - gauge: - dataPoints: - - asDouble: 0 + - asDouble: 4931 attributes: - - key: exporter + - key: cluster_name value: - stringValue: otlp + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -3538,7 +8388,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -3547,40 +8397,58 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: receiver + value: + stringValue: kubeletstats + - key: scraper + value: + stringValue: kubeletstats + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 127 attributes: - - key: exporter + - key: cluster_name value: - stringValue: signalfx + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -3589,7 +8457,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -3598,40 +8466,52 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + name: scrape_samples_post_metric_relabeling + - gauge: + dataPoints: + - asDouble: 127 attributes: - - key: exporter + - key: cluster_name value: - stringValue: splunk_hec/platform_logs + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -3640,7 +8520,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -3649,40 +8529,54 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + name: scrape_series_added + - name: otelcol_processor_accepted_spans + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 313 attributes: - - key: exporter + - key: cluster_name value: - stringValue: splunk_hec/platform_metrics + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 - key: host.name value: stringValue: kind-control-plane @@ -3691,7 +8585,7 @@ resourceMetrics: stringValue: http - key: k8s.cluster.name value: - stringValue: rotel-eks + stringValue: dev-operator - key: k8s.namespace.name value: stringValue: default @@ -3700,34 +8594,40 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-spjmf + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 538b9d65-8a37-4256-b6ea-4d77306b0bb1 - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux + - key: processor + value: + stringValue: memory_limiter + - key: server.port + value: + stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 1a266fa4-66bf-42ec-b27f-4e90b46c7536 + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.90.0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http timeUnixNano: "1000000" - name: otelcol_exporter_queue_size + isMonotonic: true scope: {} diff --git a/functional_tests/testdata/expected_eks_values/expected_nodejs_traces.yaml b/functional_tests/testdata/expected_eks_values/expected_nodejs_traces.yaml index 6c7bc9a606..a3aac5a574 100644 --- a/functional_tests/testdata/expected_eks_values/expected_nodejs_traces.yaml +++ b/functional_tests/testdata/expected_eks_values/expected_nodejs_traces.yaml @@ -12,13 +12,13 @@ resourceSpans: stringValue: opentelemetry - key: telemetry.sdk.version value: - stringValue: 1.15.2 + stringValue: 1.28.0 - key: splunk.distro.version value: - stringValue: latest + stringValue: 2.15.0 - key: splunk.zc.method value: - stringValue: splunk-otel-js:latest + stringValue: splunk-otel-js:v2.15.0 - key: k8s.container.name value: stringValue: nodejs-test @@ -33,10 +33,13 @@ resourceSpans: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: nodejs-test-57564b7dc9-9lh4b + stringValue: nodejs-test-56b74df9ff-pzbkl - key: k8s.replicaset.name value: - stringValue: nodejs-test-57564b7dc9 + stringValue: nodejs-test-56b74df9ff + - key: service.instance.id + value: + stringValue: default.nodejs-test-56b74df9ff-pzbkl.nodejs-test - key: service.version value: stringValue: latest @@ -45,34 +48,52 @@ resourceSpans: stringValue: kind-control-plane - key: host.arch value: - stringValue: amd64 + stringValue: arm64 - key: os.type value: stringValue: linux - key: os.version value: - stringValue: 6.2.0-1012-azure + stringValue: 6.10.14-linuxkit - key: process.pid value: - intValue: "13" + intValue: "10" - key: process.executable.name value: stringValue: node + - key: process.executable.path + value: + stringValue: /usr/local/bin/node + - key: process.command_args + value: + arrayValue: + values: + - stringValue: /usr/local/bin/node + - stringValue: /index.js - key: process.runtime.version value: stringValue: 16.20.2 - key: process.runtime.name value: stringValue: nodejs - - key: k8s.pod.ip + - key: process.runtime.description value: - stringValue: 10.244.0.10 - - key: k8s.pod.uid + stringValue: Node.js + - key: process.command + value: + stringValue: /index.js + - key: process.owner value: - stringValue: c7a2dcd8-7768-4f98-9f61-d4478cc51ed7 + stringValue: root + - key: k8s.pod.ip + value: + stringValue: 10.244.0.37 - key: k8s.pod.labels.app value: stringValue: nodejs-test + - key: k8s.pod.uid + value: + stringValue: 31d839ba-d43d-4dff-a30f-223240fcbcdd - key: container.image.name value: stringValue: quay.io/splunko11ytest/nodejs_test @@ -81,10 +102,19 @@ resourceSpans: stringValue: latest - key: container.id value: - stringValue: e2ad2bf9957aca48fd5605e83e7b778bcbeee645adab44ca4162a275226e51ca + stringValue: 5a57dd02a889bf84d157b6b7ea1de0aff0c6e184205e477f820f071d32d9ecc4 - key: k8s.cluster.name value: - stringValue: rotel-eks + 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 @@ -92,7 +122,6 @@ resourceSpans: scopeSpans: - scope: name: '@opentelemetry/instrumentation-http' - version: 0.48.0 spans: - attributes: - key: http.url @@ -133,18 +162,234 @@ resourceSpans: stringValue: 127.0.0.1 - key: net.peer.port value: - intValue: "39964" + intValue: "43384" + - key: http.status_code + value: + intValue: "200" + - key: http.status_text + value: + stringValue: OK + endTimeUnixNano: "1736397227751263458" + kind: 2 + name: GET + parentSpanId: "" + spanId: cecf7b647346aa16 + startTimeUnixNano: "1736397227751000000" + status: {} + traceId: 7a867b8efaafebe61d4e773a8b1df2d9 + - attributes: + - key: http.url + value: + stringValue: http://localhost:3000/ + - key: http.host + value: + stringValue: localhost:3000 + - key: net.host.name + value: + stringValue: localhost + - key: http.method + value: + stringValue: GET + - key: http.scheme + value: + stringValue: http + - key: http.target + value: + stringValue: / + - key: http.user_agent + value: + stringValue: curl/8.4.0 + - key: http.flavor + value: + stringValue: "1.1" + - key: net.transport + value: + stringValue: ip_tcp + - key: net.host.ip + value: + stringValue: 127.0.0.1 + - key: net.host.port + value: + intValue: "3000" + - key: net.peer.ip + value: + stringValue: 127.0.0.1 + - key: net.peer.port + value: + intValue: "35724" + - key: http.status_code + value: + intValue: "200" + - key: http.status_text + value: + stringValue: OK + endTimeUnixNano: "1736397228755263625" + kind: 2 + name: GET + parentSpanId: "" + spanId: 8828703c85d0b90d + startTimeUnixNano: "1736397228755000000" + status: {} + traceId: ac9e67422b0de4041cf95b36bed24912 + - attributes: + - key: http.url + value: + stringValue: http://localhost:3000/ + - key: http.host + value: + stringValue: localhost:3000 + - key: net.host.name + value: + stringValue: localhost + - key: http.method + value: + stringValue: GET + - key: http.scheme + value: + stringValue: http + - key: http.target + value: + stringValue: / + - key: http.user_agent + value: + stringValue: curl/8.4.0 + - key: http.flavor + value: + stringValue: "1.1" + - key: net.transport + value: + stringValue: ip_tcp + - key: net.host.ip + value: + stringValue: 127.0.0.1 + - key: net.host.port + value: + intValue: "3000" + - key: net.peer.ip + value: + stringValue: 127.0.0.1 + - key: net.peer.port + value: + intValue: "35738" + - key: http.status_code + value: + intValue: "200" + - key: http.status_text + value: + stringValue: OK + endTimeUnixNano: "1736397229758311000" + kind: 2 + name: GET + parentSpanId: "" + spanId: 5a90bbf133b377af + startTimeUnixNano: "1736397229758000000" + status: {} + traceId: c8e82943d0e51c57d5c4bd9b8d7d9510 + - attributes: + - key: http.url + value: + stringValue: http://localhost:3000/ + - key: http.host + value: + stringValue: localhost:3000 + - key: net.host.name + value: + stringValue: localhost + - key: http.method + value: + stringValue: GET + - key: http.scheme + value: + stringValue: http + - key: http.target + value: + stringValue: / + - key: http.user_agent + value: + stringValue: curl/8.4.0 + - key: http.flavor + value: + stringValue: "1.1" + - key: net.transport + value: + stringValue: ip_tcp + - key: net.host.ip + value: + stringValue: 127.0.0.1 + - key: net.host.port + value: + intValue: "3000" + - key: net.peer.ip + value: + stringValue: 127.0.0.1 + - key: net.peer.port + value: + intValue: "35748" + - key: http.status_code + value: + intValue: "200" + - key: http.status_text + value: + stringValue: OK + endTimeUnixNano: "1736397230762353334" + kind: 2 + name: GET + parentSpanId: "" + spanId: 8f13b9afbbcb3b73 + startTimeUnixNano: "1736397230762000000" + status: {} + traceId: d96d33dbdba6117257db5caa22ac4b5d + - attributes: + - key: http.url + value: + stringValue: http://localhost:3000/ + - key: http.host + value: + stringValue: localhost:3000 + - key: net.host.name + value: + stringValue: localhost + - key: http.method + value: + stringValue: GET + - key: http.scheme + value: + stringValue: http + - key: http.target + value: + stringValue: / + - key: http.user_agent + value: + stringValue: curl/8.4.0 + - key: http.flavor + value: + stringValue: "1.1" + - key: net.transport + value: + stringValue: ip_tcp + - key: net.host.ip + value: + stringValue: 127.0.0.1 + - key: net.host.port + value: + intValue: "3000" + - key: net.peer.ip + value: + stringValue: 127.0.0.1 + - key: net.peer.port + value: + intValue: "35764" - key: http.status_code value: intValue: "200" - key: http.status_text value: stringValue: OK - endTimeUnixNano: "1697226524248646656" + endTimeUnixNano: "1736397231769315042" kind: 2 name: GET parentSpanId: "" - spanId: cec9cdcca3d9564a - startTimeUnixNano: "1697226524248000000" + spanId: 0a6a4afead1c0b0b + startTimeUnixNano: "1736397231769000000" status: {} - traceId: 6c2f9e02bb2a68e930b7b5cfc631789b + traceId: 24a9f307fc2d8aeb2468d7f9384911c0 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 1f74bd13ac..10ec768cdd 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-62kb8 + stringValue: cert-manager-67c98b89c8-5dtxs - key: k8s.pod.uid value: - stringValue: 947dc18c-f509-4ba5-a530-beae832e8252 + stringValue: 9cd699ef-f612-4879-b1ce-04303d7b4f6c - 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-ml9t4 + stringValue: cert-manager-cainjector-5c5695d979-h7c2k - key: k8s.pod.uid value: - stringValue: 4dbf4f6c-245c-4d21-8952-b6cccec19de2 + stringValue: 5a67f651-add4-43f6-b2a7-06afb5fef617 - 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-vh5vz + stringValue: cert-manager-webhook-7f9f8648b9-dzq2l - key: k8s.pod.uid value: - stringValue: 2b412fdf-4dca-44c0-939a-0444ba4c6b19 + stringValue: 18826d35-ead9-4637-a492-8d78156959f6 - key: metric_source value: stringValue: kubernetes @@ -125,10 +125,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: dotnet-test-799469547f-7qjm5 + stringValue: dotnet-test-5479c475fc-qpr6c - key: k8s.pod.uid value: - stringValue: ebf0e3a3-6a3e-475c-8862-5751ee0cffab + stringValue: bd83fe1d-786d-4da7-889e-cee578e6f2f8 - key: metric_source value: stringValue: kubernetes @@ -158,10 +158,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: java-test-566495f78-qlbhq + stringValue: java-test-5c4d6479b8-j7fmr - key: k8s.pod.uid value: - stringValue: a4d0b94d-b466-4638-8f7e-3414215dca87 + stringValue: 63ca8dfe-1747-4097-9b9d-071b1cb3b891 - key: metric_source value: stringValue: kubernetes @@ -191,10 +191,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: nodejs-test-d454cf769-rsnmj + stringValue: nodejs-test-56b74df9ff-klgm7 - key: k8s.pod.uid value: - stringValue: b76ac1c2-eee7-4eda-bd7d-0cf52bbaf681 + stringValue: 89b46064-f8e5-46d6-b54e-79a1cc7948df - key: metric_source value: stringValue: kubernetes @@ -224,10 +224,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: prometheus-annotation-test-6c5444b75-mzcnq + stringValue: prometheus-annotation-test-cfc77c7b9-86vg5 - key: k8s.pod.uid value: - stringValue: 9949cbfa-fd64-4ec4-93bb-1a268ec9a3d9 + stringValue: 558db553-7cc6-44f2-9039-f81e43d0bc25 - key: metric_source value: stringValue: kubernetes @@ -257,10 +257,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-786c6c9777-jdk67 + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: a52b7c26-b3cf-4f63-8bda-3ac1c5dfa202 + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -290,10 +290,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-5qstp + stringValue: sock-splunk-otel-collector-agent-rm8js - key: k8s.pod.uid value: - stringValue: 11d4ea6f-cd81-450d-a0fc-b461ef710f3c + stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 - key: metric_source value: stringValue: kubernetes @@ -323,10 +323,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-75d89f6cbfx4wgn + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj - key: k8s.pod.uid value: - stringValue: ce91e5e9-fa3e-405f-8174-4f80da3cb480 + stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c - key: metric_source value: stringValue: kubernetes @@ -356,10 +356,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-ta-548cccf49d-q956w + stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4-rpj6g - key: k8s.pod.uid value: - stringValue: a58f99c1-2c1c-46ef-9ebe-86cca8944157 + stringValue: 4e7bef74-37d2-4380-b5d7-c0ce1476be95 - key: metric_source value: stringValue: kubernetes @@ -389,10 +389,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-5dd5756b68-qkcxw + stringValue: coredns-76f75df574-8w7l8 - key: k8s.pod.uid value: - stringValue: 71bd9c9e-0918-4cbf-b4c6-ea1a119dd8a9 + stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 - key: metric_source value: stringValue: kubernetes @@ -422,10 +422,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-5dd5756b68-xpdfv + stringValue: coredns-76f75df574-wqrsn - key: k8s.pod.uid value: - stringValue: ab03934f-06a7-40f9-a1bc-2720ad57d0cd + stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 - key: metric_source value: stringValue: kubernetes @@ -458,7 +458,7 @@ resourceMetrics: stringValue: etcd-kind-control-plane - key: k8s.pod.uid value: - stringValue: 6eb462f9-6c0f-4152-b0d8-1c0e397ed71d + stringValue: 68828dad-2ca2-47ca-914e-f41cfd58244b - key: metric_source value: stringValue: kubernetes @@ -488,10 +488,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kindnet-r7mw5 + stringValue: kindnet-9xfzp - key: k8s.pod.uid value: - stringValue: e437a2a5-4e50-4f84-8b78-9a4aaa832f05 + stringValue: f8149b85-dab1-482e-a735-0c29a953061b - key: metric_source value: stringValue: kubernetes @@ -524,7 +524,7 @@ resourceMetrics: stringValue: kube-apiserver-kind-control-plane - key: k8s.pod.uid value: - stringValue: 8701d555-0650-453b-ac93-a956ca5291ac + stringValue: 830a2042-aec1-4502-8d2b-d96852bd105c - key: metric_source value: stringValue: kubernetes @@ -557,7 +557,7 @@ resourceMetrics: stringValue: kube-controller-manager-kind-control-plane - key: k8s.pod.uid value: - stringValue: a363dd2c-cd5d-4a23-9ccc-d3370b26fb03 + stringValue: 5c40ac1e-5432-4249-b754-4795b36d4c99 - key: metric_source value: stringValue: kubernetes @@ -587,10 +587,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-proxy-n55wq + stringValue: kube-proxy-tw2lr - key: k8s.pod.uid value: - stringValue: da89965a-a32a-4014-bbdc-2f74df50bc8c + stringValue: 7b0de1af-95c5-4994-9e01-f16b25ba49c6 - key: metric_source value: stringValue: kubernetes @@ -623,7 +623,7 @@ resourceMetrics: stringValue: kube-scheduler-kind-control-plane - key: k8s.pod.uid value: - stringValue: 28e3146c-cb2e-4df1-88ee-ecdd3337dff1 + stringValue: e8a35d2f-5099-41cb-97c1-7c20e9236fd5 - key: metric_source value: stringValue: kubernetes @@ -653,208 +653,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: local-path-provisioner-6f8956fb48-mcn8p + stringValue: local-path-provisioner-6f8956fb48-wgzmr - key: k8s.pod.uid value: - stringValue: 0addfa81-d5c7-494d-b048-28ffb529eed4 - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asInt: "3" - 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: ns-w-exclude - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: pod-w-index-w-ns-exclude-k5trb - - key: k8s.pod.uid - value: - stringValue: fd76cc57-bcc0-48d1-be85-fe3d0254e0e2 - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asInt: "3" - 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: ns-w-index - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: pod-w-exclude-wo-ns-exclude-vz7fs - - key: k8s.pod.uid - value: - stringValue: 2e81ae1a-92da-4df2-aff6-82d08d3ba616 - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asInt: "3" - 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: ns-w-index - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: pod-w-index-w-ns-index-frjlk - - key: k8s.pod.uid - value: - stringValue: 12e4c41c-6feb-4e87-aff2-c900e9ff3637 - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asInt: "3" - 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: ns-w-index - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: pod-wo-index-w-ns-index-gh6jz - - key: k8s.pod.uid - value: - stringValue: 26760adc-42b3-4813-98d7-39b24113de35 - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asInt: "3" - 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: ns-wo-index - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: pod-w-index-wo-ns-index-n9z4p - - key: k8s.pod.uid - value: - stringValue: 170f3c4a-8b3e-441d-95ef-b65c3d7f8a98 - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asInt: "3" - 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: ns-wo-index - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: pod-wo-index-wo-ns-index-nmq5n - - key: k8s.pod.uid - value: - stringValue: 308f1d87-ce90-4022-8619-066c2adecfe7 + stringValue: 809e4615-fc78-494b-abde-5263a1ee31a0 - key: metric_source value: stringValue: kubernetes @@ -865,549 +667,6 @@ resourceMetrics: name: k8s.pod.phase - gauge: dataPoints: - - asDouble: 0.1 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: container.id - value: - stringValue: 476d22e2d90c4fd6eca9275b9a162519a2dd602801bfc897d851407c260fbe86 - - 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-r7mw5 - - key: k8s.pod.uid - value: - stringValue: e437a2a5-4e50-4f84-8b78-9a4aaa832f05 - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asDouble: 0.2 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: container.id - value: - stringValue: a4c773550bffaea8510656815ec4b284f791df8bfcc5dfcc6ef3a8c49e5fffbf - - key: container.image.name - value: - stringValue: quay.io/signalfx/splunk-otel-collector - - key: container.image.tag - value: - stringValue: 0.105.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-75d89f6cbfx4wgn - - key: k8s.pod.uid - value: - stringValue: ce91e5e9-fa3e-405f-8174-4f80da3cb480 - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asDouble: 0.2 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: container.id - value: - stringValue: aacfb78416ad87c4506ec7d790cbc7d84707cc00b95c664950a06b3c9e30a813 - - key: container.image.name - value: - stringValue: quay.io/signalfx/splunk-otel-collector - - key: container.image.tag - value: - stringValue: 0.105.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-agent-5qstp - - key: k8s.pod.uid - value: - stringValue: 11d4ea6f-cd81-450d-a0fc-b461ef710f3c - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asDouble: 0.5 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: container.id - value: - stringValue: c5dc13e7abce1bef6067e16df255670cb21e67bc85eddcc2663f9610072cd844 - - key: container.image.name - value: - stringValue: quay.io/brancz/kube-rbac-proxy - - key: container.image.tag - value: - stringValue: v0.15.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: kube-rbac-proxy - - key: k8s.namespace.name - value: - stringValue: default - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: sock-operator-786c6c9777-jdk67 - - key: k8s.pod.uid - value: - stringValue: a52b7c26-b3cf-4f63-8bda-3ac1c5dfa202 - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asDouble: 0.1 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: container.id - value: - stringValue: dbc0f4eefbe85fa816b4ec434957e735fabd315bdf53916bd15008100500ca72 - - key: container.image.name - value: - stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator - - key: container.image.tag - value: - stringValue: 0.95.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: manager - - key: k8s.namespace.name - value: - stringValue: default - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: sock-operator-786c6c9777-jdk67 - - key: k8s.pod.uid - value: - stringValue: a52b7c26-b3cf-4f63-8bda-3ac1c5dfa202 - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - name: k8s.container.cpu_limit - - gauge: - dataPoints: - - asDouble: 0.1 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: container.id - value: - stringValue: 24198ed767aef1c1122abfd03fde9d96ce79061ac87268469fc825605e1c692b - - key: container.image.name - value: - stringValue: registry.k8s.io/coredns/coredns - - key: container.image.tag - value: - stringValue: v1.10.1 - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.container.name - value: - stringValue: coredns - - key: k8s.namespace.name - value: - stringValue: kube-system - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: coredns-5dd5756b68-xpdfv - - key: k8s.pod.uid - value: - stringValue: ab03934f-06a7-40f9-a1bc-2720ad57d0cd - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asDouble: 0.1 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: container.id - value: - stringValue: 4044596b959a9dc76894c29d846f39714c49c15e69ffc63b3b55f01c9d94f6af - - key: container.image.name - value: - stringValue: registry.k8s.io/coredns/coredns - - key: container.image.tag - value: - stringValue: v1.10.1 - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.container.name - value: - stringValue: coredns - - key: k8s.namespace.name - value: - stringValue: kube-system - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: coredns-5dd5756b68-qkcxw - - key: k8s.pod.uid - value: - stringValue: 71bd9c9e-0918-4cbf-b4c6-ea1a119dd8a9 - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asDouble: 0.1 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: container.id - value: - stringValue: 476d22e2d90c4fd6eca9275b9a162519a2dd602801bfc897d851407c260fbe86 - - 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-r7mw5 - - key: k8s.pod.uid - value: - stringValue: e437a2a5-4e50-4f84-8b78-9a4aaa832f05 - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asDouble: 0.25 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: container.id - value: - stringValue: 4c658df58c5d18a5868bd3892657dbecc4c3044397c4508e65c1caf18fdc36b1 - - key: container.image.name - value: - stringValue: registry.k8s.io/kube-apiserver - - key: container.image.tag - value: - stringValue: v1.28.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: kube-apiserver - - key: k8s.namespace.name - value: - stringValue: kube-system - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: kube-apiserver-kind-control-plane - - key: k8s.pod.uid - value: - stringValue: 8701d555-0650-453b-ac93-a956ca5291ac - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asDouble: 0.1 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: container.id - value: - stringValue: 564c7d63101b2ea3ddb8f581d9600431c067861c469551df8ff6529cb6d0474b - - key: container.image.name - value: - stringValue: registry.k8s.io/kube-scheduler - - key: container.image.tag - value: - stringValue: v1.28.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: kube-scheduler - - key: k8s.namespace.name - value: - stringValue: kube-system - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: kube-scheduler-kind-control-plane - - key: k8s.pod.uid - value: - stringValue: 28e3146c-cb2e-4df1-88ee-ecdd3337dff1 - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asDouble: 0.1 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: container.id - value: - stringValue: 6fb640c58e4f5327afdd871c52937d35c6ce6e01283da7580b99d3744843d0fb - - key: container.image.name - value: - stringValue: registry.k8s.io/etcd - - key: container.image.tag - value: - stringValue: 3.5.9-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: etcd - - key: k8s.namespace.name - value: - stringValue: kube-system - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: etcd-kind-control-plane - - key: k8s.pod.uid - value: - stringValue: 6eb462f9-6c0f-4152-b0d8-1c0e397ed71d - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - - asDouble: 0.2 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: container.id - value: - stringValue: 921e4ef8122f9928136899dc518385808d6ea56bbfc246b88b1b0f902a9e6917 - - key: container.image.name - value: - stringValue: registry.k8s.io/kube-controller-manager - - key: container.image.tag - value: - stringValue: v1.28.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: kube-controller-manager - - key: k8s.namespace.name - value: - stringValue: kube-system - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: k8s.pod.name - value: - stringValue: kube-controller-manager-kind-control-plane - - key: k8s.pod.uid - value: - stringValue: a363dd2c-cd5d-4a23-9ccc-d3370b26fb03 - - key: metric_source - value: - stringValue: kubernetes - - key: receiver - value: - stringValue: k8scluster - timeUnixNano: "1000000" - asDouble: 0.2 attributes: - key: cluster_name @@ -1415,13 +674,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: a4c773550bffaea8510656815ec4b284f791df8bfcc5dfcc6ef3a8c49e5fffbf + stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 - key: container.image.name value: stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: 0.105.0 + stringValue: 0.113.0 - key: customfield1 value: stringValue: customvalue1 @@ -1442,10 +701,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-75d89f6cbfx4wgn + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj - key: k8s.pod.uid value: - stringValue: ce91e5e9-fa3e-405f-8174-4f80da3cb480 + stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c - key: metric_source value: stringValue: kubernetes @@ -1453,20 +712,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.2 + - asDouble: 0.1 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: aacfb78416ad87c4506ec7d790cbc7d84707cc00b95c664950a06b3c9e30a813 + stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator - key: container.image.tag value: - stringValue: 0.105.0 + stringValue: 0.116.0 - key: customfield1 value: stringValue: customvalue1 @@ -1478,7 +737,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: manager - key: k8s.namespace.name value: stringValue: default @@ -1487,10 +746,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-5qstp + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: 11d4ea6f-cd81-450d-a0fc-b461ef710f3c + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -1498,20 +757,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asDouble: 0.005 + - asDouble: 0.1 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: c5dc13e7abce1bef6067e16df255670cb21e67bc85eddcc2663f9610072cd844 + stringValue: 55d8886e226d55a1a0f3e3f0bdc56d0e2a32c9ffdf6712c9e99c9873528f5b12 - key: container.image.name value: - stringValue: quay.io/brancz/kube-rbac-proxy + stringValue: registry.k8s.io/kube-scheduler - key: container.image.tag value: - stringValue: v0.15.0 + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -1523,19 +782,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-rbac-proxy + stringValue: kube-scheduler - 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-786c6c9777-jdk67 + stringValue: kube-scheduler-kind-control-plane - key: k8s.pod.uid value: - stringValue: a52b7c26-b3cf-4f63-8bda-3ac1c5dfa202 + stringValue: e8a35d2f-5099-41cb-97c1-7c20e9236fd5 - key: metric_source value: stringValue: kubernetes @@ -1550,13 +809,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: dbc0f4eefbe85fa816b4ec434957e735fabd315bdf53916bd15008100500ca72 + stringValue: 56c1f8ae24c544d0a51aabda6f200e7a491c22eeca767de49504632b0340e09c - key: container.image.name value: - stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: 0.95.0 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -1568,19 +827,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: manager + 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-operator-786c6c9777-jdk67 + stringValue: coredns-76f75df574-8w7l8 - key: k8s.pod.uid value: - stringValue: a52b7c26-b3cf-4f63-8bda-3ac1c5dfa202 + stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 - key: metric_source value: stringValue: kubernetes @@ -1588,23 +847,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - name: k8s.container.cpu_request - - gauge: - dataPoints: - - asInt: "178257920" + - asDouble: 0.2 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 24198ed767aef1c1122abfd03fde9d96ce79061ac87268469fc825605e1c692b + stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 - 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.10.1 + stringValue: 0.113.0 - key: customfield1 value: stringValue: customvalue1 @@ -1616,19 +872,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-5dd5756b68-xpdfv + stringValue: sock-splunk-otel-collector-agent-rm8js - key: k8s.pod.uid value: - stringValue: ab03934f-06a7-40f9-a1bc-2720ad57d0cd + stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 - key: metric_source value: stringValue: kubernetes @@ -1636,20 +892,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "178257920" + - asDouble: 0.25 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 4044596b959a9dc76894c29d846f39714c49c15e69ffc63b3b55f01c9d94f6af + stringValue: 6e3992f7de7d0611933767e445edc89ecc7b6bb086fbf9b82b7daba89df7f09a - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: registry.k8s.io/kube-apiserver - key: container.image.tag value: - stringValue: v1.10.1 + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -1661,7 +917,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + stringValue: kube-apiserver - key: k8s.namespace.name value: stringValue: kube-system @@ -1670,10 +926,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-5dd5756b68-qkcxw + stringValue: kube-apiserver-kind-control-plane - key: k8s.pod.uid value: - stringValue: 71bd9c9e-0918-4cbf-b4c6-ea1a119dd8a9 + stringValue: 830a2042-aec1-4502-8d2b-d96852bd105c - key: metric_source value: stringValue: kubernetes @@ -1681,20 +937,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "52428800" + - asDouble: 0.005 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 476d22e2d90c4fd6eca9275b9a162519a2dd602801bfc897d851407c260fbe86 + stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac - 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 @@ -1706,19 +962,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-r7mw5 + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: e437a2a5-4e50-4f84-8b78-9a4aaa832f05 + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -1726,20 +982,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "524288000" + - asDouble: 0.1 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: a4c773550bffaea8510656815ec4b284f791df8bfcc5dfcc6ef3a8c49e5fffbf + stringValue: 7930a07f4cb7fc9ea6159a3bc7c7485170f728ddc0cc0c50a6f571737c846e50 - 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.105.0 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -1751,19 +1007,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-75d89f6cbfx4wgn + stringValue: coredns-76f75df574-wqrsn - key: k8s.pod.uid value: - stringValue: ce91e5e9-fa3e-405f-8174-4f80da3cb480 + stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 - key: metric_source value: stringValue: kubernetes @@ -1771,20 +1027,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "524288000" + - asDouble: 0.1 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: aacfb78416ad87c4506ec7d790cbc7d84707cc00b95c664950a06b3c9e30a813 + stringValue: 82b7c36c5da8acb40f66be5b2c70430bb7d7c84e128bede5bc325f94653839bd - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: registry.k8s.io/etcd - key: container.image.tag value: - stringValue: 0.105.0 + stringValue: 3.5.10-0 - key: customfield1 value: stringValue: customvalue1 @@ -1796,19 +1052,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-5qstp + stringValue: etcd-kind-control-plane - key: k8s.pod.uid value: - stringValue: 11d4ea6f-cd81-450d-a0fc-b461ef710f3c + stringValue: 68828dad-2ca2-47ca-914e-f41cfd58244b - key: metric_source value: stringValue: kubernetes @@ -1816,20 +1072,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "134217728" + - asDouble: 0.2 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: c5dc13e7abce1bef6067e16df255670cb21e67bc85eddcc2663f9610072cd844 + stringValue: e2ea169579f87203b926492d33050b56fd253b2e07bd66730339fc75a2fd4621 - key: container.image.name value: - stringValue: quay.io/brancz/kube-rbac-proxy + stringValue: registry.k8s.io/kube-controller-manager - key: container.image.tag value: - stringValue: v0.15.0 + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -1841,19 +1097,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-rbac-proxy + 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-operator-786c6c9777-jdk67 + stringValue: kube-controller-manager-kind-control-plane - key: k8s.pod.uid value: - stringValue: a52b7c26-b3cf-4f63-8bda-3ac1c5dfa202 + stringValue: 5c40ac1e-5432-4249-b754-4795b36d4c99 - key: metric_source value: stringValue: kubernetes @@ -1861,20 +1117,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "134217728" + - asDouble: 0.1 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: dbc0f4eefbe85fa816b4ec434957e735fabd315bdf53916bd15008100500ca72 + stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 - key: container.image.name value: - stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator + stringValue: docker.io/kindest/kindnetd - key: container.image.tag value: - stringValue: 0.95.0 + stringValue: v20230511-dc714da8 - key: customfield1 value: stringValue: customvalue1 @@ -1886,19 +1142,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: manager + 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-786c6c9777-jdk67 + stringValue: kindnet-9xfzp - key: k8s.pod.uid value: - stringValue: a52b7c26-b3cf-4f63-8bda-3ac1c5dfa202 + stringValue: f8149b85-dab1-482e-a735-0c29a953061b - key: metric_source value: stringValue: kubernetes @@ -1906,23 +1162,23 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - name: k8s.container.memory_limit + name: k8s.container.cpu_request - gauge: dataPoints: - - asInt: "73400320" + - asInt: "524288000" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 24198ed767aef1c1122abfd03fde9d96ce79061ac87268469fc825605e1c692b + stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 - 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.10.1 + stringValue: 0.113.0 - key: customfield1 value: stringValue: customvalue1 @@ -1934,19 +1190,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-5dd5756b68-xpdfv + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj - key: k8s.pod.uid value: - stringValue: ab03934f-06a7-40f9-a1bc-2720ad57d0cd + stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c - key: metric_source value: stringValue: kubernetes @@ -1954,20 +1210,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "73400320" + - asInt: "134217728" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 4044596b959a9dc76894c29d846f39714c49c15e69ffc63b3b55f01c9d94f6af + stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 - 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.10.1 + stringValue: 0.116.0 - key: customfield1 value: stringValue: customvalue1 @@ -1979,19 +1235,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-5dd5756b68-qkcxw + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: 71bd9c9e-0918-4cbf-b4c6-ea1a119dd8a9 + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -1999,20 +1255,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "52428800" + - asInt: "178257920" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 476d22e2d90c4fd6eca9275b9a162519a2dd602801bfc897d851407c260fbe86 + stringValue: 56c1f8ae24c544d0a51aabda6f200e7a491c22eeca767de49504632b0340e09c - 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 @@ -2024,7 +1280,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kindnet-cni + stringValue: coredns - key: k8s.namespace.name value: stringValue: kube-system @@ -2033,10 +1289,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kindnet-r7mw5 + stringValue: coredns-76f75df574-8w7l8 - key: k8s.pod.uid value: - stringValue: e437a2a5-4e50-4f84-8b78-9a4aaa832f05 + stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 - key: metric_source value: stringValue: kubernetes @@ -2044,20 +1300,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "104857600" + - asInt: "524288000" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 6fb640c58e4f5327afdd871c52937d35c6ce6e01283da7580b99d3744843d0fb + stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 - 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.9-0 + stringValue: 0.113.0 - key: customfield1 value: stringValue: customvalue1 @@ -2069,19 +1325,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-rm8js - key: k8s.pod.uid value: - stringValue: 6eb462f9-6c0f-4152-b0d8-1c0e397ed71d + stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 - key: metric_source value: stringValue: kubernetes @@ -2089,20 +1345,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "524288000" + - asInt: "134217728" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: a4c773550bffaea8510656815ec4b284f791df8bfcc5dfcc6ef3a8c49e5fffbf + stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: quay.io/brancz/kube-rbac-proxy - key: container.image.tag value: - stringValue: 0.105.0 + stringValue: v0.18.1 - key: customfield1 value: stringValue: customvalue1 @@ -2114,7 +1370,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: kube-rbac-proxy - key: k8s.namespace.name value: stringValue: default @@ -2123,10 +1379,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-75d89f6cbfx4wgn + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: ce91e5e9-fa3e-405f-8174-4f80da3cb480 + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -2134,20 +1390,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "524288000" + - asInt: "178257920" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: aacfb78416ad87c4506ec7d790cbc7d84707cc00b95c664950a06b3c9e30a813 + stringValue: 7930a07f4cb7fc9ea6159a3bc7c7485170f728ddc0cc0c50a6f571737c846e50 - 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.105.0 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -2159,19 +1415,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-5qstp + stringValue: coredns-76f75df574-wqrsn - key: k8s.pod.uid value: - stringValue: 11d4ea6f-cd81-450d-a0fc-b461ef710f3c + stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 - key: metric_source value: stringValue: kubernetes @@ -2179,20 +1435,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "67108864" + - asInt: "52428800" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: c5dc13e7abce1bef6067e16df255670cb21e67bc85eddcc2663f9610072cd844 + stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 - key: container.image.name value: - stringValue: quay.io/brancz/kube-rbac-proxy + stringValue: docker.io/kindest/kindnetd - key: container.image.tag value: - stringValue: v0.15.0 + stringValue: v20230511-dc714da8 - key: customfield1 value: stringValue: customvalue1 @@ -2204,19 +1460,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-786c6c9777-jdk67 + stringValue: kindnet-9xfzp - key: k8s.pod.uid value: - stringValue: a52b7c26-b3cf-4f63-8bda-3ac1c5dfa202 + stringValue: f8149b85-dab1-482e-a735-0c29a953061b - key: metric_source value: stringValue: kubernetes @@ -2224,20 +1480,23 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "67108864" + name: k8s.container.memory_limit + - gauge: + dataPoints: + - asInt: "524288000" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: dbc0f4eefbe85fa816b4ec434957e735fabd315bdf53916bd15008100500ca72 + stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 - 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.95.0 + stringValue: 0.113.0 - key: customfield1 value: stringValue: customvalue1 @@ -2249,7 +1508,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: manager + stringValue: otel-collector - key: k8s.namespace.name value: stringValue: default @@ -2258,10 +1517,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-786c6c9777-jdk67 + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj - key: k8s.pod.uid value: - stringValue: a52b7c26-b3cf-4f63-8bda-3ac1c5dfa202 + stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c - key: metric_source value: stringValue: kubernetes @@ -2269,23 +1528,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - name: k8s.container.memory_request - - gauge: - dataPoints: - - asInt: "1" + - asInt: "67108864" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 1ccd2c914f69782ef2e78269623c0e49e14fac7f75a332e75602078ff4f2dba9 + stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 - key: container.image.name value: - stringValue: registry.k8s.io/kube-proxy + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator - key: container.image.tag value: - stringValue: v1.28.0 + stringValue: 0.116.0 - key: customfield1 value: stringValue: customvalue1 @@ -2297,19 +1553,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-proxy + 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: kube-proxy-n55wq + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: da89965a-a32a-4014-bbdc-2f74df50bc8c + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -2317,20 +1573,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "73400320" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 1f28f952ec06ce799fab8e35685e23074480425a97671d24a84f42c33b7e878a + stringValue: 56c1f8ae24c544d0a51aabda6f200e7a491c22eeca767de49504632b0340e09c - key: container.image.name value: - stringValue: quay.io/splunko11ytest/dotnet_test + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: latest + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -2342,19 +1598,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: dotnet-test + 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: dotnet-test-799469547f-7qjm5 + stringValue: coredns-76f75df574-8w7l8 - key: k8s.pod.uid value: - stringValue: ebf0e3a3-6a3e-475c-8862-5751ee0cffab + stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 - key: metric_source value: stringValue: kubernetes @@ -2362,20 +1618,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: 24198ed767aef1c1122abfd03fde9d96ce79061ac87268469fc825605e1c692b + stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 - 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.10.1 + stringValue: 0.113.0 - key: customfield1 value: stringValue: customvalue1 @@ -2387,19 +1643,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-5dd5756b68-xpdfv + stringValue: sock-splunk-otel-collector-agent-rm8js - key: k8s.pod.uid value: - stringValue: ab03934f-06a7-40f9-a1bc-2720ad57d0cd + stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 - key: metric_source value: stringValue: kubernetes @@ -2407,20 +1663,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: 36e18f5103bc9c1d8768e2314938e95e06eb748ac04b70acf99429ae9f06d022 + stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: quay.io/brancz/kube-rbac-proxy - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: v0.18.1 - key: customfield1 value: stringValue: customvalue1 @@ -2432,19 +1688,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-wo-index-w-ns-index + stringValue: kube-rbac-proxy - key: k8s.namespace.name value: - stringValue: ns-w-index + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-wo-index-w-ns-index-gh6jz + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: 26760adc-42b3-4813-98d7-39b24113de35 + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -2452,20 +1708,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: 3ec2cb3c9cb5ab18b26fca01fbc81d823f553e9ccc55397c10ded8484ae15875 + stringValue: 7930a07f4cb7fc9ea6159a3bc7c7485170f728ddc0cc0c50a6f571737c846e50 - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -2477,19 +1733,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-w-index-w-ns-index + stringValue: coredns - key: k8s.namespace.name value: - stringValue: ns-w-index + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-w-index-w-ns-index-frjlk + stringValue: coredns-76f75df574-wqrsn - key: k8s.pod.uid value: - stringValue: 12e4c41c-6feb-4e87-aff2-c900e9ff3637 + stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 - key: metric_source value: stringValue: kubernetes @@ -2497,20 +1753,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "104857600" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 4044596b959a9dc76894c29d846f39714c49c15e69ffc63b3b55f01c9d94f6af + stringValue: 82b7c36c5da8acb40f66be5b2c70430bb7d7c84e128bede5bc325f94653839bd - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: registry.k8s.io/etcd - key: container.image.tag value: - stringValue: v1.10.1 + stringValue: 3.5.10-0 - key: customfield1 value: stringValue: customvalue1 @@ -2522,7 +1778,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + stringValue: etcd - key: k8s.namespace.name value: stringValue: kube-system @@ -2531,10 +1787,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: coredns-5dd5756b68-qkcxw + stringValue: etcd-kind-control-plane - key: k8s.pod.uid value: - stringValue: 71bd9c9e-0918-4cbf-b4c6-ea1a119dd8a9 + stringValue: 68828dad-2ca2-47ca-914e-f41cfd58244b - key: metric_source value: stringValue: kubernetes @@ -2542,14 +1798,14 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "1" + - asInt: "52428800" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 476d22e2d90c4fd6eca9275b9a162519a2dd602801bfc897d851407c260fbe86 + stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 - key: container.image.name value: stringValue: docker.io/kindest/kindnetd @@ -2576,10 +1832,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kindnet-r7mw5 + stringValue: kindnet-9xfzp - key: k8s.pod.uid value: - stringValue: e437a2a5-4e50-4f84-8b78-9a4aaa832f05 + stringValue: f8149b85-dab1-482e-a735-0c29a953061b - key: metric_source value: stringValue: kubernetes @@ -2587,6 +1843,9 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" + name: k8s.container.memory_request + - gauge: + dataPoints: - asInt: "1" attributes: - key: cluster_name @@ -2594,13 +1853,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 4c658df58c5d18a5868bd3892657dbecc4c3044397c4508e65c1caf18fdc36b1 + stringValue: 029555a4cfeffe308062ebe8f6f59e116313d079efd1a802064ed30e6e155150 - key: container.image.name value: - stringValue: registry.k8s.io/kube-apiserver + stringValue: docker.io/kindest/local-path-provisioner - key: container.image.tag value: - stringValue: v1.28.0 + stringValue: v20230511-dc714da8 - key: customfield1 value: stringValue: customvalue1 @@ -2612,19 +1871,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-apiserver + 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-apiserver-kind-control-plane + stringValue: local-path-provisioner-6f8956fb48-wgzmr - key: k8s.pod.uid value: - stringValue: 8701d555-0650-453b-ac93-a956ca5291ac + stringValue: 809e4615-fc78-494b-abde-5263a1ee31a0 - key: metric_source value: stringValue: kubernetes @@ -2639,13 +1898,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 564c7d63101b2ea3ddb8f581d9600431c067861c469551df8ff6529cb6d0474b + stringValue: 15a2d46d1533c984b885e8f767c50e7601241f026c5698a80cda3db5d2321c83 - key: container.image.name value: - stringValue: registry.k8s.io/kube-scheduler + stringValue: quay.io/splunko11ytest/nodejs_test - key: container.image.tag value: - stringValue: v1.28.0 + stringValue: latest - key: customfield1 value: stringValue: customvalue1 @@ -2657,19 +1916,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-scheduler + stringValue: nodejs-test - 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-scheduler-kind-control-plane + stringValue: nodejs-test-56b74df9ff-klgm7 - key: k8s.pod.uid value: - stringValue: 28e3146c-cb2e-4df1-88ee-ecdd3337dff1 + stringValue: 89b46064-f8e5-46d6-b54e-79a1cc7948df - key: metric_source value: stringValue: kubernetes @@ -2677,20 +1936,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 65846098db8d14094f08ce0abe1ba935af0976511f4cc53054a0d09d62471632 + stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: 0.113.0 - key: customfield1 value: stringValue: customvalue1 @@ -2702,19 +1961,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-w-index-w-ns-exclude + stringValue: otel-collector - key: k8s.namespace.name value: - stringValue: ns-w-exclude + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-w-index-w-ns-exclude-k5trb + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj - key: k8s.pod.uid value: - stringValue: fd76cc57-bcc0-48d1-be85-fe3d0254e0e2 + stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c - key: metric_source value: stringValue: kubernetes @@ -2729,13 +1988,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 6fb640c58e4f5327afdd871c52937d35c6ce6e01283da7580b99d3744843d0fb + stringValue: 3917f7d60ba632ba65e55bdd2a69a516383982f5f6b555eaf86a688cea4c5515 - key: container.image.name value: - stringValue: registry.k8s.io/etcd + stringValue: quay.io/jetstack/cert-manager-webhook - key: container.image.tag value: - stringValue: 3.5.9-0 + stringValue: v1.14.4 - key: customfield1 value: stringValue: customvalue1 @@ -2747,19 +2006,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: etcd + 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: etcd-kind-control-plane + stringValue: cert-manager-webhook-7f9f8648b9-dzq2l - key: k8s.pod.uid value: - stringValue: 6eb462f9-6c0f-4152-b0d8-1c0e397ed71d + stringValue: 18826d35-ead9-4637-a492-8d78156959f6 - key: metric_source value: stringValue: kubernetes @@ -2767,20 +2026,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 700b4fd48173e202397cbde1f79736be69e132b0a8aa125d5ae1a3a381a0bb2b + stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: 0.116.0 - key: customfield1 value: stringValue: customvalue1 @@ -2792,19 +2051,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-w-index-wo-ns-index + stringValue: manager - key: k8s.namespace.name value: - stringValue: ns-wo-index + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-w-index-wo-ns-index-n9z4p + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: 170f3c4a-8b3e-441d-95ef-b65c3d7f8a98 + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -2819,13 +2078,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 727c81774389fc16cff897d0b797c85068ea41c9359bdfd01acff0e75169ed3c + stringValue: 55d8886e226d55a1a0f3e3f0bdc56d0e2a32c9ffdf6712c9e99c9873528f5b12 - key: container.image.name value: - stringValue: quay.io/splunko11ytest/nodejs_test + stringValue: registry.k8s.io/kube-scheduler - key: container.image.tag value: - stringValue: latest + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -2837,19 +2096,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: nodejs-test + stringValue: kube-scheduler - 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: nodejs-test-d454cf769-rsnmj + stringValue: kube-scheduler-kind-control-plane - key: k8s.pod.uid value: - stringValue: b76ac1c2-eee7-4eda-bd7d-0cf52bbaf681 + stringValue: e8a35d2f-5099-41cb-97c1-7c20e9236fd5 - key: metric_source value: stringValue: kubernetes @@ -2864,13 +2123,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7aaccfe1a15fb665eda12202474f140412356a2fcccb4a64d7d152ea254eb0a8 + stringValue: 56c1f8ae24c544d0a51aabda6f200e7a491c22eeca767de49504632b0340e09c - key: container.image.name value: - stringValue: quay.io/jetstack/cert-manager-webhook + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: v1.14.4 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -2882,19 +2141,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: cert-manager-webhook + 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-webhook-7f9f8648b9-vh5vz + stringValue: coredns-76f75df574-8w7l8 - key: k8s.pod.uid value: - stringValue: 2b412fdf-4dca-44c0-939a-0444ba4c6b19 + stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 - key: metric_source value: stringValue: kubernetes @@ -2902,20 +2161,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7e607dbd3c8843e2c18fc438d46432b73da4c6a969cd3c5085e16a7f9fc92c37 + stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: 0.113.0 - key: customfield1 value: stringValue: customvalue1 @@ -2927,19 +2186,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-w-index-w-ns-exclude + stringValue: otel-collector - key: k8s.namespace.name value: - stringValue: ns-w-index + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-w-exclude-wo-ns-exclude-vz7fs + stringValue: sock-splunk-otel-collector-agent-rm8js - key: k8s.pod.uid value: - stringValue: 2e81ae1a-92da-4df2-aff6-82d08d3ba616 + stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 - key: metric_source value: stringValue: kubernetes @@ -2954,13 +2213,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 921e4ef8122f9928136899dc518385808d6ea56bbfc246b88b1b0f902a9e6917 + stringValue: 6e3992f7de7d0611933767e445edc89ecc7b6bb086fbf9b82b7daba89df7f09a - key: container.image.name value: - stringValue: registry.k8s.io/kube-controller-manager + stringValue: registry.k8s.io/kube-apiserver - key: container.image.tag value: - stringValue: v1.28.0 + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -2972,7 +2231,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-controller-manager + stringValue: kube-apiserver - key: k8s.namespace.name value: stringValue: kube-system @@ -2981,10 +2240,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-controller-manager-kind-control-plane + stringValue: kube-apiserver-kind-control-plane - key: k8s.pod.uid value: - stringValue: a363dd2c-cd5d-4a23-9ccc-d3370b26fb03 + stringValue: 830a2042-aec1-4502-8d2b-d96852bd105c - key: metric_source value: stringValue: kubernetes @@ -2999,13 +2258,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: a4c773550bffaea8510656815ec4b284f791df8bfcc5dfcc6ef3a8c49e5fffbf + stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: quay.io/brancz/kube-rbac-proxy - key: container.image.tag value: - stringValue: 0.105.0 + stringValue: v0.18.1 - key: customfield1 value: stringValue: customvalue1 @@ -3017,7 +2276,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: kube-rbac-proxy - key: k8s.namespace.name value: stringValue: default @@ -3026,10 +2285,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-75d89f6cbfx4wgn + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: ce91e5e9-fa3e-405f-8174-4f80da3cb480 + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -3044,13 +2303,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: aacfb78416ad87c4506ec7d790cbc7d84707cc00b95c664950a06b3c9e30a813 + stringValue: 7930a07f4cb7fc9ea6159a3bc7c7485170f728ddc0cc0c50a6f571737c846e50 - 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.105.0 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -3062,19 +2321,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-5qstp + stringValue: coredns-76f75df574-wqrsn - key: k8s.pod.uid value: - stringValue: 11d4ea6f-cd81-450d-a0fc-b461ef710f3c + stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 - key: metric_source value: stringValue: kubernetes @@ -3089,13 +2348,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: b182ba5e9c547e7a026bce45b33a8106f54bdd4299f294420db7325f6ced0668 + stringValue: 7c2550f56f151c838ab4ddc00211edd3c1be45f992c4058759cc01e387c45e01 - key: container.image.name value: - stringValue: quay.io/splunko11ytest/java_test + stringValue: registry.k8s.io/kube-proxy - key: container.image.tag value: - stringValue: latest + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -3107,19 +2366,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: java-test + 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: java-test-566495f78-qlbhq + stringValue: kube-proxy-tw2lr - key: k8s.pod.uid value: - stringValue: a4d0b94d-b466-4638-8f7e-3414215dca87 + stringValue: 7b0de1af-95c5-4994-9e01-f16b25ba49c6 - key: metric_source value: stringValue: kubernetes @@ -3134,10 +2393,10 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: bb78e312afefa28b7b6ae6dfafcec6b02a6071896950f9113a2cdc41715ea0ef + stringValue: 7d239fcb5583c18f213c32748d6c127ee36426aa9fcfffb0533bf7a84d5f7194 - key: container.image.name value: - stringValue: quay.io/jetstack/cert-manager-cainjector + stringValue: quay.io/jetstack/cert-manager-controller - key: container.image.tag value: stringValue: v1.14.4 @@ -3152,7 +2411,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: cert-manager-cainjector + stringValue: cert-manager-controller - key: k8s.namespace.name value: stringValue: cert-manager @@ -3161,10 +2420,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-cainjector-5c5695d979-ml9t4 + stringValue: cert-manager-67c98b89c8-5dtxs - key: k8s.pod.uid value: - stringValue: 4dbf4f6c-245c-4d21-8952-b6cccec19de2 + stringValue: 9cd699ef-f612-4879-b1ce-04303d7b4f6c - key: metric_source value: stringValue: kubernetes @@ -3179,13 +2438,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: c5dc13e7abce1bef6067e16df255670cb21e67bc85eddcc2663f9610072cd844 + stringValue: 7f2567f3445e62535252ac97a6b0b3eea860f21dffa4902c947c17d55a26ac2e - 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.15.0 + stringValue: v1.14.4 - key: customfield1 value: stringValue: customvalue1 @@ -3197,19 +2456,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-786c6c9777-jdk67 + stringValue: cert-manager-cainjector-5c5695d979-h7c2k - key: k8s.pod.uid value: - stringValue: a52b7c26-b3cf-4f63-8bda-3ac1c5dfa202 + stringValue: 5a67f651-add4-43f6-b2a7-06afb5fef617 - key: metric_source value: stringValue: kubernetes @@ -3224,13 +2483,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: cb072863b78daab3d83665e3980045f88e4446ba124de56e2ea75dadecd7a025 + stringValue: 82b7c36c5da8acb40f66be5b2c70430bb7d7c84e128bede5bc325f94653839bd - key: container.image.name value: - stringValue: quay.io/jetstack/cert-manager-controller + stringValue: registry.k8s.io/etcd - key: container.image.tag value: - stringValue: v1.14.4 + stringValue: 3.5.10-0 - key: customfield1 value: stringValue: customvalue1 @@ -3242,19 +2501,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: cert-manager-controller + stringValue: etcd - 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-62kb8 + stringValue: etcd-kind-control-plane - key: k8s.pod.uid value: - stringValue: 947dc18c-f509-4ba5-a530-beae832e8252 + stringValue: 68828dad-2ca2-47ca-914e-f41cfd58244b - key: metric_source value: stringValue: kubernetes @@ -3269,13 +2528,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: db8f794e2cf81c2bcc3997bc89a1ddeae1c5e8d4192bbfab8157954d04eac829 + stringValue: 9001b70e2443496dc4699019d151e7ac94b30c7555c9f95e0e9fb569a3c5985c - 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 @@ -3287,19 +2546,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-mcn8p + stringValue: prometheus-annotation-test-cfc77c7b9-86vg5 - key: k8s.pod.uid value: - stringValue: 0addfa81-d5c7-494d-b048-28ffb529eed4 + stringValue: 558db553-7cc6-44f2-9039-f81e43d0bc25 - key: metric_source value: stringValue: kubernetes @@ -3314,13 +2573,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: dbc0f4eefbe85fa816b4ec434957e735fabd315bdf53916bd15008100500ca72 + stringValue: ad771ceab740a5a51b3c5e67b8ff36743ef86776f28942fcb28b22c4f37b309d - 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.95.0 + stringValue: latest - key: customfield1 value: stringValue: customvalue1 @@ -3332,7 +2591,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: manager + stringValue: dotnet-test - key: k8s.namespace.name value: stringValue: default @@ -3341,10 +2600,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-786c6c9777-jdk67 + stringValue: dotnet-test-5479c475fc-qpr6c - key: k8s.pod.uid value: - stringValue: a52b7c26-b3cf-4f63-8bda-3ac1c5dfa202 + stringValue: bd83fe1d-786d-4da7-889e-cee578e6f2f8 - key: metric_source value: stringValue: kubernetes @@ -3359,13 +2618,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e357040a01f2e65825586c107c798c928122a66e1c16ebb0140b2586577dfe11 + stringValue: af7431cadfb9e46f242716f4588134dee006641290c1405f88e468beb2fa559d - key: container.image.name value: - stringValue: quay.io/splunko11ytest/httpd + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/target-allocator - key: container.image.tag value: - stringValue: latest + stringValue: v0.105.0 - key: customfield1 value: stringValue: customvalue1 @@ -3377,7 +2636,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: prometheus-annotation-test + stringValue: targetallocator - key: k8s.namespace.name value: stringValue: default @@ -3386,10 +2645,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: prometheus-annotation-test-6c5444b75-mzcnq + stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4-rpj6g - key: k8s.pod.uid value: - stringValue: 9949cbfa-fd64-4ec4-93bb-1a268ec9a3d9 + stringValue: 4e7bef74-37d2-4380-b5d7-c0ce1476be95 - key: metric_source value: stringValue: kubernetes @@ -3404,13 +2663,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e448e36cb9abf9db03b8936e5266a942ce8676264d07ae7402203cc19e2c8efc + stringValue: e2ea169579f87203b926492d33050b56fd253b2e07bd66730339fc75a2fd4621 - key: container.image.name value: - stringValue: ghcr.io/open-telemetry/opentelemetry-operator/target-allocator + stringValue: registry.k8s.io/kube-controller-manager - key: container.image.tag value: - stringValue: v0.105.0 + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -3422,19 +2681,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: targetallocator + 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-ta-548cccf49d-q956w + stringValue: kube-controller-manager-kind-control-plane - key: k8s.pod.uid value: - stringValue: a58f99c1-2c1c-46ef-9ebe-86cca8944157 + stringValue: 5c40ac1e-5432-4249-b754-4795b36d4c99 - key: metric_source value: stringValue: kubernetes @@ -3442,20 +2701,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: f9a80492f51dcd246c08be065baf28da8fa904f61f48d22da9ad29b85975e38a + stringValue: e6089c166eeb1823e805c0845d43a777ae52ac054fe8ecc33805204995de77e7 - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: quay.io/splunko11ytest/java_test - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: latest - key: customfield1 value: stringValue: customvalue1 @@ -3467,19 +2726,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-wo-index-wo-ns-index + stringValue: java-test - key: k8s.namespace.name value: - stringValue: ns-wo-index + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-wo-index-wo-ns-index-nmq5n + stringValue: java-test-5c4d6479b8-j7fmr - key: k8s.pod.uid value: - stringValue: 308f1d87-ce90-4022-8619-066c2adecfe7 + stringValue: 63ca8dfe-1747-4097-9b9d-071b1cb3b891 - key: metric_source value: stringValue: kubernetes @@ -3487,23 +2746,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - name: k8s.container.ready - - gauge: - dataPoints: - - asInt: "0" + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 1ccd2c914f69782ef2e78269623c0e49e14fac7f75a332e75602078ff4f2dba9 + stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 - key: container.image.name value: - stringValue: registry.k8s.io/kube-proxy + stringValue: docker.io/kindest/kindnetd - key: container.image.tag value: - stringValue: v1.28.0 + stringValue: v20230511-dc714da8 - key: customfield1 value: stringValue: customvalue1 @@ -3515,7 +2771,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-proxy + stringValue: kindnet-cni - key: k8s.namespace.name value: stringValue: kube-system @@ -3524,10 +2780,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-proxy-n55wq + stringValue: kindnet-9xfzp - key: k8s.pod.uid value: - stringValue: da89965a-a32a-4014-bbdc-2f74df50bc8c + stringValue: f8149b85-dab1-482e-a735-0c29a953061b - key: metric_source value: stringValue: kubernetes @@ -3535,6 +2791,9 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" + name: k8s.container.ready + - gauge: + dataPoints: - asInt: "0" attributes: - key: cluster_name @@ -3542,13 +2801,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 1f28f952ec06ce799fab8e35685e23074480425a97671d24a84f42c33b7e878a + stringValue: 029555a4cfeffe308062ebe8f6f59e116313d079efd1a802064ed30e6e155150 - key: container.image.name value: - stringValue: quay.io/splunko11ytest/dotnet_test + stringValue: docker.io/kindest/local-path-provisioner - key: container.image.tag value: - stringValue: latest + stringValue: v20230511-dc714da8 - key: customfield1 value: stringValue: customvalue1 @@ -3560,19 +2819,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: dotnet-test + stringValue: local-path-provisioner - key: k8s.namespace.name value: - stringValue: default + stringValue: local-path-storage - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: dotnet-test-799469547f-7qjm5 + stringValue: local-path-provisioner-6f8956fb48-wgzmr - key: k8s.pod.uid value: - stringValue: ebf0e3a3-6a3e-475c-8862-5751ee0cffab + stringValue: 809e4615-fc78-494b-abde-5263a1ee31a0 - key: metric_source value: stringValue: kubernetes @@ -3587,13 +2846,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 24198ed767aef1c1122abfd03fde9d96ce79061ac87268469fc825605e1c692b + stringValue: 15a2d46d1533c984b885e8f767c50e7601241f026c5698a80cda3db5d2321c83 - key: container.image.name value: - stringValue: registry.k8s.io/coredns/coredns + stringValue: quay.io/splunko11ytest/nodejs_test - key: container.image.tag value: - stringValue: v1.10.1 + stringValue: latest - key: customfield1 value: stringValue: customvalue1 @@ -3605,19 +2864,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: coredns + stringValue: nodejs-test - 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-5dd5756b68-xpdfv + stringValue: nodejs-test-56b74df9ff-klgm7 - key: k8s.pod.uid value: - stringValue: ab03934f-06a7-40f9-a1bc-2720ad57d0cd + stringValue: 89b46064-f8e5-46d6-b54e-79a1cc7948df - key: metric_source value: stringValue: kubernetes @@ -3632,13 +2891,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 36e18f5103bc9c1d8768e2314938e95e06eb748ac04b70acf99429ae9f06d022 + stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: 0.113.0 - key: customfield1 value: stringValue: customvalue1 @@ -3650,19 +2909,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-wo-index-w-ns-index + stringValue: otel-collector - key: k8s.namespace.name value: - stringValue: ns-w-index + stringValue: default - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-wo-index-w-ns-index-gh6jz + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj - key: k8s.pod.uid value: - stringValue: 26760adc-42b3-4813-98d7-39b24113de35 + stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c - key: metric_source value: stringValue: kubernetes @@ -3677,13 +2936,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 3ec2cb3c9cb5ab18b26fca01fbc81d823f553e9ccc55397c10ded8484ae15875 + stringValue: 3917f7d60ba632ba65e55bdd2a69a516383982f5f6b555eaf86a688cea4c5515 - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: quay.io/jetstack/cert-manager-webhook - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: v1.14.4 - key: customfield1 value: stringValue: customvalue1 @@ -3695,19 +2954,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-w-index-w-ns-index + stringValue: cert-manager-webhook - key: k8s.namespace.name value: - stringValue: ns-w-index + stringValue: cert-manager - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-w-index-w-ns-index-frjlk + stringValue: cert-manager-webhook-7f9f8648b9-dzq2l - key: k8s.pod.uid value: - stringValue: 12e4c41c-6feb-4e87-aff2-c900e9ff3637 + stringValue: 18826d35-ead9-4637-a492-8d78156959f6 - key: metric_source value: stringValue: kubernetes @@ -3722,13 +2981,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 4044596b959a9dc76894c29d846f39714c49c15e69ffc63b3b55f01c9d94f6af + stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 - 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.10.1 + stringValue: 0.116.0 - key: customfield1 value: stringValue: customvalue1 @@ -3740,19 +2999,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-5dd5756b68-qkcxw + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: 71bd9c9e-0918-4cbf-b4c6-ea1a119dd8a9 + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -3767,13 +3026,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 476d22e2d90c4fd6eca9275b9a162519a2dd602801bfc897d851407c260fbe86 + stringValue: 55d8886e226d55a1a0f3e3f0bdc56d0e2a32c9ffdf6712c9e99c9873528f5b12 - key: container.image.name value: - stringValue: docker.io/kindest/kindnetd + stringValue: registry.k8s.io/kube-scheduler - key: container.image.tag value: - stringValue: v20230511-dc714da8 + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -3785,7 +3044,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kindnet-cni + stringValue: kube-scheduler - key: k8s.namespace.name value: stringValue: kube-system @@ -3794,10 +3053,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kindnet-r7mw5 + stringValue: kube-scheduler-kind-control-plane - key: k8s.pod.uid value: - stringValue: e437a2a5-4e50-4f84-8b78-9a4aaa832f05 + stringValue: e8a35d2f-5099-41cb-97c1-7c20e9236fd5 - key: metric_source value: stringValue: kubernetes @@ -3812,13 +3071,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 4c658df58c5d18a5868bd3892657dbecc4c3044397c4508e65c1caf18fdc36b1 + stringValue: 56c1f8ae24c544d0a51aabda6f200e7a491c22eeca767de49504632b0340e09c - key: container.image.name value: - stringValue: registry.k8s.io/kube-apiserver + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: v1.28.0 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -3830,7 +3089,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-apiserver + stringValue: coredns - key: k8s.namespace.name value: stringValue: kube-system @@ -3839,10 +3098,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: kube-apiserver-kind-control-plane + stringValue: coredns-76f75df574-8w7l8 - key: k8s.pod.uid value: - stringValue: 8701d555-0650-453b-ac93-a956ca5291ac + stringValue: 6568d3fb-f7c9-4968-a57e-7830b92b4c48 - key: metric_source value: stringValue: kubernetes @@ -3857,13 +3116,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 564c7d63101b2ea3ddb8f581d9600431c067861c469551df8ff6529cb6d0474b + stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 - key: container.image.name value: - stringValue: registry.k8s.io/kube-scheduler + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: v1.28.0 + stringValue: 0.113.0 - key: customfield1 value: stringValue: customvalue1 @@ -3875,19 +3134,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-scheduler + 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-scheduler-kind-control-plane + stringValue: sock-splunk-otel-collector-agent-rm8js - key: k8s.pod.uid value: - stringValue: 28e3146c-cb2e-4df1-88ee-ecdd3337dff1 + stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 - key: metric_source value: stringValue: kubernetes @@ -3902,13 +3161,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 65846098db8d14094f08ce0abe1ba935af0976511f4cc53054a0d09d62471632 + stringValue: 6e3992f7de7d0611933767e445edc89ecc7b6bb086fbf9b82b7daba89df7f09a - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: registry.k8s.io/kube-apiserver - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -3920,19 +3179,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-w-index-w-ns-exclude + stringValue: kube-apiserver - key: k8s.namespace.name value: - stringValue: ns-w-exclude + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-w-index-w-ns-exclude-k5trb + stringValue: kube-apiserver-kind-control-plane - key: k8s.pod.uid value: - stringValue: fd76cc57-bcc0-48d1-be85-fe3d0254e0e2 + stringValue: 830a2042-aec1-4502-8d2b-d96852bd105c - key: metric_source value: stringValue: kubernetes @@ -3947,13 +3206,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 6fb640c58e4f5327afdd871c52937d35c6ce6e01283da7580b99d3744843d0fb + stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac - key: container.image.name value: - stringValue: registry.k8s.io/etcd + stringValue: quay.io/brancz/kube-rbac-proxy - key: container.image.tag value: - stringValue: 3.5.9-0 + stringValue: v0.18.1 - key: customfield1 value: stringValue: customvalue1 @@ -3965,19 +3224,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: etcd + 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: etcd-kind-control-plane + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: 6eb462f9-6c0f-4152-b0d8-1c0e397ed71d + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -3992,13 +3251,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 700b4fd48173e202397cbde1f79736be69e132b0a8aa125d5ae1a3a381a0bb2b + stringValue: 7930a07f4cb7fc9ea6159a3bc7c7485170f728ddc0cc0c50a6f571737c846e50 - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: registry.k8s.io/coredns/coredns - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: v1.11.1 - key: customfield1 value: stringValue: customvalue1 @@ -4010,19 +3269,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-w-index-wo-ns-index + stringValue: coredns - key: k8s.namespace.name value: - stringValue: ns-wo-index + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-w-index-wo-ns-index-n9z4p + stringValue: coredns-76f75df574-wqrsn - key: k8s.pod.uid value: - stringValue: 170f3c4a-8b3e-441d-95ef-b65c3d7f8a98 + stringValue: 9080fd41-e66e-423d-87fd-a1e86ac15678 - key: metric_source value: stringValue: kubernetes @@ -4037,13 +3296,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 727c81774389fc16cff897d0b797c85068ea41c9359bdfd01acff0e75169ed3c + stringValue: 7c2550f56f151c838ab4ddc00211edd3c1be45f992c4058759cc01e387c45e01 - key: container.image.name value: - stringValue: quay.io/splunko11ytest/nodejs_test + stringValue: registry.k8s.io/kube-proxy - key: container.image.tag value: - stringValue: latest + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -4055,19 +3314,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: nodejs-test + 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: nodejs-test-d454cf769-rsnmj + stringValue: kube-proxy-tw2lr - key: k8s.pod.uid value: - stringValue: b76ac1c2-eee7-4eda-bd7d-0cf52bbaf681 + stringValue: 7b0de1af-95c5-4994-9e01-f16b25ba49c6 - key: metric_source value: stringValue: kubernetes @@ -4075,17 +3334,17 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7aaccfe1a15fb665eda12202474f140412356a2fcccb4a64d7d152ea254eb0a8 + stringValue: 7d239fcb5583c18f213c32748d6c127ee36426aa9fcfffb0533bf7a84d5f7194 - key: container.image.name value: - stringValue: quay.io/jetstack/cert-manager-webhook + stringValue: quay.io/jetstack/cert-manager-controller - key: container.image.tag value: stringValue: v1.14.4 @@ -4100,7 +3359,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: cert-manager-webhook + stringValue: cert-manager-controller - key: k8s.namespace.name value: stringValue: cert-manager @@ -4109,10 +3368,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: cert-manager-webhook-7f9f8648b9-vh5vz + stringValue: cert-manager-67c98b89c8-5dtxs - key: k8s.pod.uid value: - stringValue: 2b412fdf-4dca-44c0-939a-0444ba4c6b19 + stringValue: 9cd699ef-f612-4879-b1ce-04303d7b4f6c - key: metric_source value: stringValue: kubernetes @@ -4127,13 +3386,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 7e607dbd3c8843e2c18fc438d46432b73da4c6a969cd3c5085e16a7f9fc92c37 + stringValue: 7f2567f3445e62535252ac97a6b0b3eea860f21dffa4902c947c17d55a26ac2e - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: quay.io/jetstack/cert-manager-cainjector - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: v1.14.4 - key: customfield1 value: stringValue: customvalue1 @@ -4145,19 +3404,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-w-index-w-ns-exclude + stringValue: cert-manager-cainjector - key: k8s.namespace.name value: - stringValue: ns-w-index + stringValue: cert-manager - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-w-exclude-wo-ns-exclude-vz7fs + stringValue: cert-manager-cainjector-5c5695d979-h7c2k - key: k8s.pod.uid value: - stringValue: 2e81ae1a-92da-4df2-aff6-82d08d3ba616 + stringValue: 5a67f651-add4-43f6-b2a7-06afb5fef617 - key: metric_source value: stringValue: kubernetes @@ -4172,13 +3431,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: 921e4ef8122f9928136899dc518385808d6ea56bbfc246b88b1b0f902a9e6917 + stringValue: 82b7c36c5da8acb40f66be5b2c70430bb7d7c84e128bede5bc325f94653839bd - key: container.image.name value: - stringValue: registry.k8s.io/kube-controller-manager + stringValue: registry.k8s.io/etcd - key: container.image.tag value: - stringValue: v1.28.0 + stringValue: 3.5.10-0 - key: customfield1 value: stringValue: customvalue1 @@ -4190,7 +3449,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-controller-manager + stringValue: etcd - key: k8s.namespace.name value: stringValue: kube-system @@ -4199,10 +3458,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: a363dd2c-cd5d-4a23-9ccc-d3370b26fb03 + stringValue: 68828dad-2ca2-47ca-914e-f41cfd58244b - key: metric_source value: stringValue: kubernetes @@ -4217,13 +3476,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: a4c773550bffaea8510656815ec4b284f791df8bfcc5dfcc6ef3a8c49e5fffbf + stringValue: 9001b70e2443496dc4699019d151e7ac94b30c7555c9f95e0e9fb569a3c5985c - key: container.image.name value: - stringValue: quay.io/signalfx/splunk-otel-collector + stringValue: quay.io/splunko11ytest/httpd - key: container.image.tag value: - stringValue: 0.105.0 + stringValue: latest - key: customfield1 value: stringValue: customvalue1 @@ -4235,7 +3494,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: prometheus-annotation-test - key: k8s.namespace.name value: stringValue: default @@ -4244,10 +3503,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-75d89f6cbfx4wgn + stringValue: prometheus-annotation-test-cfc77c7b9-86vg5 - key: k8s.pod.uid value: - stringValue: ce91e5e9-fa3e-405f-8174-4f80da3cb480 + stringValue: 558db553-7cc6-44f2-9039-f81e43d0bc25 - key: metric_source value: stringValue: kubernetes @@ -4255,20 +3514,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asInt: "1" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: aacfb78416ad87c4506ec7d790cbc7d84707cc00b95c664950a06b3c9e30a813 + stringValue: ad771ceab740a5a51b3c5e67b8ff36743ef86776f28942fcb28b22c4f37b309d - 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.105.0 + stringValue: latest - key: customfield1 value: stringValue: customvalue1 @@ -4280,7 +3539,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: otel-collector + stringValue: dotnet-test - key: k8s.namespace.name value: stringValue: default @@ -4289,10 +3548,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-5qstp + stringValue: dotnet-test-5479c475fc-qpr6c - key: k8s.pod.uid value: - stringValue: 11d4ea6f-cd81-450d-a0fc-b461ef710f3c + stringValue: bd83fe1d-786d-4da7-889e-cee578e6f2f8 - key: metric_source value: stringValue: kubernetes @@ -4307,13 +3566,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: b182ba5e9c547e7a026bce45b33a8106f54bdd4299f294420db7325f6ced0668 + stringValue: af7431cadfb9e46f242716f4588134dee006641290c1405f88e468beb2fa559d - key: container.image.name value: - stringValue: quay.io/splunko11ytest/java_test + stringValue: ghcr.io/open-telemetry/opentelemetry-operator/target-allocator - key: container.image.tag value: - stringValue: latest + stringValue: v0.105.0 - key: customfield1 value: stringValue: customvalue1 @@ -4325,7 +3584,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: java-test + stringValue: targetallocator - key: k8s.namespace.name value: stringValue: default @@ -4334,10 +3593,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: java-test-566495f78-qlbhq + stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4-rpj6g - key: k8s.pod.uid value: - stringValue: a4d0b94d-b466-4638-8f7e-3414215dca87 + stringValue: 4e7bef74-37d2-4380-b5d7-c0ce1476be95 - key: metric_source value: stringValue: kubernetes @@ -4352,13 +3611,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: bb78e312afefa28b7b6ae6dfafcec6b02a6071896950f9113a2cdc41715ea0ef + stringValue: e2ea169579f87203b926492d33050b56fd253b2e07bd66730339fc75a2fd4621 - key: container.image.name value: - stringValue: quay.io/jetstack/cert-manager-cainjector + stringValue: registry.k8s.io/kube-controller-manager - key: container.image.tag value: - stringValue: v1.14.4 + stringValue: v1.29.0 - key: customfield1 value: stringValue: customvalue1 @@ -4370,19 +3629,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: cert-manager-cainjector + stringValue: kube-controller-manager - 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-ml9t4 + stringValue: kube-controller-manager-kind-control-plane - key: k8s.pod.uid value: - stringValue: 4dbf4f6c-245c-4d21-8952-b6cccec19de2 + stringValue: 5c40ac1e-5432-4249-b754-4795b36d4c99 - key: metric_source value: stringValue: kubernetes @@ -4397,13 +3656,13 @@ resourceMetrics: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: c5dc13e7abce1bef6067e16df255670cb21e67bc85eddcc2663f9610072cd844 + stringValue: e6089c166eeb1823e805c0845d43a777ae52ac054fe8ecc33805204995de77e7 - key: container.image.name value: - stringValue: quay.io/brancz/kube-rbac-proxy + stringValue: quay.io/splunko11ytest/java_test - key: container.image.tag value: - stringValue: v0.15.0 + stringValue: latest - key: customfield1 value: stringValue: customvalue1 @@ -4415,7 +3674,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: kube-rbac-proxy + stringValue: java-test - key: k8s.namespace.name value: stringValue: default @@ -4424,10 +3683,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-786c6c9777-jdk67 + stringValue: java-test-5c4d6479b8-j7fmr - key: k8s.pod.uid value: - stringValue: a52b7c26-b3cf-4f63-8bda-3ac1c5dfa202 + stringValue: 63ca8dfe-1747-4097-9b9d-071b1cb3b891 - key: metric_source value: stringValue: kubernetes @@ -4435,20 +3694,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "4" + - asInt: "0" attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: cb072863b78daab3d83665e3980045f88e4446ba124de56e2ea75dadecd7a025 + stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 - key: container.image.name value: - stringValue: quay.io/jetstack/cert-manager-controller + stringValue: docker.io/kindest/kindnetd - key: container.image.tag value: - stringValue: v1.14.4 + stringValue: v20230511-dc714da8 - key: customfield1 value: stringValue: customvalue1 @@ -4460,19 +3719,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: cert-manager-controller + stringValue: kindnet-cni - 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-62kb8 + stringValue: kindnet-9xfzp - key: k8s.pod.uid value: - stringValue: 947dc18c-f509-4ba5-a530-beae832e8252 + stringValue: f8149b85-dab1-482e-a735-0c29a953061b - key: metric_source value: stringValue: kubernetes @@ -4480,20 +3739,23 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + name: k8s.container.restarts + - gauge: + dataPoints: + - asDouble: 0.2 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: db8f794e2cf81c2bcc3997bc89a1ddeae1c5e8d4192bbfab8157954d04eac829 + stringValue: 2af99b8564745949add016297bed1095f9f09af15a1294aed0f79744dcaf48a8 - key: container.image.name value: - stringValue: docker.io/kindest/local-path-provisioner + stringValue: quay.io/signalfx/splunk-otel-collector - key: container.image.tag value: - stringValue: v20230511-dc714da8 + stringValue: 0.113.0 - key: customfield1 value: stringValue: customvalue1 @@ -4505,19 +3767,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: local-path-provisioner + stringValue: otel-collector - 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-mcn8p + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95-4qqkj - key: k8s.pod.uid value: - stringValue: 0addfa81-d5c7-494d-b048-28ffb529eed4 + stringValue: 59b85dae-fb8d-4e1d-ae48-a94b8197ca1c - key: metric_source value: stringValue: kubernetes @@ -4525,20 +3787,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: dbc0f4eefbe85fa816b4ec434957e735fabd315bdf53916bd15008100500ca72 + stringValue: 4666fdf6ba1bb1c80ea696805874f49ebf22b7210cec520e959ae887c6e09712 - key: container.image.name value: stringValue: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator - key: container.image.tag value: - stringValue: 0.95.0 + stringValue: 0.116.0 - key: customfield1 value: stringValue: customvalue1 @@ -4559,10 +3821,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-operator-786c6c9777-jdk67 + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: a52b7c26-b3cf-4f63-8bda-3ac1c5dfa202 + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -4570,20 +3832,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asDouble: 0.2 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e357040a01f2e65825586c107c798c928122a66e1c16ebb0140b2586577dfe11 + stringValue: 60707ba5474433fa959ff8b3f5e85585f8cacaeb3e9467f6a4669c949efd5479 - 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.113.0 - key: customfield1 value: stringValue: customvalue1 @@ -4595,7 +3857,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: prometheus-annotation-test + stringValue: otel-collector - key: k8s.namespace.name value: stringValue: default @@ -4604,10 +3866,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: prometheus-annotation-test-6c5444b75-mzcnq + stringValue: sock-splunk-otel-collector-agent-rm8js - key: k8s.pod.uid value: - stringValue: 9949cbfa-fd64-4ec4-93bb-1a268ec9a3d9 + stringValue: c2da0a0f-2007-498d-ae2d-69f0fefa6873 - key: metric_source value: stringValue: kubernetes @@ -4615,20 +3877,20 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - - asInt: "0" + - asDouble: 0.5 attributes: - key: cluster_name value: stringValue: ci-k8s-cluster - key: container.id value: - stringValue: e448e36cb9abf9db03b8936e5266a942ce8676264d07ae7402203cc19e2c8efc + stringValue: 74a7131201f0c2365aac95e75a88656ce223a8b392db102fade613706fc7cdac - key: container.image.name value: - stringValue: ghcr.io/open-telemetry/opentelemetry-operator/target-allocator + stringValue: quay.io/brancz/kube-rbac-proxy - key: container.image.tag value: - stringValue: v0.105.0 + stringValue: v0.18.1 - key: customfield1 value: stringValue: customvalue1 @@ -4640,7 +3902,7 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: targetallocator + stringValue: kube-rbac-proxy - key: k8s.namespace.name value: stringValue: default @@ -4649,10 +3911,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-ta-548cccf49d-q956w + stringValue: sock-operator-768dffbcb8-q7jff - key: k8s.pod.uid value: - stringValue: a58f99c1-2c1c-46ef-9ebe-86cca8944157 + stringValue: afccdc91-da5d-4cd1-8b73-dcec7a5f38cf - key: metric_source value: stringValue: kubernetes @@ -4660,20 +3922,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: f9a80492f51dcd246c08be065baf28da8fa904f61f48d22da9ad29b85975e38a + stringValue: e69bf7a674c5a32416e070441c0d44ecb9467e086ef0a7e6c1d950f7abebc2b4 - key: container.image.name value: - stringValue: docker.io/rock1017/log-generator + stringValue: docker.io/kindest/kindnetd - key: container.image.tag value: - stringValue: 2.2.6 + stringValue: v20230511-dc714da8 - key: customfield1 value: stringValue: customvalue1 @@ -4685,19 +3947,19 @@ resourceMetrics: stringValue: dev-operator - key: k8s.container.name value: - stringValue: pod-wo-index-wo-ns-index + stringValue: kindnet-cni - key: k8s.namespace.name value: - stringValue: ns-wo-index + stringValue: kube-system - key: k8s.node.name value: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: pod-wo-index-wo-ns-index-nmq5n + stringValue: kindnet-9xfzp - key: k8s.pod.uid value: - stringValue: 308f1d87-ce90-4022-8619-066c2adecfe7 + stringValue: f8149b85-dab1-482e-a735-0c29a953061b - key: metric_source value: stringValue: kubernetes @@ -4705,7 +3967,7 @@ resourceMetrics: value: stringValue: k8scluster timeUnixNano: "1000000" - name: k8s.container.restarts + name: k8s.container.cpu_limit - gauge: dataPoints: - asInt: "1" @@ -4727,7 +3989,7 @@ resourceMetrics: stringValue: cert-manager - key: k8s.namespace.uid value: - stringValue: 81138831-57e2-43d5-a288-da3efa95929d + stringValue: 0333ceb4-8c45-4aa4-9f30-e4611c1ba293 - key: metric_source value: stringValue: kubernetes @@ -4754,7 +4016,7 @@ resourceMetrics: stringValue: default - key: k8s.namespace.uid value: - stringValue: 4ba3589b-f602-4785-819e-8a3dcacd1630 + stringValue: ec9c3e28-5900-4a19-8673-1849ea3d4822 - key: metric_source value: stringValue: kubernetes @@ -4781,7 +4043,7 @@ resourceMetrics: stringValue: kube-node-lease - key: k8s.namespace.uid value: - stringValue: f2a47b34-b5c7-4128-a5ed-c44f565699c1 + stringValue: e8150282-bdde-4b60-b5da-5258f5acd360 - key: metric_source value: stringValue: kubernetes @@ -4808,7 +4070,7 @@ resourceMetrics: stringValue: kube-public - key: k8s.namespace.uid value: - stringValue: f02e3d04-c1f1-411a-9a0a-1f149482afd3 + stringValue: e85b2621-5db2-409c-8c4b-800a6b0ffda5 - key: metric_source value: stringValue: kubernetes @@ -4835,7 +4097,7 @@ resourceMetrics: stringValue: kube-system - key: k8s.namespace.uid value: - stringValue: b0b4975d-acb4-43e8-86f1-bbc6ca62c3e2 + stringValue: 138057a9-3b09-42fe-88c0-c450ab0c801e - key: metric_source value: stringValue: kubernetes @@ -4862,7 +4124,7 @@ resourceMetrics: stringValue: local-path-storage - key: k8s.namespace.uid value: - stringValue: b3d468c0-309c-4b3e-aac0-8bf09aadf5c9 + stringValue: 43f6f82f-b222-4526-b1e9-f254882a95b3 - key: metric_source value: stringValue: kubernetes @@ -4889,7 +4151,7 @@ resourceMetrics: stringValue: ns-w-exclude - key: k8s.namespace.uid value: - stringValue: e08a2807-4c4d-48b5-899f-12c0b32a78b9 + stringValue: 1552ccba-ac45-4694-ab67-186fe7e3fb91 - key: metric_source value: stringValue: kubernetes @@ -4916,7 +4178,7 @@ resourceMetrics: stringValue: ns-w-index - key: k8s.namespace.uid value: - stringValue: 3af34130-0a0d-4e88-a8d4-fe8cf2bcb311 + stringValue: dcb6c3e6-3e4c-4cc2-9199-d2c0162ce5eb - key: metric_source value: stringValue: kubernetes @@ -4943,7 +4205,7 @@ resourceMetrics: stringValue: ns-wo-index - key: k8s.namespace.uid value: - stringValue: 7cf1f3db-5880-4fb4-a166-2578593e430c + stringValue: 3d3deb73-f969-4042-9ee6-2760ce818ee9 - key: metric_source value: stringValue: kubernetes @@ -4973,7 +4235,7 @@ resourceMetrics: stringValue: cert-manager - key: k8s.deployment.uid value: - stringValue: 84afd614-3de5-4691-96ac-8bacda913b2c + stringValue: 0411cd92-0907-4a24-b0aa-50471f720a3f - key: k8s.namespace.name value: stringValue: cert-manager @@ -5003,7 +4265,7 @@ resourceMetrics: stringValue: cert-manager-cainjector - key: k8s.deployment.uid value: - stringValue: 88675289-566f-41c8-a295-3db78d2e7e35 + stringValue: f3c40b77-bed5-4643-a630-851aa418186a - key: k8s.namespace.name value: stringValue: cert-manager @@ -5033,7 +4295,7 @@ resourceMetrics: stringValue: cert-manager-webhook - key: k8s.deployment.uid value: - stringValue: fa274bc0-d217-48fa-9fd3-01e86f8f7fad + stringValue: 0afc64c5-b327-4611-871d-e9061e984240 - key: k8s.namespace.name value: stringValue: cert-manager @@ -5063,7 +4325,7 @@ resourceMetrics: stringValue: coredns - key: k8s.deployment.uid value: - stringValue: 64cb4d63-166b-4d67-8503-c8b812774849 + stringValue: 01557217-542e-474e-8163-3c904c2ff031 - key: k8s.namespace.name value: stringValue: kube-system @@ -5093,7 +4355,7 @@ resourceMetrics: stringValue: dotnet-test - key: k8s.deployment.uid value: - stringValue: dcd30776-b460-4b44-9d2e-138a98ada628 + stringValue: 6100532a-534f-4b43-9e3f-c04717efc797 - key: k8s.namespace.name value: stringValue: default @@ -5123,7 +4385,7 @@ resourceMetrics: stringValue: java-test - key: k8s.deployment.uid value: - stringValue: db8670fc-b171-452e-90e7-67d5a15e14ad + stringValue: 3bbabf1d-aeee-4015-8c01-f4d41b89fea3 - key: k8s.namespace.name value: stringValue: default @@ -5153,7 +4415,7 @@ resourceMetrics: stringValue: local-path-provisioner - key: k8s.deployment.uid value: - stringValue: 76861dce-4ded-46ab-b8a7-40cc69ffe429 + stringValue: 1ef5c8b1-0c0f-4573-b3b7-c1f8cfb48378 - key: k8s.namespace.name value: stringValue: local-path-storage @@ -5183,7 +4445,7 @@ resourceMetrics: stringValue: nodejs-test - key: k8s.deployment.uid value: - stringValue: 18a08b63-82b5-43e4-bcdd-e3d85c83a717 + stringValue: 91f0e846-8d66-4d2d-8a65-ad0866560012 - key: k8s.namespace.name value: stringValue: default @@ -5213,7 +4475,7 @@ resourceMetrics: stringValue: prometheus-annotation-test - key: k8s.deployment.uid value: - stringValue: 2c68e5b3-5cfe-443c-9d73-436dbb5f6167 + stringValue: 42a2b74d-011e-4076-9ecc-74c483fd78f2 - key: k8s.namespace.name value: stringValue: default @@ -5243,7 +4505,7 @@ resourceMetrics: stringValue: sock-operator - key: k8s.deployment.uid value: - stringValue: 93f83efc-3d07-4324-93d8-86e722f783eb + stringValue: 0ac9fc1b-abf1-487c-bae3-c85c85b215fb - key: k8s.namespace.name value: stringValue: default @@ -5273,7 +4535,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-k8s-cluster-receiver - key: k8s.deployment.uid value: - stringValue: 6df1a35b-f510-4493-b173-685d7b85d362 + stringValue: 25b2563f-f023-40bb-864d-177c08d1c00c - key: k8s.namespace.name value: stringValue: default @@ -5303,7 +4565,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-ta - key: k8s.deployment.uid value: - stringValue: cf406433-9867-4e10-915c-fb9284bb206b + stringValue: fa1fd60a-a693-4842-8cc4-9dd96d675d06 - key: k8s.namespace.name value: stringValue: default @@ -5336,7 +4598,7 @@ resourceMetrics: stringValue: cert-manager - key: k8s.deployment.uid value: - stringValue: 84afd614-3de5-4691-96ac-8bacda913b2c + stringValue: 0411cd92-0907-4a24-b0aa-50471f720a3f - key: k8s.namespace.name value: stringValue: cert-manager @@ -5366,7 +4628,7 @@ resourceMetrics: stringValue: cert-manager-cainjector - key: k8s.deployment.uid value: - stringValue: 88675289-566f-41c8-a295-3db78d2e7e35 + stringValue: f3c40b77-bed5-4643-a630-851aa418186a - key: k8s.namespace.name value: stringValue: cert-manager @@ -5396,7 +4658,7 @@ resourceMetrics: stringValue: cert-manager-webhook - key: k8s.deployment.uid value: - stringValue: fa274bc0-d217-48fa-9fd3-01e86f8f7fad + stringValue: 0afc64c5-b327-4611-871d-e9061e984240 - key: k8s.namespace.name value: stringValue: cert-manager @@ -5426,7 +4688,7 @@ resourceMetrics: stringValue: coredns - key: k8s.deployment.uid value: - stringValue: 64cb4d63-166b-4d67-8503-c8b812774849 + stringValue: 01557217-542e-474e-8163-3c904c2ff031 - key: k8s.namespace.name value: stringValue: kube-system @@ -5456,7 +4718,7 @@ resourceMetrics: stringValue: dotnet-test - key: k8s.deployment.uid value: - stringValue: dcd30776-b460-4b44-9d2e-138a98ada628 + stringValue: 6100532a-534f-4b43-9e3f-c04717efc797 - key: k8s.namespace.name value: stringValue: default @@ -5486,7 +4748,7 @@ resourceMetrics: stringValue: java-test - key: k8s.deployment.uid value: - stringValue: db8670fc-b171-452e-90e7-67d5a15e14ad + stringValue: 3bbabf1d-aeee-4015-8c01-f4d41b89fea3 - key: k8s.namespace.name value: stringValue: default @@ -5516,7 +4778,7 @@ resourceMetrics: stringValue: local-path-provisioner - key: k8s.deployment.uid value: - stringValue: 76861dce-4ded-46ab-b8a7-40cc69ffe429 + stringValue: 1ef5c8b1-0c0f-4573-b3b7-c1f8cfb48378 - key: k8s.namespace.name value: stringValue: local-path-storage @@ -5546,7 +4808,7 @@ resourceMetrics: stringValue: nodejs-test - key: k8s.deployment.uid value: - stringValue: 18a08b63-82b5-43e4-bcdd-e3d85c83a717 + stringValue: 91f0e846-8d66-4d2d-8a65-ad0866560012 - key: k8s.namespace.name value: stringValue: default @@ -5576,7 +4838,7 @@ resourceMetrics: stringValue: prometheus-annotation-test - key: k8s.deployment.uid value: - stringValue: 2c68e5b3-5cfe-443c-9d73-436dbb5f6167 + stringValue: 42a2b74d-011e-4076-9ecc-74c483fd78f2 - key: k8s.namespace.name value: stringValue: default @@ -5606,7 +4868,7 @@ resourceMetrics: stringValue: sock-operator - key: k8s.deployment.uid value: - stringValue: 93f83efc-3d07-4324-93d8-86e722f783eb + stringValue: 0ac9fc1b-abf1-487c-bae3-c85c85b215fb - key: k8s.namespace.name value: stringValue: default @@ -5636,7 +4898,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-k8s-cluster-receiver - key: k8s.deployment.uid value: - stringValue: 6df1a35b-f510-4493-b173-685d7b85d362 + stringValue: 25b2563f-f023-40bb-864d-177c08d1c00c - key: k8s.namespace.name value: stringValue: default @@ -5666,7 +4928,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-ta - key: k8s.deployment.uid value: - stringValue: cf406433-9867-4e10-915c-fb9284bb206b + stringValue: fa1fd60a-a693-4842-8cc4-9dd96d675d06 - key: k8s.namespace.name value: stringValue: default @@ -5702,7 +4964,7 @@ resourceMetrics: stringValue: cert-manager-67c98b89c8 - key: k8s.replicaset.uid value: - stringValue: e48a4238-a1dd-4686-8db5-b0ab4b54011c + stringValue: 7b42f487-280b-430a-b670-ef8f7795c516 - key: metric_source value: stringValue: kubernetes @@ -5732,7 +4994,7 @@ resourceMetrics: stringValue: cert-manager-cainjector-5c5695d979 - key: k8s.replicaset.uid value: - stringValue: ca831cab-9570-4468-8558-2ea92f38eac5 + stringValue: 1d8e77d4-b9be-45d2-b4e0-eea4fffcdacd - key: metric_source value: stringValue: kubernetes @@ -5762,7 +5024,7 @@ resourceMetrics: stringValue: cert-manager-webhook-7f9f8648b9 - key: k8s.replicaset.uid value: - stringValue: bd91aa16-e67d-474d-8866-1f2eedfc773a + stringValue: 42043811-fc43-4ad0-87a3-d747d51c350f - key: metric_source value: stringValue: kubernetes @@ -5789,10 +5051,10 @@ resourceMetrics: stringValue: default - key: k8s.replicaset.name value: - stringValue: dotnet-test-799469547f + stringValue: dotnet-test-5479c475fc - key: k8s.replicaset.uid value: - stringValue: 5293e96b-4670-4f7e-9cfc-a8f687994d2f + stringValue: e7be52a8-2517-412c-b27a-6294600ee83e - key: metric_source value: stringValue: kubernetes @@ -5819,10 +5081,10 @@ resourceMetrics: stringValue: default - key: k8s.replicaset.name value: - stringValue: java-test-566495f78 + stringValue: java-test-5c4d6479b8 - key: k8s.replicaset.uid value: - stringValue: e760c766-7755-4cc1-a915-ccf4bfd2aa3c + stringValue: ba3559c4-273c-44ee-aedf-ade722b9b2e3 - key: metric_source value: stringValue: kubernetes @@ -5849,10 +5111,10 @@ resourceMetrics: stringValue: default - key: k8s.replicaset.name value: - stringValue: nodejs-test-d454cf769 + stringValue: nodejs-test-56b74df9ff - key: k8s.replicaset.uid value: - stringValue: 377eeda1-e623-4fd2-94c4-ae8823300c2f + stringValue: f6207697-49cc-40af-b3ac-f97f228b0025 - key: metric_source value: stringValue: kubernetes @@ -5879,10 +5141,10 @@ resourceMetrics: stringValue: default - key: k8s.replicaset.name value: - stringValue: prometheus-annotation-test-6c5444b75 + stringValue: prometheus-annotation-test-cfc77c7b9 - key: k8s.replicaset.uid value: - stringValue: 6b21c3bb-5772-4ebd-8bbd-a16ce95abcb6 + stringValue: b93b7ff1-5ecf-49d3-af69-8df26c73d3e8 - key: metric_source value: stringValue: kubernetes @@ -5909,10 +5171,10 @@ resourceMetrics: stringValue: default - key: k8s.replicaset.name value: - stringValue: sock-operator-786c6c9777 + stringValue: sock-operator-768dffbcb8 - key: k8s.replicaset.uid value: - stringValue: 820037d0-6c7d-4531-baae-fef7561a6992 + stringValue: 86862db6-a9f6-433f-9dff-cfcad25b822e - key: metric_source value: stringValue: kubernetes @@ -5939,10 +5201,10 @@ resourceMetrics: stringValue: default - key: k8s.replicaset.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-75d89f6cbf + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95 - key: k8s.replicaset.uid value: - stringValue: 6c098ad7-7e5e-4437-87b7-a0a6599ad568 + stringValue: ed48b4b4-1bf7-4a60-9b69-543007ef27bc - key: metric_source value: stringValue: kubernetes @@ -5969,10 +5231,10 @@ resourceMetrics: stringValue: default - key: k8s.replicaset.name value: - stringValue: sock-splunk-otel-collector-ta-548cccf49d + stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4 - key: k8s.replicaset.uid value: - stringValue: 921bd4d4-0e0a-486c-a9a9-ee645bb07315 + stringValue: b2d75e9f-1de8-4549-91ca-4ff6f282c319 - key: metric_source value: stringValue: kubernetes @@ -5999,10 +5261,10 @@ resourceMetrics: stringValue: kube-system - key: k8s.replicaset.name value: - stringValue: coredns-5dd5756b68 + stringValue: coredns-76f75df574 - key: k8s.replicaset.uid value: - stringValue: 0497ba4a-e6cf-4f17-80b5-99aecbe19a0e + stringValue: af56eca2-a6ec-485b-8547-f065708c4887 - key: metric_source value: stringValue: kubernetes @@ -6032,7 +5294,7 @@ resourceMetrics: stringValue: local-path-provisioner-6f8956fb48 - key: k8s.replicaset.uid value: - stringValue: 7091c3bd-305b-495f-a7f4-a54566cb53f6 + stringValue: bc94f22c-80e8-4eaa-8ee2-f7c1109a5ffc - key: metric_source value: stringValue: kubernetes @@ -6065,7 +5327,7 @@ resourceMetrics: stringValue: cert-manager-67c98b89c8 - key: k8s.replicaset.uid value: - stringValue: e48a4238-a1dd-4686-8db5-b0ab4b54011c + stringValue: 7b42f487-280b-430a-b670-ef8f7795c516 - key: metric_source value: stringValue: kubernetes @@ -6095,7 +5357,7 @@ resourceMetrics: stringValue: cert-manager-cainjector-5c5695d979 - key: k8s.replicaset.uid value: - stringValue: ca831cab-9570-4468-8558-2ea92f38eac5 + stringValue: 1d8e77d4-b9be-45d2-b4e0-eea4fffcdacd - key: metric_source value: stringValue: kubernetes @@ -6125,7 +5387,7 @@ resourceMetrics: stringValue: cert-manager-webhook-7f9f8648b9 - key: k8s.replicaset.uid value: - stringValue: bd91aa16-e67d-474d-8866-1f2eedfc773a + stringValue: 42043811-fc43-4ad0-87a3-d747d51c350f - key: metric_source value: stringValue: kubernetes @@ -6152,10 +5414,10 @@ resourceMetrics: stringValue: default - key: k8s.replicaset.name value: - stringValue: dotnet-test-799469547f + stringValue: dotnet-test-5479c475fc - key: k8s.replicaset.uid value: - stringValue: 5293e96b-4670-4f7e-9cfc-a8f687994d2f + stringValue: e7be52a8-2517-412c-b27a-6294600ee83e - key: metric_source value: stringValue: kubernetes @@ -6182,10 +5444,10 @@ resourceMetrics: stringValue: default - key: k8s.replicaset.name value: - stringValue: java-test-566495f78 + stringValue: java-test-5c4d6479b8 - key: k8s.replicaset.uid value: - stringValue: e760c766-7755-4cc1-a915-ccf4bfd2aa3c + stringValue: ba3559c4-273c-44ee-aedf-ade722b9b2e3 - key: metric_source value: stringValue: kubernetes @@ -6212,10 +5474,10 @@ resourceMetrics: stringValue: default - key: k8s.replicaset.name value: - stringValue: nodejs-test-d454cf769 + stringValue: nodejs-test-56b74df9ff - key: k8s.replicaset.uid value: - stringValue: 377eeda1-e623-4fd2-94c4-ae8823300c2f + stringValue: f6207697-49cc-40af-b3ac-f97f228b0025 - key: metric_source value: stringValue: kubernetes @@ -6242,10 +5504,10 @@ resourceMetrics: stringValue: default - key: k8s.replicaset.name value: - stringValue: prometheus-annotation-test-6c5444b75 + stringValue: prometheus-annotation-test-cfc77c7b9 - key: k8s.replicaset.uid value: - stringValue: 6b21c3bb-5772-4ebd-8bbd-a16ce95abcb6 + stringValue: b93b7ff1-5ecf-49d3-af69-8df26c73d3e8 - key: metric_source value: stringValue: kubernetes @@ -6272,10 +5534,10 @@ resourceMetrics: stringValue: default - key: k8s.replicaset.name value: - stringValue: sock-operator-786c6c9777 + stringValue: sock-operator-768dffbcb8 - key: k8s.replicaset.uid value: - stringValue: 820037d0-6c7d-4531-baae-fef7561a6992 + stringValue: 86862db6-a9f6-433f-9dff-cfcad25b822e - key: metric_source value: stringValue: kubernetes @@ -6302,10 +5564,10 @@ resourceMetrics: stringValue: default - key: k8s.replicaset.name value: - stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-75d89f6cbf + stringValue: sock-splunk-otel-collector-k8s-cluster-receiver-dfc7f4c95 - key: k8s.replicaset.uid value: - stringValue: 6c098ad7-7e5e-4437-87b7-a0a6599ad568 + stringValue: ed48b4b4-1bf7-4a60-9b69-543007ef27bc - key: metric_source value: stringValue: kubernetes @@ -6332,10 +5594,10 @@ resourceMetrics: stringValue: default - key: k8s.replicaset.name value: - stringValue: sock-splunk-otel-collector-ta-548cccf49d + stringValue: sock-splunk-otel-collector-ta-7f6c9fdf4 - key: k8s.replicaset.uid value: - stringValue: 921bd4d4-0e0a-486c-a9a9-ee645bb07315 + stringValue: b2d75e9f-1de8-4549-91ca-4ff6f282c319 - key: metric_source value: stringValue: kubernetes @@ -6362,10 +5624,10 @@ resourceMetrics: stringValue: kube-system - key: k8s.replicaset.name value: - stringValue: coredns-5dd5756b68 + stringValue: coredns-76f75df574 - key: k8s.replicaset.uid value: - stringValue: 0497ba4a-e6cf-4f17-80b5-99aecbe19a0e + stringValue: af56eca2-a6ec-485b-8547-f065708c4887 - key: metric_source value: stringValue: kubernetes @@ -6395,7 +5657,7 @@ resourceMetrics: stringValue: local-path-provisioner-6f8956fb48 - key: k8s.replicaset.uid value: - stringValue: 7091c3bd-305b-495f-a7f4-a54566cb53f6 + stringValue: bc94f22c-80e8-4eaa-8ee2-f7c1109a5ffc - key: metric_source value: stringValue: kubernetes @@ -6425,7 +5687,7 @@ resourceMetrics: stringValue: kindnet - key: k8s.daemonset.uid value: - stringValue: f46f165e-b5b3-42dd-bf87-7df93a773b5c + stringValue: 2415753e-2368-49e3-af97-0f97ed8328d7 - key: k8s.namespace.name value: stringValue: kube-system @@ -6455,7 +5717,7 @@ resourceMetrics: stringValue: kube-proxy - key: k8s.daemonset.uid value: - stringValue: 91eef43a-1652-4fb1-9875-bf9cee550305 + stringValue: 708ab381-ee91-4714-9baf-a934e69aaf04 - key: k8s.namespace.name value: stringValue: kube-system @@ -6485,7 +5747,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-agent - key: k8s.daemonset.uid value: - stringValue: f2c537b4-f840-4642-89e0-316cbbf9b3ff + stringValue: 524dde1d-442c-45d0-ba4e-cdd483ed7e59 - key: k8s.namespace.name value: stringValue: default @@ -6518,7 +5780,7 @@ resourceMetrics: stringValue: kindnet - key: k8s.daemonset.uid value: - stringValue: f46f165e-b5b3-42dd-bf87-7df93a773b5c + stringValue: 2415753e-2368-49e3-af97-0f97ed8328d7 - key: k8s.namespace.name value: stringValue: kube-system @@ -6548,7 +5810,7 @@ resourceMetrics: stringValue: kube-proxy - key: k8s.daemonset.uid value: - stringValue: 91eef43a-1652-4fb1-9875-bf9cee550305 + stringValue: 708ab381-ee91-4714-9baf-a934e69aaf04 - key: k8s.namespace.name value: stringValue: kube-system @@ -6578,7 +5840,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-agent - key: k8s.daemonset.uid value: - stringValue: f2c537b4-f840-4642-89e0-316cbbf9b3ff + stringValue: 524dde1d-442c-45d0-ba4e-cdd483ed7e59 - key: k8s.namespace.name value: stringValue: default @@ -6611,7 +5873,7 @@ resourceMetrics: stringValue: kindnet - key: k8s.daemonset.uid value: - stringValue: f46f165e-b5b3-42dd-bf87-7df93a773b5c + stringValue: 2415753e-2368-49e3-af97-0f97ed8328d7 - key: k8s.namespace.name value: stringValue: kube-system @@ -6641,7 +5903,7 @@ resourceMetrics: stringValue: kube-proxy - key: k8s.daemonset.uid value: - stringValue: 91eef43a-1652-4fb1-9875-bf9cee550305 + stringValue: 708ab381-ee91-4714-9baf-a934e69aaf04 - key: k8s.namespace.name value: stringValue: kube-system @@ -6671,7 +5933,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-agent - key: k8s.daemonset.uid value: - stringValue: f2c537b4-f840-4642-89e0-316cbbf9b3ff + stringValue: 524dde1d-442c-45d0-ba4e-cdd483ed7e59 - key: k8s.namespace.name value: stringValue: default @@ -6704,7 +5966,7 @@ resourceMetrics: stringValue: kindnet - key: k8s.daemonset.uid value: - stringValue: f46f165e-b5b3-42dd-bf87-7df93a773b5c + stringValue: 2415753e-2368-49e3-af97-0f97ed8328d7 - key: k8s.namespace.name value: stringValue: kube-system @@ -6734,7 +5996,7 @@ resourceMetrics: stringValue: kube-proxy - key: k8s.daemonset.uid value: - stringValue: 91eef43a-1652-4fb1-9875-bf9cee550305 + stringValue: 708ab381-ee91-4714-9baf-a934e69aaf04 - key: k8s.namespace.name value: stringValue: kube-system @@ -6764,7 +6026,7 @@ resourceMetrics: stringValue: sock-splunk-otel-collector-agent - key: k8s.daemonset.uid value: - stringValue: f2c537b4-f840-4642-89e0-316cbbf9b3ff + stringValue: 524dde1d-442c-45d0-ba4e-cdd483ed7e59 - key: k8s.namespace.name value: stringValue: default @@ -6797,7 +6059,7 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.node.uid value: - stringValue: 70c71715-f58d-48b6-b5c3-b2f65a001dde + stringValue: 15985013-7564-45b7-a2ae-3b5f5d9b93e5 - key: metric_source value: stringValue: kubernetes diff --git a/functional_tests/testdata/expected_kind_values/expected_dotnet_traces.yaml b/functional_tests/testdata/expected_kind_values/expected_dotnet_traces.yaml index c9e825cfde..6c8f7ab793 100644 --- a/functional_tests/testdata/expected_kind_values/expected_dotnet_traces.yaml +++ b/functional_tests/testdata/expected_kind_values/expected_dotnet_traces.yaml @@ -3,13 +3,13 @@ resourceSpans: attributes: - key: splunk.distro.version value: - stringValue: 1.7.0 + stringValue: 1.8.0 - key: telemetry.distro.name value: stringValue: splunk-otel-dotnet - key: telemetry.distro.version value: - stringValue: 1.7.0 + stringValue: 1.8.0 - key: os.type value: stringValue: linux @@ -18,7 +18,7 @@ resourceSpans: stringValue: Alpine Linux v3.19 - key: os.build_id value: - stringValue: 6.8.0-1014-azure + stringValue: 6.10.14-linuxkit - key: os.name value: stringValue: Alpine Linux @@ -45,7 +45,7 @@ resourceSpans: stringValue: 8.0.3 - key: container.id value: - stringValue: 66462f58bce1e69e6badf3bd51a4cae560f578e09571acc36810eb0c757dc07e + stringValue: 2cddc8bca4ee39b99dbceddfb87c2816bc255d62105fd0684b8441c1ba1bb032 - key: telemetry.sdk.name value: stringValue: opentelemetry @@ -60,7 +60,7 @@ resourceSpans: stringValue: dotnet-test - key: splunk.zc.method value: - stringValue: splunk-otel-dotnet:v1.7.0 + stringValue: splunk-otel-dotnet:v1.8.0 - key: k8s.container.name value: stringValue: dotnet-test @@ -75,19 +75,22 @@ resourceSpans: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: dotnet-test-7fd7cfb786-v88nj + stringValue: dotnet-test-5479c475fc-xfq6h - key: k8s.replicaset.name value: - stringValue: dotnet-test-7fd7cfb786 + stringValue: dotnet-test-5479c475fc + - key: service.instance.id + value: + stringValue: default.dotnet-test-5479c475fc-xfq6h.dotnet-test - key: service.version value: stringValue: latest - key: k8s.pod.ip value: - stringValue: 10.244.0.12 + stringValue: 10.244.0.35 - key: k8s.pod.uid value: - stringValue: df2380bb-dbf2-4b95-a71a-bb1a865042d9 + stringValue: 6063a76c-a33f-4bc4-9f45-5d4634d5ee2f - key: k8s.pod.labels.app value: stringValue: dotnet-test @@ -142,15 +145,15 @@ resourceSpans: - key: http.response.status_code value: intValue: "200" - endTimeUnixNano: "1727807785128888700" + endTimeUnixNano: "1736397260127721500" flags: 769 kind: 2 name: GET / parentSpanId: "" - spanId: 31108acc858f2148 - startTimeUnixNano: "1727807785128666300" + spanId: 68d682aca4683031 + startTimeUnixNano: "1736397260126572600" status: {} - traceId: ce9cd16f34d3616afd09e44c4628b75d + traceId: 7793d37e4f80ad6044f69b76d5a1f133 - attributes: - key: server.address value: @@ -176,15 +179,15 @@ resourceSpans: - key: http.response.status_code value: intValue: "200" - endTimeUnixNano: "1727807786129946900" + endTimeUnixNano: "1736397261137453200" flags: 769 kind: 2 name: GET / parentSpanId: "" - spanId: 517249132e5cf8ce - startTimeUnixNano: "1727807786129653900" + spanId: 711fa6975e0e8f44 + startTimeUnixNano: "1736397261135556000" status: {} - traceId: 816456d9759a79719c07c4ad88d07704 + traceId: 0d313e324befe48cc88f09e5e5bf3d25 - attributes: - key: server.address value: @@ -210,15 +213,15 @@ resourceSpans: - key: http.response.status_code value: intValue: "200" - endTimeUnixNano: "1727807787131099300" + endTimeUnixNano: "1736397262168718400" flags: 769 kind: 2 name: GET / parentSpanId: "" - spanId: 318c67cd44774f1d - startTimeUnixNano: "1727807787130851000" + spanId: bf3f028b17c95f10 + startTimeUnixNano: "1736397262149689400" status: {} - traceId: ea5610d4f2c4d95b19ae2de6ca99841e + traceId: 21ad12bd014be61ac8c2d7d5dbc16a6f - attributes: - key: server.address value: @@ -244,15 +247,15 @@ resourceSpans: - key: http.response.status_code value: intValue: "200" - endTimeUnixNano: "1727807788132273200" + endTimeUnixNano: "1736397263171261500" flags: 769 kind: 2 name: GET / parentSpanId: "" - spanId: e81aafb08463c8d3 - startTimeUnixNano: "1727807788132032800" + spanId: 4e61e74903f07f0d + startTimeUnixNano: "1736397263170709600" status: {} - traceId: 58b393232007b5c9969b7f14e3b724eb + traceId: fb2460a9f91bf865f0e14ccd42c1faf4 - attributes: - key: server.address value: @@ -278,15 +281,15 @@ resourceSpans: - key: http.response.status_code value: intValue: "200" - endTimeUnixNano: "1727807789133394300" + endTimeUnixNano: "1736397264178789800" flags: 769 kind: 2 name: GET / parentSpanId: "" - spanId: 46b3491b73f3cdd5 - startTimeUnixNano: "1727807789133067800" + spanId: d9019541eb6268d3 + startTimeUnixNano: "1736397264177741000" status: {} - traceId: fe1b7b58ca8832523a6f6bdfc7111297 + traceId: d4a76f55aa09c0f484537f8c71db770a - scope: name: System.Net.Http spans: @@ -309,15 +312,15 @@ resourceSpans: - key: http.response.status_code value: intValue: "200" - endTimeUnixNano: "1727807785128911400" + endTimeUnixNano: "1736397260128340800" flags: 257 kind: 3 name: GET parentSpanId: "" - spanId: 9973276344d39e0a - startTimeUnixNano: "1727807785128450300" + spanId: d12a4bf91e087496 + startTimeUnixNano: "1736397260125453400" status: {} - traceId: ce9cd16f34d3616afd09e44c4628b75d + traceId: 7793d37e4f80ad6044f69b76d5a1f133 - attributes: - key: http.request.method value: @@ -337,15 +340,15 @@ resourceSpans: - key: http.response.status_code value: intValue: "200" - endTimeUnixNano: "1727807786130112300" + endTimeUnixNano: "1736397261137033900" flags: 257 kind: 3 name: GET parentSpanId: "" - spanId: 39672ff972cb5645 - startTimeUnixNano: "1727807786129389800" + spanId: 4855c9c1b7ee6d95 + startTimeUnixNano: "1736397261132354800" status: {} - traceId: 816456d9759a79719c07c4ad88d07704 + traceId: 0d313e324befe48cc88f09e5e5bf3d25 - attributes: - key: http.request.method value: @@ -365,15 +368,15 @@ resourceSpans: - key: http.response.status_code value: intValue: "200" - endTimeUnixNano: "1727807787131368300" + endTimeUnixNano: "1736397262158260200" flags: 257 kind: 3 name: GET parentSpanId: "" - spanId: 37cc2176bac85907 - startTimeUnixNano: "1727807787130672200" + spanId: 5d82ea96efad0603 + startTimeUnixNano: "1736397262142078100" status: {} - traceId: ea5610d4f2c4d95b19ae2de6ca99841e + traceId: 21ad12bd014be61ac8c2d7d5dbc16a6f - attributes: - key: http.request.method value: @@ -393,15 +396,15 @@ resourceSpans: - key: http.response.status_code value: intValue: "200" - endTimeUnixNano: "1727807788132407800" + endTimeUnixNano: "1736397263171362000" flags: 257 kind: 3 name: GET parentSpanId: "" - spanId: ab1251eadd532e02 - startTimeUnixNano: "1727807788131789800" + spanId: 6c513a95d5051993 + startTimeUnixNano: "1736397263169900600" status: {} - traceId: 58b393232007b5c9969b7f14e3b724eb + traceId: fb2460a9f91bf865f0e14ccd42c1faf4 - attributes: - key: http.request.method value: @@ -421,12 +424,12 @@ resourceSpans: - key: http.response.status_code value: intValue: "200" - endTimeUnixNano: "1727807789133486500" + endTimeUnixNano: "1736397264179404000" flags: 257 kind: 3 name: GET parentSpanId: "" - spanId: 9f4c3f7b28b30de1 - startTimeUnixNano: "1727807789132858200" + spanId: 805d744cc1048960 + startTimeUnixNano: "1736397264173926600" status: {} - traceId: fe1b7b58ca8832523a6f6bdfc7111297 + traceId: d4a76f55aa09c0f484537f8c71db770a diff --git a/functional_tests/testdata/expected_kind_values/expected_hostmetrics_metrics.yaml b/functional_tests/testdata/expected_kind_values/expected_hostmetrics_metrics.yaml deleted file mode 100644 index 2b036f56d3..0000000000 --- a/functional_tests/testdata/expected_kind_values/expected_hostmetrics_metrics.yaml +++ /dev/null @@ -1,6638 +0,0 @@ -resourceMetrics: - - resource: {} - scopeMetrics: - - metrics: - - name: system.network.errors - sum: - aggregationTemporality: 2 - dataPoints: - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: erspan0 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: erspan0 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: eth0 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: eth0 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: gre0 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: gre0 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: gretap0 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: gretap0 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: ip6_vti0 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: ip6_vti0 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: ip6gre0 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: ip6gre0 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: ip6tnl0 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: ip6tnl0 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: ip_vti0 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: ip_vti0 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: lo - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: lo - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: sit0 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: sit0 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: tunl0 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: tunl0 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth1e913d8a - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth1e913d8a - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth2225d150 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth2225d150 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth2d9ec93e - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth2d9ec93e - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth2f51a925 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth2f51a925 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth354cdbdd - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth354cdbdd - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth463f90e2 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth463f90e2 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth509b126a - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth509b126a - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth57daa14a - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth57daa14a - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth5fd44bce - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth5fd44bce - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth69e8787b - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth69e8787b - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth825660a6 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth825660a6 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth936e0af8 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth936e0af8 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth9607eeb8 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth9607eeb8 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth9e0a3c2a - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth9e0a3c2a - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vethcc50f106 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vethcc50f106 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vethd25e2456 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vethd25e2456 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vethd706a88f - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vethd706a88f - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vethdabe0ec3 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vethdabe0ec3 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vethf102b532 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vethf102b532 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - isMonotonic: true - - name: system.network.io - sum: - aggregationTemporality: 2 - dataPoints: - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: erspan0 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: erspan0 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "493520958" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: eth0 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "377657541" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: eth0 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: gre0 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: gre0 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: gretap0 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: gretap0 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: ip6_vti0 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: ip6_vti0 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: ip6gre0 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: ip6gre0 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: ip6tnl0 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: ip6tnl0 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: ip_vti0 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: ip_vti0 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "396045583" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: lo - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "396045583" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: lo - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: sit0 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: sit0 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: tunl0 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: tunl0 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "656" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth1e913d8a - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "446" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth1e913d8a - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "1342091" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth2225d150 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "2878038" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth2225d150 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "656" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth2d9ec93e - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "446" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth2d9ec93e - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "10873848" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth2f51a925 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "5815402" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth2f51a925 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "586" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth354cdbdd - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "446" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth354cdbdd - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "16030" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth463f90e2 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "1858" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth463f90e2 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "30608" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth509b126a - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "2101" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth509b126a - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "10822944" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth57daa14a - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "5777953" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth57daa14a - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "656" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth5fd44bce - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "446" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth5fd44bce - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "53631" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth69e8787b - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "9163" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth69e8787b - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "656" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth825660a6 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "446" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth825660a6 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "47578" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth936e0af8 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "103219" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth936e0af8 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "42221" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth9607eeb8 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "2480" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth9607eeb8 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "656" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth9e0a3c2a - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "446" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: veth9e0a3c2a - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "970862" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vethcc50f106 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "8288857" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vethcc50f106 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "32051" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vethd25e2456 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "183344" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vethd25e2456 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "996902" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vethd706a88f - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "1017701" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vethd706a88f - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "15559" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vethdabe0ec3 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "335312" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vethdabe0ec3 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "2820952" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vethf102b532 - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "1823820" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vethf102b532 - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - isMonotonic: true - - name: system.network.packets.total - sum: - aggregationTemporality: 2 - dataPoints: - - asInt: "1215764" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "1234588" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - isMonotonic: true - - name: system.network.io.total - sum: - aggregationTemporality: 2 - dataPoints: - - asInt: "917635684" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: direction - value: - stringValue: receive - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "799945048" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: direction - value: - stringValue: transmit - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - isMonotonic: true - - name: network.total - sum: - aggregationTemporality: 2 - dataPoints: - - asInt: "1717580732" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - isMonotonic: true - - gauge: - dataPoints: - - asDouble: 3.5806987057057404 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - name: cpu.utilization - - gauge: - dataPoints: - - asInt: "10" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - name: cpu.num_processors - - name: cpu.idle - sum: - aggregationTemporality: 2 - dataPoints: - - asInt: "856153596" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - isMonotonic: true - - gauge: - dataPoints: - - asInt: "46328107008" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: ro - - key: mountpoint - value: - stringValue: /conf - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: free - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asInt: "95336374272" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: ro - - key: mountpoint - value: - stringValue: /conf - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: used - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asInt: "46328107008" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: ro - - key: mountpoint - value: - stringValue: /var/lib/docker/containers - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: free - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asInt: "95336374272" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: ro - - key: mountpoint - value: - stringValue: /var/lib/docker/containers - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: used - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asInt: "46328107008" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: ro - - key: mountpoint - value: - stringValue: /var/log - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: free - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asInt: "95336374272" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: ro - - key: mountpoint - value: - stringValue: /var/log - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: used - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asInt: "46328107008" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /dev/termination-log - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: free - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asInt: "95336374272" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /dev/termination-log - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: used - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asInt: "46328107008" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /etc/hostname - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: free - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asInt: "95336374272" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /etc/hostname - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: used - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asInt: "46328107008" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /etc/hosts - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: free - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asInt: "95336374272" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /etc/hosts - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: used - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asInt: "46328107008" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /etc/resolv.conf - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: free - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asInt: "95336374272" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /etc/resolv.conf - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: used - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asInt: "46328107008" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /hostfs/etc/hostname - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: free - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asInt: "95336374272" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /hostfs/etc/hostname - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: used - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asInt: "46328107008" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /hostfs/etc/hosts - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: free - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asInt: "95336374272" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /hostfs/etc/hosts - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: used - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asInt: "46328107008" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /hostfs/etc/resolv.conf - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: free - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asInt: "95336374272" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /hostfs/etc/resolv.conf - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: used - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asInt: "46328107008" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /usr/lib/splunk-otel-collector/agent-bundle/run/collectd - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: free - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asInt: "95336374272" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /usr/lib/splunk-otel-collector/agent-bundle/run/collectd - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: used - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asInt: "46328107008" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /var/addon/splunk/otel_pos - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: free - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asInt: "95336374272" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /var/addon/splunk/otel_pos - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: used - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - name: system.filesystem.usage - - gauge: - dataPoints: - - asDouble: 67.29730233760398 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: ro - - key: mountpoint - value: - stringValue: /conf - - key: os.type - value: - stringValue: linux - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asDouble: 67.29730233760398 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: ro - - key: mountpoint - value: - stringValue: /var/lib/docker/containers - - key: os.type - value: - stringValue: linux - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asDouble: 67.29730233760398 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: ro - - key: mountpoint - value: - stringValue: /var/log - - key: os.type - value: - stringValue: linux - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asDouble: 67.29730233760398 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /dev/termination-log - - key: os.type - value: - stringValue: linux - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asDouble: 67.29730233760398 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /etc/hostname - - key: os.type - value: - stringValue: linux - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asDouble: 67.29730233760398 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /etc/hosts - - key: os.type - value: - stringValue: linux - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asDouble: 67.29730233760398 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /etc/resolv.conf - - key: os.type - value: - stringValue: linux - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asDouble: 67.29730233760398 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /hostfs/etc/hostname - - key: os.type - value: - stringValue: linux - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asDouble: 67.29730233760398 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /hostfs/etc/hosts - - key: os.type - value: - stringValue: linux - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asDouble: 67.29730233760398 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /hostfs/etc/resolv.conf - - key: os.type - value: - stringValue: linux - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asDouble: 67.29730233760398 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /usr/lib/splunk-otel-collector/agent-bundle/run/collectd - - key: os.type - value: - stringValue: linux - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - - asDouble: 67.29730233760398 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: /dev/vda1 - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: mode - value: - stringValue: rw - - key: mountpoint - value: - stringValue: /var/addon/splunk/otel_pos - - key: os.type - value: - stringValue: linux - - key: type - value: - stringValue: ext4 - timeUnixNano: "1000000" - name: disk.utilization - - gauge: - dataPoints: - - asDouble: 67.29730233760398 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - name: disk.summary_utilization - - name: system.paging.operations - sum: - aggregationTemporality: 2 - dataPoints: - - asInt: "36292501504" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: direction - value: - stringValue: page_in - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - - key: type - value: - stringValue: major - timeUnixNano: "1000000" - - asInt: "80193785856" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: direction - value: - stringValue: page_out - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - - key: type - value: - stringValue: major - timeUnixNano: "1000000" - isMonotonic: true - - name: vmpage_io.swap.in - sum: - aggregationTemporality: 2 - dataPoints: - - asInt: "8860474" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - isMonotonic: true - - name: vmpage_io.swap.out - sum: - aggregationTemporality: 2 - dataPoints: - - asInt: "19578561" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - isMonotonic: true - - gauge: - dataPoints: - - asDouble: 4.14 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - name: system.cpu.load_average.15m - - gauge: - dataPoints: - - asDouble: 4.07 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - name: system.cpu.load_average.1m - - gauge: - dataPoints: - - asDouble: 4.09 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - name: system.cpu.load_average.5m - - gauge: - dataPoints: - - asInt: "545402880" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: buffered - timeUnixNano: "1000000" - - asInt: "6886641664" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: cached - timeUnixNano: "1000000" - - asInt: "1949896704" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: free - timeUnixNano: "1000000" - - asInt: "326721536" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: slab_reclaimable - timeUnixNano: "1000000" - - asInt: "123252736" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: slab_unreclaimable - timeUnixNano: "1000000" - - asInt: "3151261696" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - - key: state - value: - stringValue: used - timeUnixNano: "1000000" - name: system.memory.usage - - gauge: - dataPoints: - - asInt: "12533202944" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - name: memory.total - - gauge: - dataPoints: - - asDouble: 25.143307022795785 - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - name: memory.utilization - - name: system.disk.operations - sum: - aggregationTemporality: 2 - dataPoints: - - asInt: "6109379" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vda - - key: direction - value: - stringValue: read - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "15016995" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vda - - key: direction - value: - stringValue: write - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "6109308" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vda1 - - key: direction - value: - stringValue: read - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "15016995" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vda1 - - key: direction - value: - stringValue: write - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "93544" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vdb - - key: direction - value: - stringValue: read - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vdb - - key: direction - value: - stringValue: write - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "246351" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vdc - - key: direction - value: - stringValue: read - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "0" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: device - value: - stringValue: vdc - - key: direction - value: - stringValue: write - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - isMonotonic: true - - name: system.disk.operations.total - sum: - aggregationTemporality: 2 - dataPoints: - - asInt: "12558582" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: direction - value: - stringValue: read - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "30033990" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: direction - value: - stringValue: write - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - isMonotonic: true - - name: system.disk.io.total - sum: - aggregationTemporality: 2 - dataPoints: - - asInt: "170574985216" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: direction - value: - stringValue: read - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - - asInt: "398679777280" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: direction - value: - stringValue: write - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - isMonotonic: true - - gauge: - dataPoints: - - asInt: "674" - attributes: - - key: cluster_name - value: - stringValue: ci-k8s-cluster - - key: customfield1 - value: - stringValue: customvalue1 - - key: customfield2 - value: - stringValue: customvalue2 - - key: deployment.environment - value: - stringValue: dev - - key: host.name - value: - stringValue: kind-control-plane - - key: k8s.cluster.name - value: - stringValue: dev-operator - - key: k8s.node.name - value: - stringValue: kind-control-plane - - key: os.type - value: - stringValue: linux - timeUnixNano: "1000000" - name: disk_ops.total - scope: {} diff --git a/functional_tests/testdata/expected_kind_values/expected_internal_metrics.yaml b/functional_tests/testdata/expected_kind_values/expected_internal_metrics.yaml index 38435e578d..086a28bf57 100644 --- a/functional_tests/testdata/expected_kind_values/expected_internal_metrics.yaml +++ b/functional_tests/testdata/expected_kind_values/expected_internal_metrics.yaml @@ -4,7 +4,7 @@ resourceMetrics: - metrics: - gauge: dataPoints: - - asDouble: 2 + - asDouble: 27 attributes: - key: cluster_name value: @@ -32,50 +32,44 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - name: otelcol_fileconsumer_reading_files - - name: otelcol_otelsvc_k8s_pod_updated + name: otelcol_fileconsumer_open_files + - name: otelcol_otelsvc_k8s_namespace_deleted sum: aggregationTemporality: 2 dataPoints: - - asDouble: 112 + - asDouble: 12 attributes: - key: cluster_name value: @@ -103,50 +97,44 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" isMonotonic: true - - name: otelcol_process_uptime + - name: otelcol_otelsvc_k8s_namespace_updated sum: aggregationTemporality: 2 dataPoints: - - asDouble: 110.707364179 + - asDouble: 12 attributes: - key: cluster_name value: @@ -174,48 +162,44 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" isMonotonic: true - - gauge: + - name: otelcol_processor_outgoing_items + sum: + aggregationTemporality: 2 dataPoints: - - asDouble: 0 + - asDouble: 1691 attributes: - key: cluster_name value: @@ -226,12 +210,6 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 - - key: data_type - value: - stringValue: logs - - key: exporter - value: - stringValue: otlphttp/entities - key: host.name value: stringValue: kind-control-plane @@ -249,45 +227,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: otel_signal + value: + stringValue: logs + - key: processor value: - stringValue: 172.18.0.2 + stringValue: filter/logs - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 1817 attributes: - key: cluster_name value: @@ -298,12 +276,6 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 - - key: data_type - value: - stringValue: logs - - key: exporter - value: - stringValue: splunk_hec/platform_logs - key: host.name value: stringValue: kind-control-plane @@ -321,45 +293,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: otel_signal value: - stringValue: 172.18.0.2 + stringValue: logs + - key: processor + value: + stringValue: k8sattributes - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 2463 attributes: - key: cluster_name value: @@ -370,12 +342,6 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 - - key: data_type - value: - stringValue: metrics - - key: exporter - value: - stringValue: signalfx - key: host.name value: stringValue: kind-control-plane @@ -393,45 +359,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: otel_signal + value: + stringValue: logs + - key: processor value: - stringValue: 172.18.0.2 + stringValue: memory_limiter - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 2337 attributes: - key: cluster_name value: @@ -442,12 +408,6 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 - - key: data_type - value: - stringValue: metrics - - key: exporter - value: - stringValue: splunk_hec/platform_metrics - key: host.name value: stringValue: kind-control-plane @@ -465,45 +425,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: otel_signal + value: + stringValue: logs + - key: processor value: - stringValue: 172.18.0.2 + stringValue: resource - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 2337 attributes: - key: cluster_name value: @@ -514,12 +474,6 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 - - key: data_type - value: - stringValue: traces - - key: exporter - value: - stringValue: otlp - key: host.name value: stringValue: kind-control-plane @@ -537,50 +491,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: otel_signal + value: + stringValue: logs + - key: processor value: - stringValue: 172.18.0.2 + stringValue: resource/add_environment - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - name: otelcol_exporter_queue_size - - name: otelcol_otelsvc_k8s_ip_lookup_miss - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 726 + - asDouble: 1691 attributes: - key: cluster_name value: @@ -608,48 +557,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: otel_signal + value: + stringValue: logs + - key: processor value: - stringValue: 172.18.0.2 + stringValue: resource/logs - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - gauge: - dataPoints: - - asDouble: 4.22756352e+08 + - asDouble: 1691 attributes: - key: cluster_name value: @@ -677,50 +623,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: otel_signal + value: + stringValue: logs + - key: processor value: - stringValue: 172.18.0.2 + stringValue: resourcedetection - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - name: otelcol_process_memory_rss - - name: otelcol_processor_filter_logs_filtered - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 150 + - asDouble: 10725 attributes: - key: cluster_name value: @@ -731,9 +672,6 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 - - key: filter - value: - stringValue: filter/logs - key: host.name value: stringValue: kind-control-plane @@ -751,48 +689,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: otel_signal + value: + stringValue: metrics + - key: processor value: - stringValue: 172.18.0.2 + stringValue: attributes/istio - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - gauge: - dataPoints: - - asDouble: 1000 + - asDouble: 11733 attributes: - key: cluster_name value: @@ -803,9 +738,6 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 - - key: exporter - value: - stringValue: otlp - key: host.name value: stringValue: kind-control-plane @@ -823,45 +755,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: otel_signal + value: + stringValue: metrics + - key: processor value: - stringValue: 172.18.0.2 + stringValue: k8sattributes/metrics - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 1000 + - asDouble: 11733 attributes: - key: cluster_name value: @@ -872,9 +804,6 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 - - key: exporter - value: - stringValue: otlphttp/entities - key: host.name value: stringValue: kind-control-plane @@ -892,45 +821,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: otel_signal value: - stringValue: 172.18.0.2 + stringValue: metrics + - key: processor + value: + stringValue: memory_limiter - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 1000 + - asDouble: 11733 attributes: - key: cluster_name value: @@ -941,9 +870,6 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 - - key: exporter - value: - stringValue: signalfx - key: host.name value: stringValue: kind-control-plane @@ -961,45 +887,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: otel_signal + value: + stringValue: metrics + - key: processor value: - stringValue: 172.18.0.2 + stringValue: resource - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 1000 + - asDouble: 1008 attributes: - key: cluster_name value: @@ -1010,9 +936,6 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 - - key: exporter - value: - stringValue: splunk_hec/platform_logs - key: host.name value: stringValue: kind-control-plane @@ -1030,45 +953,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: otel_signal value: - stringValue: 172.18.0.2 + stringValue: metrics + - key: processor + value: + stringValue: resource/add_agent_k8s - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 1000 + - asDouble: 10725 attributes: - key: cluster_name value: @@ -1079,9 +1002,6 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 - - key: exporter - value: - stringValue: splunk_hec/platform_metrics - key: host.name value: stringValue: kind-control-plane @@ -1099,50 +1019,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: otel_signal + value: + stringValue: metrics + - key: processor value: - stringValue: 172.18.0.2 + stringValue: resource/add_environment - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - name: otelcol_exporter_queue_capacity - - name: otelcol_processor_incoming_items - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 10300 + - asDouble: 11733 attributes: - key: cluster_name value: @@ -1170,13 +1085,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -1185,36 +1097,33 @@ resourceMetrics: stringValue: linux - key: otel_signal value: - stringValue: logs + stringValue: metrics - key: processor value: - stringValue: filter/logs - - key: server.address - value: - stringValue: 172.18.0.2 + stringValue: resourcedetection - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 10336 + - asDouble: 313 attributes: - key: cluster_name value: @@ -1242,13 +1151,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -1257,36 +1163,33 @@ resourceMetrics: stringValue: linux - key: otel_signal value: - stringValue: logs + stringValue: traces - key: processor value: stringValue: k8sattributes - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 10336 + - asDouble: 313 attributes: - key: cluster_name value: @@ -1314,13 +1217,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -1329,36 +1229,33 @@ resourceMetrics: stringValue: linux - key: otel_signal value: - stringValue: logs + stringValue: traces - key: processor value: stringValue: memory_limiter - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 10186 + - asDouble: 309 attributes: - key: cluster_name value: @@ -1386,13 +1283,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -1401,36 +1295,33 @@ resourceMetrics: stringValue: linux - key: otel_signal value: - stringValue: logs + stringValue: traces - key: processor value: stringValue: resource - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 10186 + - asDouble: 309 attributes: - key: cluster_name value: @@ -1458,13 +1349,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -1473,36 +1361,33 @@ resourceMetrics: stringValue: linux - key: otel_signal value: - stringValue: logs + stringValue: traces - key: processor value: stringValue: resource/add_environment - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 10186 + - asDouble: 309 attributes: - key: cluster_name value: @@ -1530,13 +1415,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -1545,36 +1427,38 @@ resourceMetrics: stringValue: linux - key: otel_signal value: - stringValue: logs + stringValue: traces - key: processor value: - stringValue: resource/logs - - key: server.address - value: - stringValue: 172.18.0.2 + stringValue: resourcedetection - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 10186 + isMonotonic: true + - name: otelcol_receiver_refused_log_records + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 attributes: - key: cluster_name value: @@ -1602,51 +1486,42 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: logs - - key: processor - value: - stringValue: resourcedetection - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: filelog - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 11793 + - asDouble: 0 attributes: - key: cluster_name value: @@ -1674,51 +1549,42 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: metrics - - key: processor - value: - stringValue: attributes/istio - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: journald/containerd - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 12796 + - asDouble: 0 attributes: - key: cluster_name value: @@ -1746,51 +1612,42 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: metrics - - key: processor - value: - stringValue: k8sattributes/metrics - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: journald/kubelet - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 12796 + - asDouble: 0 attributes: - key: cluster_name value: @@ -1818,51 +1675,48 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: metrics - - key: processor - value: - stringValue: memory_limiter - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: otlp - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: http - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 12796 + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 attributes: - key: cluster_name value: @@ -1873,10 +1727,1329 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 - - key: host.name + - key: data_type value: - stringValue: kind-control-plane - - key: http.scheme + stringValue: logs + - key: exporter + value: + stringValue: otlphttp/entities + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: data_type + value: + stringValue: logs + - key: exporter + value: + stringValue: splunk_hec/platform_logs + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: data_type + value: + stringValue: metrics + - key: exporter + value: + stringValue: signalfx + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: data_type + value: + stringValue: metrics + - key: exporter + value: + stringValue: splunk_hec/platform_metrics + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: data_type + value: + stringValue: traces + - key: exporter + value: + stringValue: otlp + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: otelcol_exporter_queue_size + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: otelcol_fileconsumer_reading_files + - gauge: + dataPoints: + - asDouble: 117 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: otelcol_otelsvc_k8s_pod_table_size + - name: otelcol_process_uptime + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 95.333973003 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: otelcol_processor_accepted_metric_points + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 11733 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: processor + value: + stringValue: memory_limiter + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: otelcol_processor_filter_logs_filtered + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 126 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: filter + value: + stringValue: filter/logs + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: otelcol_exporter_sent_log_records + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 2337 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: exporter + value: + stringValue: splunk_hec/platform_logs + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: otelcol_exporter_send_failed_spans + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: exporter + value: + stringValue: otlp + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: otelcol_exporter_sent_metric_points + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 11733 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: exporter + value: + stringValue: signalfx + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 11733 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: exporter + value: + stringValue: splunk_hec/platform_metrics + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: otelcol_otelsvc_k8s_ip_lookup_miss + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 638 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: otelcol_otelsvc_k8s_pod_added + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 136 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: otelcol_processor_accepted_log_records + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 2463 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: processor + value: + stringValue: memory_limiter + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: otelcol_receiver_refused_metric_points + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: hostmetrics + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: kubeletstats + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: receiver + value: + stringValue: otlp + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 + - key: transport + value: + stringValue: http + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme value: stringValue: http - key: k8s.cluster.name @@ -1890,51 +3063,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: metrics - - key: processor - value: - stringValue: resource - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: prometheus/agent - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: http - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 1003 + - asDouble: 0 attributes: - key: cluster_name value: @@ -1962,51 +3129,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: metrics - - key: processor - value: - stringValue: resource/add_agent_k8s - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: prometheus/ta - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: http - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 11793 + - asDouble: 0 attributes: - key: cluster_name value: @@ -2034,51 +3195,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: metrics - - key: processor - value: - stringValue: resource/add_environment - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: prometheus_simple//receiver_creator{endpoint="10.244.0.52:80"}/k8s_observer/7cae3ddb-ab84-4dc1-8b8c-ec90665d7d07 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: http - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 12796 + - asDouble: 0 attributes: - key: cluster_name value: @@ -2106,51 +3261,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: metrics - - key: processor - value: - stringValue: resourcedetection - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: prometheus_simple//receiver_creator{endpoint="10.244.0.5:9402"}/k8s_observer/9cd699ef-f612-4879-b1ce-04303d7b4f6c - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: http - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 309 + - asDouble: 0 attributes: - key: cluster_name value: @@ -2178,51 +3327,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: traces - - key: processor - value: - stringValue: k8sattributes - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: smartagent/coredns/receiver_creator{endpoint="10.244.0.2"}/k8s_observer/6568d3fb-f7c9-4968-a57e-7830b92b4c48 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: internal - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 309 + - asDouble: 0 attributes: - key: cluster_name value: @@ -2250,51 +3393,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: traces - - key: processor - value: - stringValue: memory_limiter - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: smartagent/coredns/receiver_creator{endpoint="10.244.0.3"}/k8s_observer/9080fd41-e66e-423d-87fd-a1e86ac15678 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: internal - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 309 + - asDouble: 0 attributes: - key: cluster_name value: @@ -2322,51 +3459,50 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: traces - - key: processor - value: - stringValue: resource - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: smartagent/kubernetes-proxy/receiver_creator{endpoint="172.19.0.2"}/k8s_observer/7b0de1af-95c5-4994-9e01-f16b25ba49c6 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: internal - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 309 + isMonotonic: true + - name: otelcol_receiver_refused_spans + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 attributes: - key: cluster_name value: @@ -2394,51 +3530,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: traces - - key: processor - value: - stringValue: resource/add_environment - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: otlp - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: grpc - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 309 + - asDouble: 0 attributes: - key: cluster_name value: @@ -2466,56 +3596,50 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: traces - - key: processor - value: - stringValue: resourcedetection - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: otlp - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: http - key: url.scheme value: stringValue: http timeUnixNano: "1000000" isMonotonic: true - - name: otelcol_receiver_accepted_metric_points + - name: otelcol_exporter_send_failed_metric_points sum: aggregationTemporality: 2 dataPoints: - - asDouble: 4187 + - asDouble: 0 attributes: - key: cluster_name value: @@ -2526,6 +3650,9 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 + - key: exporter + value: + stringValue: signalfx - key: host.name value: stringValue: kind-control-plane @@ -2543,48 +3670,39 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver - value: - stringValue: hostmetrics - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 5791 + - asDouble: 0 attributes: - key: cluster_name value: @@ -2595,6 +3713,9 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 + - key: exporter + value: + stringValue: splunk_hec/platform_metrics - key: host.name value: stringValue: kind-control-plane @@ -2612,48 +3733,42 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver - value: - stringValue: kubeletstats - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 85 + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 154 attributes: - key: cluster_name value: @@ -2681,51 +3796,44 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver - value: - stringValue: otlp - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 - - key: transport - value: - stringValue: http + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 1003 + name: scrape_samples_scraped + - name: otelcol_otelsvc_k8s_namespace_added + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 48 attributes: - key: cluster_name value: @@ -2753,51 +3861,44 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver - value: - stringValue: prometheus/agent - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 - - key: transport - value: - stringValue: http + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 39 + isMonotonic: true + - name: otelcol_otelsvc_k8s_pod_updated + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 156 attributes: - key: cluster_name value: @@ -2825,51 +3926,107 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver - value: - stringValue: prometheus/ta - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 - - key: transport + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 2.32971928e+08 + attributes: + - key: cluster_name + value: + stringValue: ci-k8s-cluster + - key: customfield1 + value: + stringValue: customvalue1 + - key: customfield2 + value: + stringValue: customvalue2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme value: stringValue: http + - 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: sock-splunk-otel-collector-agent-p4wgh + - key: k8s.pod.uid + value: + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 + - key: net.host.port + value: + stringValue: "8889" + - key: os.type + value: + stringValue: linux + - key: server.port + value: + stringValue: "8889" + - key: service.instance.id + value: + stringValue: localhost:8889 + - key: service.name + value: + stringValue: otel-agent + - key: service_instance_id + value: + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 + - key: service_name + value: + stringValue: otelcol + - key: service_version + value: + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 104 + name: otelcol_process_runtime_heap_alloc_bytes + - name: otelcol_process_runtime_total_alloc_bytes + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 9.06314512e+08 attributes: - key: cluster_name value: @@ -2897,51 +4054,42 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver - value: - stringValue: prometheus_simple//receiver_creator{endpoint="10.244.0.11:80"}/k8s_observer/28965b31-2355-46de-9e1f-3c0b31c1ef5a - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 - - key: transport - value: - stringValue: http + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 286 + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1 attributes: - key: cluster_name value: @@ -2969,51 +4117,42 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver - value: - stringValue: prometheus_simple//receiver_creator{endpoint="10.244.0.6:9402"}/k8s_observer/3101f943-bd4a-437f-93e3-e17342c985ff - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 - - key: transport - value: - stringValue: http + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 92 + name: up + - gauge: + dataPoints: + - asDouble: 1000 attributes: - key: cluster_name value: @@ -3024,6 +4163,9 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 + - key: exporter + value: + stringValue: otlp - key: host.name value: stringValue: kind-control-plane @@ -3041,51 +4183,39 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver - value: - stringValue: smartagent/coredns/receiver_creator{endpoint="10.244.0.2"}/k8s_observer/c1b617cc-4467-4277-a38c-08853d9aba1f - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 - - key: transport - value: - stringValue: internal + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 87 + - asDouble: 1000 attributes: - key: cluster_name value: @@ -3096,6 +4226,9 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 + - key: exporter + value: + stringValue: otlphttp/entities - key: host.name value: stringValue: kind-control-plane @@ -3113,51 +4246,39 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver - value: - stringValue: smartagent/coredns/receiver_creator{endpoint="10.244.0.4"}/k8s_observer/616ee593-bf8f-4ec0-abf4-910da6618cfa - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 - - key: transport - value: - stringValue: internal + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 1122 + - asDouble: 1000 attributes: - key: cluster_name value: @@ -3168,6 +4289,9 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 + - key: exporter + value: + stringValue: signalfx - key: host.name value: stringValue: kind-control-plane @@ -3185,56 +4309,39 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver - value: - stringValue: smartagent/kubernetes-proxy/receiver_creator{endpoint="172.18.0.2"}/k8s_observer/5053b5b4-54cb-4efc-b19b-7d029ff98930 - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 - - key: transport - value: - stringValue: internal + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_scraper_errored_metric_points - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 0 + - asDouble: 1000 attributes: - key: cluster_name value: @@ -3245,6 +4352,9 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 + - key: exporter + value: + stringValue: splunk_hec/platform_logs - key: host.name value: stringValue: kind-control-plane @@ -3262,51 +4372,39 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver - value: - stringValue: hostmetrics - - key: scraper - value: - stringValue: hostmetrics - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 1000 attributes: - key: cluster_name value: @@ -3317,6 +4415,9 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 + - key: exporter + value: + stringValue: splunk_hec/platform_metrics - key: host.name value: stringValue: kind-control-plane @@ -3334,54 +4435,44 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver - value: - stringValue: kubeletstats - - key: scraper - value: - stringValue: kubeletstats - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - gauge: + name: otelcol_exporter_queue_capacity + - name: otelcol_process_cpu_seconds + sum: + aggregationTemporality: 2 dataPoints: - - asDouble: 0.002243876 + - asDouble: 4.15 attributes: - key: cluster_name value: @@ -3409,50 +4500,44 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - name: scrape_duration_seconds - - name: otelcol_exporter_send_failed_metric_points + isMonotonic: true + - name: otelcol_processor_incoming_items sum: aggregationTemporality: 2 dataPoints: - - asDouble: 0 + - asDouble: 1817 attributes: - key: cluster_name value: @@ -3463,9 +4548,6 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 - - key: exporter - value: - stringValue: signalfx - key: host.name value: stringValue: kind-control-plane @@ -3483,45 +4565,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: otel_signal + value: + stringValue: logs + - key: processor value: - stringValue: 172.18.0.2 + stringValue: filter/logs - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 1817 attributes: - key: cluster_name value: @@ -3532,9 +4614,6 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 - - key: exporter - value: - stringValue: splunk_hec/platform_metrics - key: host.name value: stringValue: kind-control-plane @@ -3552,48 +4631,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: otel_signal value: - stringValue: 172.18.0.2 + stringValue: logs + - key: processor + value: + stringValue: k8sattributes - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - gauge: - dataPoints: - - asDouble: 26 + - asDouble: 2463 attributes: - key: cluster_name value: @@ -3621,50 +4697,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: otel_signal + value: + stringValue: logs + - key: processor value: - stringValue: 172.18.0.2 + stringValue: memory_limiter - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - name: otelcol_fileconsumer_open_files - - name: otelcol_processor_accepted_log_records - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 10336 + - asDouble: 2337 attributes: - key: cluster_name value: @@ -3692,53 +4763,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: processor + - key: otel_signal value: - stringValue: memory_limiter - - key: server.address + stringValue: logs + - key: processor value: - stringValue: 172.18.0.2 + stringValue: resource - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_receiver_refused_metric_points - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 0 + - asDouble: 2337 attributes: - key: cluster_name value: @@ -3766,48 +4829,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver + - key: otel_signal value: - stringValue: hostmetrics - - key: server.address + stringValue: logs + - key: processor value: - stringValue: 172.18.0.2 + stringValue: resource/add_environment - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 1691 attributes: - key: cluster_name value: @@ -3835,48 +4895,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver + - key: otel_signal value: - stringValue: kubeletstats - - key: server.address + stringValue: logs + - key: processor value: - stringValue: 172.18.0.2 + stringValue: resource/logs - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 1691 attributes: - key: cluster_name value: @@ -3904,51 +4961,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver + - key: otel_signal value: - stringValue: otlp - - key: server.address + stringValue: logs + - key: processor value: - stringValue: 172.18.0.2 + stringValue: resourcedetection - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 - - key: transport - value: - stringValue: http + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 10725 attributes: - key: cluster_name value: @@ -3976,51 +5027,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver + - key: otel_signal value: - stringValue: prometheus/agent - - key: server.address + stringValue: metrics + - key: processor value: - stringValue: 172.18.0.2 + stringValue: attributes/istio - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 - - key: transport - value: - stringValue: http + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 11733 attributes: - key: cluster_name value: @@ -4048,51 +5093,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver + - key: otel_signal value: - stringValue: prometheus/ta - - key: server.address + stringValue: metrics + - key: processor value: - stringValue: 172.18.0.2 + stringValue: k8sattributes/metrics - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 - - key: transport - value: - stringValue: http + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 11733 attributes: - key: cluster_name value: @@ -4120,51 +5159,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver + - key: otel_signal value: - stringValue: prometheus_simple//receiver_creator{endpoint="10.244.0.11:80"}/k8s_observer/28965b31-2355-46de-9e1f-3c0b31c1ef5a - - key: server.address + stringValue: metrics + - key: processor value: - stringValue: 172.18.0.2 + stringValue: memory_limiter - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 - - key: transport - value: - stringValue: http + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 11733 attributes: - key: cluster_name value: @@ -4192,51 +5225,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver + - key: otel_signal value: - stringValue: prometheus_simple//receiver_creator{endpoint="10.244.0.6:9402"}/k8s_observer/3101f943-bd4a-437f-93e3-e17342c985ff - - key: server.address + stringValue: metrics + - key: processor value: - stringValue: 172.18.0.2 + stringValue: resource - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 - - key: transport - value: - stringValue: http + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 1008 attributes: - key: cluster_name value: @@ -4264,51 +5291,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver + - key: otel_signal value: - stringValue: smartagent/coredns/receiver_creator{endpoint="10.244.0.2"}/k8s_observer/c1b617cc-4467-4277-a38c-08853d9aba1f - - key: server.address + stringValue: metrics + - key: processor value: - stringValue: 172.18.0.2 + stringValue: resource/add_agent_k8s - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 - - key: transport - value: - stringValue: internal + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 10725 attributes: - key: cluster_name value: @@ -4336,51 +5357,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver + - key: otel_signal value: - stringValue: smartagent/coredns/receiver_creator{endpoint="10.244.0.4"}/k8s_observer/616ee593-bf8f-4ec0-abf4-910da6618cfa - - key: server.address + stringValue: metrics + - key: processor value: - stringValue: 172.18.0.2 + stringValue: resource/add_environment - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 - - key: transport - value: - stringValue: internal + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 11733 attributes: - key: cluster_name value: @@ -4408,56 +5423,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver + - key: otel_signal value: - stringValue: smartagent/kubernetes-proxy/receiver_creator{endpoint="172.18.0.2"}/k8s_observer/5053b5b4-54cb-4efc-b19b-7d029ff98930 - - key: server.address + stringValue: metrics + - key: processor value: - stringValue: 172.18.0.2 + stringValue: resourcedetection - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 - - key: transport - value: - stringValue: internal - - key: url.scheme - value: - stringValue: http - timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_receiver_refused_spans - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 0 + stringValue: v0.113.0 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 313 attributes: - key: cluster_name value: @@ -4485,51 +5489,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver + - key: otel_signal value: - stringValue: otlp - - key: server.address + stringValue: traces + - key: processor value: - stringValue: 172.18.0.2 + stringValue: k8sattributes - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 - - key: transport - value: - stringValue: grpc + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 313 attributes: - key: cluster_name value: @@ -4557,56 +5555,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver + - key: otel_signal value: - stringValue: otlp - - key: server.address + stringValue: traces + - key: processor value: - stringValue: 172.18.0.2 + stringValue: memory_limiter - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 - - key: transport - value: - stringValue: http + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_exporter_sent_log_records - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 10186 + - asDouble: 309 attributes: - key: cluster_name value: @@ -4617,9 +5604,6 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 - - key: exporter - value: - stringValue: splunk_hec/platform_logs - key: host.name value: stringValue: kind-control-plane @@ -4637,49 +5621,44 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: otel_signal value: - stringValue: 172.18.0.2 + stringValue: traces + - key: processor + value: + stringValue: resource - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_exporter_sent_spans - sum: - aggregationTemporality: 2 - dataPoints: - asDouble: 309 attributes: - key: cluster_name @@ -4691,9 +5670,6 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 - - key: exporter - value: - stringValue: otlp - key: host.name value: stringValue: kind-control-plane @@ -4711,50 +5687,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: otel_signal + value: + stringValue: traces + - key: processor value: - stringValue: 172.18.0.2 + stringValue: resource/add_environment - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_otelsvc_k8s_pod_added - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 104 + - asDouble: 309 attributes: - key: cluster_name value: @@ -4782,50 +5753,50 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: otel_signal + value: + stringValue: traces + - key: processor value: - stringValue: 172.18.0.2 + stringValue: resourcedetection - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" isMonotonic: true - - name: otelcol_receiver_refused_log_records + - name: otelcol_receiver_accepted_log_records sum: aggregationTemporality: 2 dataPoints: - - asDouble: 0 + - asDouble: 1491 attributes: - key: cluster_name value: @@ -4853,13 +5824,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -4869,32 +5837,29 @@ resourceMetrics: - key: receiver value: stringValue: filelog - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 0 + - asDouble: 425 attributes: - key: cluster_name value: @@ -4922,13 +5887,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -4937,41 +5899,30 @@ resourceMetrics: stringValue: linux - key: receiver value: - stringValue: otlp - - key: server.address - value: - stringValue: 172.18.0.2 + stringValue: journald/containerd - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 - - key: transport - value: - stringValue: http + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_exporter_send_failed_log_records - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 0 + - asDouble: 221 attributes: - key: cluster_name value: @@ -4982,9 +5933,6 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 - - key: exporter - value: - stringValue: splunk_hec/platform_logs - key: host.name value: stringValue: kind-control-plane @@ -5002,50 +5950,42 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: journald/kubelet - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_exporter_send_failed_spans - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 0 + - asDouble: 326 attributes: - key: cluster_name value: @@ -5056,9 +5996,6 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 - - key: exporter - value: - stringValue: otlp - key: host.name value: stringValue: kind-control-plane @@ -5076,50 +6013,50 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: otlp - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: http - key: url.scheme value: stringValue: http timeUnixNano: "1000000" isMonotonic: true - - name: otelcol_exporter_sent_metric_points + - name: otelcol_exporter_send_failed_log_records sum: aggregationTemporality: 2 dataPoints: - - asDouble: 12796 + - asDouble: 0 attributes: - key: cluster_name value: @@ -5132,7 +6069,7 @@ resourceMetrics: stringValue: customvalue2 - key: exporter value: - stringValue: signalfx + stringValue: splunk_hec/platform_logs - key: host.name value: stringValue: kind-control-plane @@ -5150,45 +6087,42 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 12796 + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 4.00932864e+08 attributes: - key: cluster_name value: @@ -5199,9 +6133,6 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 - - key: exporter - value: - stringValue: splunk_hec/platform_metrics - key: host.name value: stringValue: kind-control-plane @@ -5219,50 +6150,42 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_otelsvc_k8s_namespace_added - sum: - aggregationTemporality: 2 + name: otelcol_process_memory_rss + - gauge: dataPoints: - - asDouble: 36 + - asDouble: 0.002808834 attributes: - key: cluster_name value: @@ -5290,50 +6213,44 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_receiver_accepted_spans + name: scrape_duration_seconds + - name: otelcol_otelsvc_k8s_pod_deleted sum: aggregationTemporality: 2 dataPoints: - - asDouble: 76 + - asDouble: 32 attributes: - key: cluster_name value: @@ -5361,51 +6278,42 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver - value: - stringValue: otlp - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 - - key: transport - value: - stringValue: grpc + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 233 + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 3.06300232e+08 attributes: - key: cluster_name value: @@ -5433,54 +6341,44 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver - value: - stringValue: otlp - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 - - key: transport - value: - stringValue: http + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - gauge: + name: otelcol_process_runtime_total_sys_memory_bytes + - name: otelcol_receiver_accepted_metric_points + sum: + aggregationTemporality: 2 dataPoints: - - asDouble: 106 + - asDouble: 3713 attributes: - key: cluster_name value: @@ -5508,48 +6406,42 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: hostmetrics - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - name: scrape_series_added - - gauge: - dataPoints: - - asDouble: 85 + - asDouble: 5419 attributes: - key: cluster_name value: @@ -5577,50 +6469,42 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: kubeletstats - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - name: otelcol_otelsvc_k8s_pod_table_size - - name: otelcol_process_cpu_seconds - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 3.38 + - asDouble: 96 attributes: - key: cluster_name value: @@ -5648,48 +6532,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: otlp - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: http - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - gauge: - dataPoints: - - asDouble: 2.98417784e+08 + - asDouble: 1008 attributes: - key: cluster_name value: @@ -5717,50 +6598,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: prometheus/agent - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: http - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - name: otelcol_process_runtime_heap_alloc_bytes - - name: otelcol_process_runtime_total_alloc_bytes - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 9.76760176e+08 + - asDouble: 26 attributes: - key: cluster_name value: @@ -5788,50 +6664,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: prometheus/ta - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: http - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_processor_accepted_spans - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 309 + - asDouble: 91 attributes: - key: cluster_name value: @@ -5859,53 +6730,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: processor - value: - stringValue: memory_limiter - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: prometheus_simple//receiver_creator{endpoint="10.244.0.52:80"}/k8s_observer/7cae3ddb-ab84-4dc1-8b8c-ec90665d7d07 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: http - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_scraper_scraped_metric_points - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 264 + - asDouble: 180 attributes: - key: cluster_name value: @@ -5933,13 +6796,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -5948,36 +6808,33 @@ resourceMetrics: stringValue: linux - key: receiver value: - stringValue: hostmetrics - - key: scraper - value: - stringValue: hostmetrics - - key: server.address - value: - stringValue: 172.18.0.2 + stringValue: prometheus_simple//receiver_creator{endpoint="10.244.0.5:9402"}/k8s_observer/9cd699ef-f612-4879-b1ce-04303d7b4f6c - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: http - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 5267 + - asDouble: 90 attributes: - key: cluster_name value: @@ -6005,13 +6862,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -6020,39 +6874,33 @@ resourceMetrics: stringValue: linux - key: receiver value: - stringValue: kubeletstats - - key: scraper - value: - stringValue: kubeletstats - - key: server.address - value: - stringValue: 172.18.0.2 + stringValue: smartagent/coredns/receiver_creator{endpoint="10.244.0.2"}/k8s_observer/6568d3fb-f7c9-4968-a57e-7830b92b4c48 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: internal - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - gauge: - dataPoints: - - asDouble: 106 + - asDouble: 90 attributes: - key: cluster_name value: @@ -6080,48 +6928,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: smartagent/coredns/receiver_creator{endpoint="10.244.0.3"}/k8s_observer/9080fd41-e66e-423d-87fd-a1e86ac15678 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: internal - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - name: scrape_samples_post_metric_relabeling - - gauge: - dataPoints: - - asDouble: 3.2275796e+08 + - asDouble: 1020 attributes: - key: cluster_name value: @@ -6149,50 +6994,50 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: smartagent/kubernetes-proxy/receiver_creator{endpoint="172.19.0.2"}/k8s_observer/7b0de1af-95c5-4994-9e01-f16b25ba49c6 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: internal - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - name: otelcol_process_runtime_total_sys_memory_bytes - - name: otelcol_processor_accepted_metric_points + isMonotonic: true + - name: otelcol_scraper_errored_metric_points sum: aggregationTemporality: 2 dataPoints: - - asDouble: 12796 + - asDouble: 0 attributes: - key: cluster_name value: @@ -6220,53 +7065,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: processor + - key: receiver value: - stringValue: memory_limiter - - key: server.address + stringValue: hostmetrics + - key: scraper value: - stringValue: 172.18.0.2 + stringValue: cpu - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_processor_outgoing_items - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 10186 + - asDouble: 0 attributes: - key: cluster_name value: @@ -6294,51 +7131,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: logs - - key: processor + - key: receiver value: - stringValue: filter/logs - - key: server.address + stringValue: hostmetrics + - key: scraper value: - stringValue: 172.18.0.2 + stringValue: disk - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 10336 + - asDouble: 0 attributes: - key: cluster_name value: @@ -6366,51 +7197,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: logs - - key: processor + - key: receiver value: - stringValue: k8sattributes - - key: server.address + stringValue: hostmetrics + - key: scraper value: - stringValue: 172.18.0.2 + stringValue: filesystem - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 10336 + - asDouble: 0 attributes: - key: cluster_name value: @@ -6438,51 +7263,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: logs - - key: processor + - key: receiver value: - stringValue: memory_limiter - - key: server.address + stringValue: hostmetrics + - key: scraper value: - stringValue: 172.18.0.2 + stringValue: load - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 10186 + - asDouble: 0 attributes: - key: cluster_name value: @@ -6510,51 +7329,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: logs - - key: processor + - key: receiver value: - stringValue: resource - - key: server.address + stringValue: hostmetrics + - key: scraper value: - stringValue: 172.18.0.2 + stringValue: memory - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 10186 + - asDouble: 0 attributes: - key: cluster_name value: @@ -6582,51 +7395,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: logs - - key: processor + - key: receiver value: - stringValue: resource/add_environment - - key: server.address + stringValue: hostmetrics + - key: scraper value: - stringValue: 172.18.0.2 + stringValue: network - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 10186 + - asDouble: 0 attributes: - key: cluster_name value: @@ -6654,51 +7461,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: logs - - key: processor + - key: receiver value: - stringValue: resource/logs - - key: server.address + stringValue: hostmetrics + - key: scraper value: - stringValue: 172.18.0.2 + stringValue: paging - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 10186 + - asDouble: 0 attributes: - key: cluster_name value: @@ -6726,51 +7527,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: logs - - key: processor + - key: receiver value: - stringValue: resourcedetection - - key: server.address + stringValue: hostmetrics + - key: scraper value: - stringValue: 172.18.0.2 + stringValue: processes - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 11793 + - asDouble: 0 attributes: - key: cluster_name value: @@ -6798,51 +7593,50 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: metrics - - key: processor + - key: receiver value: - stringValue: attributes/istio - - key: server.address + stringValue: kubeletstats + - key: scraper value: - stringValue: 172.18.0.2 + stringValue: kubeletstats - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 12796 + isMonotonic: true + - name: otelcol_exporter_sent_spans + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 309 attributes: - key: cluster_name value: @@ -6853,6 +7647,9 @@ resourceMetrics: - key: customfield2 value: stringValue: customvalue2 + - key: exporter + value: + stringValue: otlp - key: host.name value: stringValue: kind-control-plane @@ -6870,51 +7667,44 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: metrics - - key: processor - value: - stringValue: k8sattributes/metrics - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 12796 + isMonotonic: true + - name: otelcol_receiver_accepted_spans + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 81 attributes: - key: cluster_name value: @@ -6942,51 +7732,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: metrics - - key: processor - value: - stringValue: memory_limiter - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: otlp - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: grpc - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 12796 + - asDouble: 232 attributes: - key: cluster_name value: @@ -7014,51 +7798,50 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: metrics - - key: processor - value: - stringValue: resource - - key: server.address + - key: receiver value: - stringValue: 172.18.0.2 + stringValue: otlp - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 + - key: transport + value: + stringValue: http - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 1003 + isMonotonic: true + - name: otelcol_scraper_scraped_metric_points + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 10 attributes: - key: cluster_name value: @@ -7086,51 +7869,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: metrics - - key: processor + - key: receiver value: - stringValue: resource/add_agent_k8s - - key: server.address + stringValue: hostmetrics + - key: scraper value: - stringValue: 172.18.0.2 + stringValue: cpu - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 11793 + - asDouble: 70 attributes: - key: cluster_name value: @@ -7158,51 +7935,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: metrics - - key: processor + - key: receiver value: - stringValue: resource/add_environment - - key: server.address + stringValue: hostmetrics + - key: scraper value: - stringValue: 172.18.0.2 + stringValue: disk - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 12796 + - asDouble: 0 attributes: - key: cluster_name value: @@ -7230,51 +8001,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: metrics - - key: processor + - key: receiver value: - stringValue: resourcedetection - - key: server.address + stringValue: hostmetrics + - key: scraper value: - stringValue: 172.18.0.2 + stringValue: filesystem - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 309 + - asDouble: 30 attributes: - key: cluster_name value: @@ -7302,51 +8067,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: traces - - key: processor + - key: receiver value: - stringValue: k8sattributes - - key: server.address + stringValue: hostmetrics + - key: scraper value: - stringValue: 172.18.0.2 + stringValue: load - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 309 + - asDouble: 10 attributes: - key: cluster_name value: @@ -7374,51 +8133,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: traces - - key: processor + - key: receiver value: - stringValue: memory_limiter - - key: server.address + stringValue: hostmetrics + - key: scraper value: - stringValue: 172.18.0.2 + stringValue: memory - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 309 + - asDouble: 50 attributes: - key: cluster_name value: @@ -7446,51 +8199,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: traces - - key: processor + - key: receiver value: - stringValue: resource - - key: server.address + stringValue: hostmetrics + - key: scraper value: - stringValue: 172.18.0.2 + stringValue: network - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 309 + - asDouble: 30 attributes: - key: cluster_name value: @@ -7518,51 +8265,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: traces - - key: processor + - key: receiver value: - stringValue: resource/add_environment - - key: server.address + stringValue: hostmetrics + - key: scraper value: - stringValue: 172.18.0.2 + stringValue: paging - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 309 + - asDouble: 20 attributes: - key: cluster_name value: @@ -7590,56 +8331,45 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: otel_signal - value: - stringValue: traces - - key: processor + - key: receiver value: - stringValue: resourcedetection - - key: server.address + stringValue: hostmetrics + - key: scraper value: - stringValue: 172.18.0.2 + stringValue: processes - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - isMonotonic: true - - name: otelcol_receiver_accepted_log_records - sum: - aggregationTemporality: 2 - dataPoints: - - asDouble: 9966 + - asDouble: 4931 attributes: - key: cluster_name value: @@ -7667,13 +8397,10 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" @@ -7682,33 +8409,36 @@ resourceMetrics: stringValue: linux - key: receiver value: - stringValue: filelog - - key: server.address + stringValue: kubeletstats + - key: scraper value: - stringValue: 172.18.0.2 + stringValue: kubeletstats - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - - asDouble: 370 + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 127 attributes: - key: cluster_name value: @@ -7736,54 +8466,42 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: receiver - value: - stringValue: otlp - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 - - key: transport - value: - stringValue: http + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - isMonotonic: true + name: scrape_samples_post_metric_relabeling - gauge: dataPoints: - - asDouble: 1 + - asDouble: 127 attributes: - key: cluster_name value: @@ -7811,48 +8529,44 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address - value: - stringValue: 172.18.0.2 - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - name: up - - gauge: + name: scrape_series_added + - name: otelcol_processor_accepted_spans + sum: + aggregationTemporality: 2 dataPoints: - - asDouble: 133 + - asDouble: 313 attributes: - key: cluster_name value: @@ -7880,43 +8594,40 @@ resourceMetrics: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: sock-splunk-otel-collector-agent-f8bq4 + stringValue: sock-splunk-otel-collector-agent-p4wgh - key: k8s.pod.uid value: - stringValue: 56675921-f6f7-4af4-84b8-a4f83ecbc48a - - key: net.host.name - value: - stringValue: 172.18.0.2 + stringValue: 3fee2ac1-c84c-4c45-8513-b087a3e1f934 - key: net.host.port value: stringValue: "8889" - key: os.type value: stringValue: linux - - key: server.address + - key: processor value: - stringValue: 172.18.0.2 + stringValue: memory_limiter - key: server.port value: stringValue: "8889" - key: service.instance.id value: - stringValue: 172.18.0.2:8889 + stringValue: localhost:8889 - key: service.name value: stringValue: otel-agent - key: service_instance_id value: - stringValue: 015468d8-5ec1-4072-bda5-3006450d7d5b + stringValue: 11baf8b7-fbff-494f-bf23-d508a4c39904 - key: service_name value: stringValue: otelcol - key: service_version value: - stringValue: v0.111.0 + stringValue: v0.113.0 - key: url.scheme value: stringValue: http timeUnixNano: "1000000" - name: scrape_samples_scraped + isMonotonic: true scope: {} diff --git a/functional_tests/testdata/expected_kind_values/expected_nodejs_traces.yaml b/functional_tests/testdata/expected_kind_values/expected_nodejs_traces.yaml index ac4d895cc1..a3aac5a574 100644 --- a/functional_tests/testdata/expected_kind_values/expected_nodejs_traces.yaml +++ b/functional_tests/testdata/expected_kind_values/expected_nodejs_traces.yaml @@ -12,13 +12,13 @@ resourceSpans: stringValue: opentelemetry - key: telemetry.sdk.version value: - stringValue: 1.26.0 + stringValue: 1.28.0 - key: splunk.distro.version value: - stringValue: 2.12.0 + stringValue: 2.15.0 - key: splunk.zc.method value: - stringValue: splunk-otel-js:v2.12.0 + stringValue: splunk-otel-js:v2.15.0 - key: k8s.container.name value: stringValue: nodejs-test @@ -33,10 +33,13 @@ resourceSpans: stringValue: kind-control-plane - key: k8s.pod.name value: - stringValue: nodejs-test-56b74df9ff-dvls2 + stringValue: nodejs-test-56b74df9ff-pzbkl - key: k8s.replicaset.name value: stringValue: nodejs-test-56b74df9ff + - key: service.instance.id + value: + stringValue: default.nodejs-test-56b74df9ff-pzbkl.nodejs-test - key: service.version value: stringValue: latest @@ -51,7 +54,7 @@ resourceSpans: stringValue: linux - key: os.version value: - stringValue: 6.10.0-linuxkit + stringValue: 6.10.14-linuxkit - key: process.pid value: intValue: "10" @@ -84,13 +87,13 @@ resourceSpans: stringValue: root - key: k8s.pod.ip value: - stringValue: 10.244.0.118 + stringValue: 10.244.0.37 - key: k8s.pod.labels.app value: stringValue: nodejs-test - key: k8s.pod.uid value: - stringValue: 5e30d862-b449-41ad-963d-a10b6414336d + stringValue: 31d839ba-d43d-4dff-a30f-223240fcbcdd - key: container.image.name value: stringValue: quay.io/splunko11ytest/nodejs_test @@ -99,7 +102,7 @@ resourceSpans: stringValue: latest - key: container.id value: - stringValue: 35dc5a29a73d04f4231e9f5768e61478fdb9dfd0b6f6f8876ce3beaf06bf1e8d + stringValue: 5a57dd02a889bf84d157b6b7ea1de0aff0c6e184205e477f820f071d32d9ecc4 - key: k8s.cluster.name value: stringValue: dev-operator @@ -159,21 +162,21 @@ resourceSpans: stringValue: 127.0.0.1 - key: net.peer.port value: - intValue: "43006" + intValue: "43384" - key: http.status_code value: intValue: "200" - key: http.status_text value: stringValue: OK - endTimeUnixNano: "1726502403845388875" + endTimeUnixNano: "1736397227751263458" kind: 2 name: GET parentSpanId: "" - spanId: 52062154b9ec5290 - startTimeUnixNano: "1726502403845000000" + spanId: cecf7b647346aa16 + startTimeUnixNano: "1736397227751000000" status: {} - traceId: 7e5bef2baa2346db56e6a30517c71dd6 + traceId: 7a867b8efaafebe61d4e773a8b1df2d9 - attributes: - key: http.url value: @@ -213,21 +216,21 @@ resourceSpans: stringValue: 127.0.0.1 - key: net.peer.port value: - intValue: "43014" + intValue: "35724" - key: http.status_code value: intValue: "200" - key: http.status_text value: stringValue: OK - endTimeUnixNano: "1726502404852339167" + endTimeUnixNano: "1736397228755263625" kind: 2 name: GET parentSpanId: "" - spanId: 31da8ae156184ae0 - startTimeUnixNano: "1726502404852000000" + spanId: 8828703c85d0b90d + startTimeUnixNano: "1736397228755000000" status: {} - traceId: aa565d9b13731fde2e28512e6623b6b6 + traceId: ac9e67422b0de4041cf95b36bed24912 - attributes: - key: http.url value: @@ -267,21 +270,21 @@ resourceSpans: stringValue: 127.0.0.1 - key: net.peer.port value: - intValue: "43018" + intValue: "35738" - key: http.status_code value: intValue: "200" - key: http.status_text value: stringValue: OK - endTimeUnixNano: "1726502405859321125" + endTimeUnixNano: "1736397229758311000" kind: 2 name: GET parentSpanId: "" - spanId: ffbefd6fc04ecab3 - startTimeUnixNano: "1726502405859000000" + spanId: 5a90bbf133b377af + startTimeUnixNano: "1736397229758000000" status: {} - traceId: bfb8870087b0d9f03659681cbc30801b + traceId: c8e82943d0e51c57d5c4bd9b8d7d9510 - attributes: - key: http.url value: @@ -321,21 +324,21 @@ resourceSpans: stringValue: 127.0.0.1 - key: net.peer.port value: - intValue: "43024" + intValue: "35748" - key: http.status_code value: intValue: "200" - key: http.status_text value: stringValue: OK - endTimeUnixNano: "1726502406863394916" + endTimeUnixNano: "1736397230762353334" kind: 2 name: GET parentSpanId: "" - spanId: 7f34b9ea0aa0e993 - startTimeUnixNano: "1726502406863000000" + spanId: 8f13b9afbbcb3b73 + startTimeUnixNano: "1736397230762000000" status: {} - traceId: 1d3abed17ff80cd0e8ca9914dd545e94 + traceId: d96d33dbdba6117257db5caa22ac4b5d - attributes: - key: http.url value: @@ -375,18 +378,18 @@ resourceSpans: stringValue: 127.0.0.1 - key: net.peer.port value: - intValue: "43036" + intValue: "35764" - key: http.status_code value: intValue: "200" - key: http.status_text value: stringValue: OK - endTimeUnixNano: "1726502407872361666" + endTimeUnixNano: "1736397231769315042" kind: 2 name: GET parentSpanId: "" - spanId: 304bd20b92f9c8ff - startTimeUnixNano: "1726502407872000000" + spanId: 0a6a4afead1c0b0b + startTimeUnixNano: "1736397231769000000" status: {} - traceId: 1e0ded79cf35b487d2f02207cfe58da4 + traceId: 24a9f307fc2d8aeb2468d7f9384911c0 diff --git a/functional_tests/testdata/manifests/operator_crds.yaml b/functional_tests/testdata/manifests/operator_crds.yaml new file mode 100644 index 0000000000..acd5557d2c --- /dev/null +++ b/functional_tests/testdata/manifests/operator_crds.yaml @@ -0,0 +1,12952 @@ +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + controller-gen.kubebuilder.io/version: v0.17.0 + creationTimestamp: null + labels: + app.kubernetes.io/name: opentelemetry-operator + name: instrumentations.opentelemetry.io +spec: + group: opentelemetry.io + names: + kind: Instrumentation + listKind: InstrumentationList + plural: instrumentations + shortNames: + - otelinst + - otelinsts + singular: instrumentation + scope: Namespaced + versions: + - additionalPrinterColumns: + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + - jsonPath: .spec.exporter.endpoint + name: Endpoint + type: string + - jsonPath: .spec.sampler.type + name: Sampler + type: string + - jsonPath: .spec.sampler.argument + name: Sampler Arg + type: string + name: v1alpha1 + schema: + openAPIV3Schema: + properties: + apiVersion: + type: string + kind: + type: string + metadata: + type: object + spec: + properties: + apacheHttpd: + properties: + attrs: + items: + properties: + name: + type: string + value: + type: string + valueFrom: + properties: + configMapKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + secretKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + configPath: + type: string + env: + items: + properties: + name: + type: string + value: + type: string + valueFrom: + properties: + configMapKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + secretKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + image: + type: string + resourceRequirements: + properties: + claims: + items: + properties: + name: + type: string + request: + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + version: + type: string + volumeClaimTemplate: + properties: + metadata: + properties: + annotations: + additionalProperties: + type: string + type: object + finalizers: + items: + type: string + type: array + labels: + additionalProperties: + type: string + type: object + name: + type: string + namespace: + type: string + type: object + spec: + properties: + accessModes: + items: + type: string + type: array + x-kubernetes-list-type: atomic + dataSource: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + required: + - kind + - name + type: object + x-kubernetes-map-type: atomic + dataSourceRef: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + namespace: + type: string + required: + - kind + - name + type: object + resources: + properties: + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + selector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + storageClassName: + type: string + volumeAttributesClassName: + type: string + volumeMode: + type: string + volumeName: + type: string + type: object + required: + - spec + type: object + volumeLimitSize: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + defaults: + properties: + useLabelsForResourceAttributes: + type: boolean + type: object + dotnet: + properties: + env: + items: + properties: + name: + type: string + value: + type: string + valueFrom: + properties: + configMapKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + secretKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + image: + type: string + resourceRequirements: + properties: + claims: + items: + properties: + name: + type: string + request: + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + volumeClaimTemplate: + properties: + metadata: + properties: + annotations: + additionalProperties: + type: string + type: object + finalizers: + items: + type: string + type: array + labels: + additionalProperties: + type: string + type: object + name: + type: string + namespace: + type: string + type: object + spec: + properties: + accessModes: + items: + type: string + type: array + x-kubernetes-list-type: atomic + dataSource: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + required: + - kind + - name + type: object + x-kubernetes-map-type: atomic + dataSourceRef: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + namespace: + type: string + required: + - kind + - name + type: object + resources: + properties: + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + selector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + storageClassName: + type: string + volumeAttributesClassName: + type: string + volumeMode: + type: string + volumeName: + type: string + type: object + required: + - spec + type: object + volumeLimitSize: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + env: + items: + properties: + name: + type: string + value: + type: string + valueFrom: + properties: + configMapKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + secretKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + exporter: + properties: + endpoint: + type: string + tls: + properties: + ca_file: + type: string + cert_file: + type: string + configMapName: + type: string + key_file: + type: string + secretName: + type: string + type: object + type: object + go: + properties: + env: + items: + properties: + name: + type: string + value: + type: string + valueFrom: + properties: + configMapKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + secretKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + image: + type: string + resourceRequirements: + properties: + claims: + items: + properties: + name: + type: string + request: + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + volumeClaimTemplate: + properties: + metadata: + properties: + annotations: + additionalProperties: + type: string + type: object + finalizers: + items: + type: string + type: array + labels: + additionalProperties: + type: string + type: object + name: + type: string + namespace: + type: string + type: object + spec: + properties: + accessModes: + items: + type: string + type: array + x-kubernetes-list-type: atomic + dataSource: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + required: + - kind + - name + type: object + x-kubernetes-map-type: atomic + dataSourceRef: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + namespace: + type: string + required: + - kind + - name + type: object + resources: + properties: + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + selector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + storageClassName: + type: string + volumeAttributesClassName: + type: string + volumeMode: + type: string + volumeName: + type: string + type: object + required: + - spec + type: object + volumeLimitSize: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + java: + properties: + env: + items: + properties: + name: + type: string + value: + type: string + valueFrom: + properties: + configMapKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + secretKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + extensions: + items: + properties: + dir: + type: string + image: + type: string + required: + - dir + - image + type: object + type: array + image: + type: string + resources: + properties: + claims: + items: + properties: + name: + type: string + request: + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + volumeClaimTemplate: + properties: + metadata: + properties: + annotations: + additionalProperties: + type: string + type: object + finalizers: + items: + type: string + type: array + labels: + additionalProperties: + type: string + type: object + name: + type: string + namespace: + type: string + type: object + spec: + properties: + accessModes: + items: + type: string + type: array + x-kubernetes-list-type: atomic + dataSource: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + required: + - kind + - name + type: object + x-kubernetes-map-type: atomic + dataSourceRef: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + namespace: + type: string + required: + - kind + - name + type: object + resources: + properties: + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + selector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + storageClassName: + type: string + volumeAttributesClassName: + type: string + volumeMode: + type: string + volumeName: + type: string + type: object + required: + - spec + type: object + volumeLimitSize: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + nginx: + properties: + attrs: + items: + properties: + name: + type: string + value: + type: string + valueFrom: + properties: + configMapKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + secretKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + configFile: + type: string + env: + items: + properties: + name: + type: string + value: + type: string + valueFrom: + properties: + configMapKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + secretKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + image: + type: string + resourceRequirements: + properties: + claims: + items: + properties: + name: + type: string + request: + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + volumeClaimTemplate: + properties: + metadata: + properties: + annotations: + additionalProperties: + type: string + type: object + finalizers: + items: + type: string + type: array + labels: + additionalProperties: + type: string + type: object + name: + type: string + namespace: + type: string + type: object + spec: + properties: + accessModes: + items: + type: string + type: array + x-kubernetes-list-type: atomic + dataSource: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + required: + - kind + - name + type: object + x-kubernetes-map-type: atomic + dataSourceRef: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + namespace: + type: string + required: + - kind + - name + type: object + resources: + properties: + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + selector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + storageClassName: + type: string + volumeAttributesClassName: + type: string + volumeMode: + type: string + volumeName: + type: string + type: object + required: + - spec + type: object + volumeLimitSize: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + nodejs: + properties: + env: + items: + properties: + name: + type: string + value: + type: string + valueFrom: + properties: + configMapKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + secretKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + image: + type: string + resourceRequirements: + properties: + claims: + items: + properties: + name: + type: string + request: + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + volumeClaimTemplate: + properties: + metadata: + properties: + annotations: + additionalProperties: + type: string + type: object + finalizers: + items: + type: string + type: array + labels: + additionalProperties: + type: string + type: object + name: + type: string + namespace: + type: string + type: object + spec: + properties: + accessModes: + items: + type: string + type: array + x-kubernetes-list-type: atomic + dataSource: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + required: + - kind + - name + type: object + x-kubernetes-map-type: atomic + dataSourceRef: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + namespace: + type: string + required: + - kind + - name + type: object + resources: + properties: + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + selector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + storageClassName: + type: string + volumeAttributesClassName: + type: string + volumeMode: + type: string + volumeName: + type: string + type: object + required: + - spec + type: object + volumeLimitSize: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + propagators: + items: + enum: + - tracecontext + - baggage + - b3 + - b3multi + - jaeger + - xray + - ottrace + - none + type: string + type: array + python: + properties: + env: + items: + properties: + name: + type: string + value: + type: string + valueFrom: + properties: + configMapKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + secretKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + image: + type: string + resourceRequirements: + properties: + claims: + items: + properties: + name: + type: string + request: + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + volumeClaimTemplate: + properties: + metadata: + properties: + annotations: + additionalProperties: + type: string + type: object + finalizers: + items: + type: string + type: array + labels: + additionalProperties: + type: string + type: object + name: + type: string + namespace: + type: string + type: object + spec: + properties: + accessModes: + items: + type: string + type: array + x-kubernetes-list-type: atomic + dataSource: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + required: + - kind + - name + type: object + x-kubernetes-map-type: atomic + dataSourceRef: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + namespace: + type: string + required: + - kind + - name + type: object + resources: + properties: + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + selector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + storageClassName: + type: string + volumeAttributesClassName: + type: string + volumeMode: + type: string + volumeName: + type: string + type: object + required: + - spec + type: object + volumeLimitSize: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + resource: + properties: + addK8sUIDAttributes: + type: boolean + resourceAttributes: + additionalProperties: + type: string + type: object + type: object + sampler: + properties: + argument: + type: string + type: + enum: + - always_on + - always_off + - traceidratio + - parentbased_always_on + - parentbased_always_off + - parentbased_traceidratio + - jaeger_remote + - xray + type: string + type: object + type: object + status: + type: object + type: object + served: true + storage: true + subresources: + status: {} +status: + acceptedNames: + kind: "" + plural: "" + conditions: null + storedVersions: null +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + cert-manager.io/inject-ca-from: opentelemetry-operator-system/opentelemetry-operator-serving-cert + controller-gen.kubebuilder.io/version: v0.17.0 + creationTimestamp: null + labels: + app.kubernetes.io/name: opentelemetry-operator + name: opampbridges.opentelemetry.io +spec: + group: opentelemetry.io + names: + kind: OpAMPBridge + listKind: OpAMPBridgeList + plural: opampbridges + singular: opampbridge + scope: Namespaced + versions: + - additionalPrinterColumns: + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + - description: OpenTelemetry Version + jsonPath: .status.version + name: Version + type: string + - jsonPath: .spec.endpoint + name: Endpoint + type: string + name: v1alpha1 + schema: + openAPIV3Schema: + properties: + apiVersion: + type: string + kind: + type: string + metadata: + type: object + spec: + properties: + affinity: + properties: + nodeAffinity: + properties: + preferredDuringSchedulingIgnoredDuringExecution: + items: + properties: + preference: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchFields: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + type: object + x-kubernetes-map-type: atomic + weight: + format: int32 + type: integer + required: + - preference + - weight + type: object + type: array + x-kubernetes-list-type: atomic + requiredDuringSchedulingIgnoredDuringExecution: + properties: + nodeSelectorTerms: + items: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchFields: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + type: object + x-kubernetes-map-type: atomic + type: array + x-kubernetes-list-type: atomic + required: + - nodeSelectorTerms + type: object + x-kubernetes-map-type: atomic + type: object + podAffinity: + properties: + preferredDuringSchedulingIgnoredDuringExecution: + items: + properties: + podAffinityTerm: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + type: string + required: + - topologyKey + type: object + weight: + format: int32 + type: integer + required: + - podAffinityTerm + - weight + type: object + type: array + x-kubernetes-list-type: atomic + requiredDuringSchedulingIgnoredDuringExecution: + items: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + type: string + required: + - topologyKey + type: object + type: array + x-kubernetes-list-type: atomic + type: object + podAntiAffinity: + properties: + preferredDuringSchedulingIgnoredDuringExecution: + items: + properties: + podAffinityTerm: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + type: string + required: + - topologyKey + type: object + weight: + format: int32 + type: integer + required: + - podAffinityTerm + - weight + type: object + type: array + x-kubernetes-list-type: atomic + requiredDuringSchedulingIgnoredDuringExecution: + items: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + type: string + required: + - topologyKey + type: object + type: array + x-kubernetes-list-type: atomic + type: object + type: object + capabilities: + additionalProperties: + type: boolean + type: object + componentsAllowed: + additionalProperties: + items: + type: string + type: array + type: object + endpoint: + type: string + env: + items: + properties: + name: + type: string + value: + type: string + valueFrom: + properties: + configMapKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + secretKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + envFrom: + items: + properties: + configMapRef: + properties: + name: + default: "" + type: string + optional: + type: boolean + type: object + x-kubernetes-map-type: atomic + prefix: + type: string + secretRef: + properties: + name: + default: "" + type: string + optional: + type: boolean + type: object + x-kubernetes-map-type: atomic + type: object + type: array + headers: + additionalProperties: + type: string + type: object + hostNetwork: + type: boolean + image: + type: string + imagePullPolicy: + type: string + ipFamilies: + items: + type: string + type: array + ipFamilyPolicy: + type: string + nodeSelector: + additionalProperties: + type: string + type: object + podAnnotations: + additionalProperties: + type: string + type: object + podDnsConfig: + properties: + nameservers: + items: + type: string + type: array + x-kubernetes-list-type: atomic + options: + items: + properties: + name: + type: string + value: + type: string + type: object + type: array + x-kubernetes-list-type: atomic + searches: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + podSecurityContext: + properties: + appArmorProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + fsGroup: + format: int64 + type: integer + fsGroupChangePolicy: + type: string + runAsGroup: + format: int64 + type: integer + runAsNonRoot: + type: boolean + runAsUser: + format: int64 + type: integer + seLinuxOptions: + properties: + level: + type: string + role: + type: string + type: + type: string + user: + type: string + type: object + seccompProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + supplementalGroups: + items: + format: int64 + type: integer + type: array + x-kubernetes-list-type: atomic + supplementalGroupsPolicy: + type: string + sysctls: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + windowsOptions: + properties: + gmsaCredentialSpec: + type: string + gmsaCredentialSpecName: + type: string + hostProcess: + type: boolean + runAsUserName: + type: string + type: object + type: object + ports: + items: + properties: + appProtocol: + type: string + name: + type: string + nodePort: + format: int32 + type: integer + port: + format: int32 + type: integer + protocol: + default: TCP + type: string + targetPort: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + type: array + x-kubernetes-list-type: atomic + priorityClassName: + type: string + replicas: + format: int32 + maximum: 1 + type: integer + resources: + properties: + claims: + items: + properties: + name: + type: string + request: + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + securityContext: + properties: + allowPrivilegeEscalation: + type: boolean + appArmorProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + capabilities: + properties: + add: + items: + type: string + type: array + x-kubernetes-list-type: atomic + drop: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + privileged: + type: boolean + procMount: + type: string + readOnlyRootFilesystem: + type: boolean + runAsGroup: + format: int64 + type: integer + runAsNonRoot: + type: boolean + runAsUser: + format: int64 + type: integer + seLinuxOptions: + properties: + level: + type: string + role: + type: string + type: + type: string + user: + type: string + type: object + seccompProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + windowsOptions: + properties: + gmsaCredentialSpec: + type: string + gmsaCredentialSpecName: + type: string + hostProcess: + type: boolean + runAsUserName: + type: string + type: object + type: object + serviceAccount: + type: string + tolerations: + items: + properties: + effect: + type: string + key: + type: string + operator: + type: string + tolerationSeconds: + format: int64 + type: integer + value: + type: string + type: object + type: array + topologySpreadConstraints: + items: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + maxSkew: + format: int32 + type: integer + minDomains: + format: int32 + type: integer + nodeAffinityPolicy: + type: string + nodeTaintsPolicy: + type: string + topologyKey: + type: string + whenUnsatisfiable: + type: string + required: + - maxSkew + - topologyKey + - whenUnsatisfiable + type: object + type: array + upgradeStrategy: + enum: + - automatic + - none + type: string + volumeMounts: + items: + properties: + mountPath: + type: string + mountPropagation: + type: string + name: + type: string + readOnly: + type: boolean + recursiveReadOnly: + type: string + subPath: + type: string + subPathExpr: + type: string + required: + - mountPath + - name + type: object + type: array + x-kubernetes-list-type: atomic + volumes: + items: + properties: + awsElasticBlockStore: + properties: + fsType: + type: string + partition: + format: int32 + type: integer + readOnly: + type: boolean + volumeID: + type: string + required: + - volumeID + type: object + azureDisk: + properties: + cachingMode: + type: string + diskName: + type: string + diskURI: + type: string + fsType: + default: ext4 + type: string + kind: + type: string + readOnly: + default: false + type: boolean + required: + - diskName + - diskURI + type: object + azureFile: + properties: + readOnly: + type: boolean + secretName: + type: string + shareName: + type: string + required: + - secretName + - shareName + type: object + cephfs: + properties: + monitors: + items: + type: string + type: array + x-kubernetes-list-type: atomic + path: + type: string + readOnly: + type: boolean + secretFile: + type: string + secretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + user: + type: string + required: + - monitors + type: object + cinder: + properties: + fsType: + type: string + readOnly: + type: boolean + secretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + volumeID: + type: string + required: + - volumeID + type: object + configMap: + properties: + defaultMode: + format: int32 + type: integer + items: + items: + properties: + key: + type: string + mode: + format: int32 + type: integer + path: + type: string + required: + - key + - path + type: object + type: array + x-kubernetes-list-type: atomic + name: + default: "" + type: string + optional: + type: boolean + type: object + x-kubernetes-map-type: atomic + csi: + properties: + driver: + type: string + fsType: + type: string + nodePublishSecretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + readOnly: + type: boolean + volumeAttributes: + additionalProperties: + type: string + type: object + required: + - driver + type: object + downwardAPI: + properties: + defaultMode: + format: int32 + type: integer + items: + items: + properties: + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + mode: + format: int32 + type: integer + path: + type: string + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + required: + - path + type: object + type: array + x-kubernetes-list-type: atomic + type: object + emptyDir: + properties: + medium: + type: string + sizeLimit: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + ephemeral: + properties: + volumeClaimTemplate: + properties: + metadata: + properties: + annotations: + additionalProperties: + type: string + type: object + finalizers: + items: + type: string + type: array + labels: + additionalProperties: + type: string + type: object + name: + type: string + namespace: + type: string + type: object + spec: + properties: + accessModes: + items: + type: string + type: array + x-kubernetes-list-type: atomic + dataSource: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + required: + - kind + - name + type: object + x-kubernetes-map-type: atomic + dataSourceRef: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + namespace: + type: string + required: + - kind + - name + type: object + resources: + properties: + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + selector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + storageClassName: + type: string + volumeAttributesClassName: + type: string + volumeMode: + type: string + volumeName: + type: string + type: object + required: + - spec + type: object + type: object + fc: + properties: + fsType: + type: string + lun: + format: int32 + type: integer + readOnly: + type: boolean + targetWWNs: + items: + type: string + type: array + x-kubernetes-list-type: atomic + wwids: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + flexVolume: + properties: + driver: + type: string + fsType: + type: string + options: + additionalProperties: + type: string + type: object + readOnly: + type: boolean + secretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + required: + - driver + type: object + flocker: + properties: + datasetName: + type: string + datasetUUID: + type: string + type: object + gcePersistentDisk: + properties: + fsType: + type: string + partition: + format: int32 + type: integer + pdName: + type: string + readOnly: + type: boolean + required: + - pdName + type: object + gitRepo: + properties: + directory: + type: string + repository: + type: string + revision: + type: string + required: + - repository + type: object + glusterfs: + properties: + endpoints: + type: string + path: + type: string + readOnly: + type: boolean + required: + - endpoints + - path + type: object + hostPath: + properties: + path: + type: string + type: + type: string + required: + - path + type: object + image: + properties: + pullPolicy: + type: string + reference: + type: string + type: object + iscsi: + properties: + chapAuthDiscovery: + type: boolean + chapAuthSession: + type: boolean + fsType: + type: string + initiatorName: + type: string + iqn: + type: string + iscsiInterface: + default: default + type: string + lun: + format: int32 + type: integer + portals: + items: + type: string + type: array + x-kubernetes-list-type: atomic + readOnly: + type: boolean + secretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + targetPortal: + type: string + required: + - iqn + - lun + - targetPortal + type: object + name: + type: string + nfs: + properties: + path: + type: string + readOnly: + type: boolean + server: + type: string + required: + - path + - server + type: object + persistentVolumeClaim: + properties: + claimName: + type: string + readOnly: + type: boolean + required: + - claimName + type: object + photonPersistentDisk: + properties: + fsType: + type: string + pdID: + type: string + required: + - pdID + type: object + portworxVolume: + properties: + fsType: + type: string + readOnly: + type: boolean + volumeID: + type: string + required: + - volumeID + type: object + projected: + properties: + defaultMode: + format: int32 + type: integer + sources: + items: + properties: + clusterTrustBundle: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + name: + type: string + optional: + type: boolean + path: + type: string + signerName: + type: string + required: + - path + type: object + configMap: + properties: + items: + items: + properties: + key: + type: string + mode: + format: int32 + type: integer + path: + type: string + required: + - key + - path + type: object + type: array + x-kubernetes-list-type: atomic + name: + default: "" + type: string + optional: + type: boolean + type: object + x-kubernetes-map-type: atomic + downwardAPI: + properties: + items: + items: + properties: + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + mode: + format: int32 + type: integer + path: + type: string + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + required: + - path + type: object + type: array + x-kubernetes-list-type: atomic + type: object + secret: + properties: + items: + items: + properties: + key: + type: string + mode: + format: int32 + type: integer + path: + type: string + required: + - key + - path + type: object + type: array + x-kubernetes-list-type: atomic + name: + default: "" + type: string + optional: + type: boolean + type: object + x-kubernetes-map-type: atomic + serviceAccountToken: + properties: + audience: + type: string + expirationSeconds: + format: int64 + type: integer + path: + type: string + required: + - path + type: object + type: object + type: array + x-kubernetes-list-type: atomic + type: object + quobyte: + properties: + group: + type: string + readOnly: + type: boolean + registry: + type: string + tenant: + type: string + user: + type: string + volume: + type: string + required: + - registry + - volume + type: object + rbd: + properties: + fsType: + type: string + image: + type: string + keyring: + default: /etc/ceph/keyring + type: string + monitors: + items: + type: string + type: array + x-kubernetes-list-type: atomic + pool: + default: rbd + type: string + readOnly: + type: boolean + secretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + user: + default: admin + type: string + required: + - image + - monitors + type: object + scaleIO: + properties: + fsType: + default: xfs + type: string + gateway: + type: string + protectionDomain: + type: string + readOnly: + type: boolean + secretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + sslEnabled: + type: boolean + storageMode: + default: ThinProvisioned + type: string + storagePool: + type: string + system: + type: string + volumeName: + type: string + required: + - gateway + - secretRef + - system + type: object + secret: + properties: + defaultMode: + format: int32 + type: integer + items: + items: + properties: + key: + type: string + mode: + format: int32 + type: integer + path: + type: string + required: + - key + - path + type: object + type: array + x-kubernetes-list-type: atomic + optional: + type: boolean + secretName: + type: string + type: object + storageos: + properties: + fsType: + type: string + readOnly: + type: boolean + secretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + volumeName: + type: string + volumeNamespace: + type: string + type: object + vsphereVolume: + properties: + fsType: + type: string + storagePolicyID: + type: string + storagePolicyName: + type: string + volumePath: + type: string + required: + - volumePath + type: object + required: + - name + type: object + type: array + x-kubernetes-list-type: atomic + required: + - capabilities + - endpoint + type: object + status: + properties: + version: + type: string + type: object + type: object + served: true + storage: true + subresources: + status: {} +status: + acceptedNames: + kind: "" + plural: "" + conditions: null + storedVersions: null +--- +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + cert-manager.io/inject-ca-from: opentelemetry-operator-system/opentelemetry-operator-serving-cert + controller-gen.kubebuilder.io/version: v0.17.0 + creationTimestamp: null + labels: + app.kubernetes.io/name: opentelemetry-operator + name: opentelemetrycollectors.opentelemetry.io +spec: + conversion: + strategy: Webhook + webhook: + clientConfig: + service: + name: opentelemetry-operator-webhook-service + namespace: opentelemetry-operator-system + path: /convert + conversionReviewVersions: + - v1alpha1 + - v1beta1 + group: opentelemetry.io + names: + kind: OpenTelemetryCollector + listKind: OpenTelemetryCollectorList + plural: opentelemetrycollectors + shortNames: + - otelcol + - otelcols + singular: opentelemetrycollector + scope: Namespaced + versions: + - additionalPrinterColumns: + - description: Deployment Mode + jsonPath: .spec.mode + name: Mode + type: string + - description: OpenTelemetry Version + jsonPath: .status.version + name: Version + type: string + - jsonPath: .status.scale.statusReplicas + name: Ready + type: string + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + - jsonPath: .status.image + name: Image + type: string + - description: Management State + jsonPath: .spec.managementState + name: Management + type: string + deprecated: true + deprecationWarning: OpenTelemetryCollector v1alpha1 is deprecated. Migrate to + v1beta1. + name: v1alpha1 + schema: + openAPIV3Schema: + properties: + apiVersion: + type: string + kind: + type: string + metadata: + type: object + spec: + properties: + additionalContainers: + items: + properties: + args: + items: + type: string + type: array + x-kubernetes-list-type: atomic + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + env: + items: + properties: + name: + type: string + value: + type: string + valueFrom: + properties: + configMapKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + secretKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + envFrom: + items: + properties: + configMapRef: + properties: + name: + default: "" + type: string + optional: + type: boolean + type: object + x-kubernetes-map-type: atomic + prefix: + type: string + secretRef: + properties: + name: + default: "" + type: string + optional: + type: boolean + type: object + x-kubernetes-map-type: atomic + type: object + type: array + x-kubernetes-list-type: atomic + image: + type: string + imagePullPolicy: + type: string + lifecycle: + properties: + postStart: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + sleep: + properties: + seconds: + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + type: object + preStop: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + sleep: + properties: + seconds: + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + type: object + type: object + livenessProbe: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + failureThreshold: + format: int32 + type: integer + grpc: + properties: + port: + format: int32 + type: integer + service: + default: "" + type: string + required: + - port + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + initialDelaySeconds: + format: int32 + type: integer + periodSeconds: + format: int32 + type: integer + successThreshold: + format: int32 + type: integer + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + terminationGracePeriodSeconds: + format: int64 + type: integer + timeoutSeconds: + format: int32 + type: integer + type: object + name: + type: string + ports: + items: + properties: + containerPort: + format: int32 + type: integer + hostIP: + type: string + hostPort: + format: int32 + type: integer + name: + type: string + protocol: + default: TCP + type: string + required: + - containerPort + type: object + type: array + x-kubernetes-list-map-keys: + - containerPort + - protocol + x-kubernetes-list-type: map + readinessProbe: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + failureThreshold: + format: int32 + type: integer + grpc: + properties: + port: + format: int32 + type: integer + service: + default: "" + type: string + required: + - port + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + initialDelaySeconds: + format: int32 + type: integer + periodSeconds: + format: int32 + type: integer + successThreshold: + format: int32 + type: integer + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + terminationGracePeriodSeconds: + format: int64 + type: integer + timeoutSeconds: + format: int32 + type: integer + type: object + resizePolicy: + items: + properties: + resourceName: + type: string + restartPolicy: + type: string + required: + - resourceName + - restartPolicy + type: object + type: array + x-kubernetes-list-type: atomic + resources: + properties: + claims: + items: + properties: + name: + type: string + request: + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + restartPolicy: + type: string + securityContext: + properties: + allowPrivilegeEscalation: + type: boolean + appArmorProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + capabilities: + properties: + add: + items: + type: string + type: array + x-kubernetes-list-type: atomic + drop: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + privileged: + type: boolean + procMount: + type: string + readOnlyRootFilesystem: + type: boolean + runAsGroup: + format: int64 + type: integer + runAsNonRoot: + type: boolean + runAsUser: + format: int64 + type: integer + seLinuxOptions: + properties: + level: + type: string + role: + type: string + type: + type: string + user: + type: string + type: object + seccompProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + windowsOptions: + properties: + gmsaCredentialSpec: + type: string + gmsaCredentialSpecName: + type: string + hostProcess: + type: boolean + runAsUserName: + type: string + type: object + type: object + startupProbe: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + failureThreshold: + format: int32 + type: integer + grpc: + properties: + port: + format: int32 + type: integer + service: + default: "" + type: string + required: + - port + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + initialDelaySeconds: + format: int32 + type: integer + periodSeconds: + format: int32 + type: integer + successThreshold: + format: int32 + type: integer + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + terminationGracePeriodSeconds: + format: int64 + type: integer + timeoutSeconds: + format: int32 + type: integer + type: object + stdin: + type: boolean + stdinOnce: + type: boolean + terminationMessagePath: + type: string + terminationMessagePolicy: + type: string + tty: + type: boolean + volumeDevices: + items: + properties: + devicePath: + type: string + name: + type: string + required: + - devicePath + - name + type: object + type: array + x-kubernetes-list-map-keys: + - devicePath + x-kubernetes-list-type: map + volumeMounts: + items: + properties: + mountPath: + type: string + mountPropagation: + type: string + name: + type: string + readOnly: + type: boolean + recursiveReadOnly: + type: string + subPath: + type: string + subPathExpr: + type: string + required: + - mountPath + - name + type: object + type: array + x-kubernetes-list-map-keys: + - mountPath + x-kubernetes-list-type: map + workingDir: + type: string + required: + - name + type: object + type: array + affinity: + properties: + nodeAffinity: + properties: + preferredDuringSchedulingIgnoredDuringExecution: + items: + properties: + preference: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchFields: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + type: object + x-kubernetes-map-type: atomic + weight: + format: int32 + type: integer + required: + - preference + - weight + type: object + type: array + x-kubernetes-list-type: atomic + requiredDuringSchedulingIgnoredDuringExecution: + properties: + nodeSelectorTerms: + items: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchFields: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + type: object + x-kubernetes-map-type: atomic + type: array + x-kubernetes-list-type: atomic + required: + - nodeSelectorTerms + type: object + x-kubernetes-map-type: atomic + type: object + podAffinity: + properties: + preferredDuringSchedulingIgnoredDuringExecution: + items: + properties: + podAffinityTerm: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + type: string + required: + - topologyKey + type: object + weight: + format: int32 + type: integer + required: + - podAffinityTerm + - weight + type: object + type: array + x-kubernetes-list-type: atomic + requiredDuringSchedulingIgnoredDuringExecution: + items: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + type: string + required: + - topologyKey + type: object + type: array + x-kubernetes-list-type: atomic + type: object + podAntiAffinity: + properties: + preferredDuringSchedulingIgnoredDuringExecution: + items: + properties: + podAffinityTerm: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + type: string + required: + - topologyKey + type: object + weight: + format: int32 + type: integer + required: + - podAffinityTerm + - weight + type: object + type: array + x-kubernetes-list-type: atomic + requiredDuringSchedulingIgnoredDuringExecution: + items: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + type: string + required: + - topologyKey + type: object + type: array + x-kubernetes-list-type: atomic + type: object + type: object + args: + additionalProperties: + type: string + type: object + autoscaler: + properties: + behavior: + properties: + scaleDown: + properties: + policies: + items: + properties: + periodSeconds: + format: int32 + type: integer + type: + type: string + value: + format: int32 + type: integer + required: + - periodSeconds + - type + - value + type: object + type: array + x-kubernetes-list-type: atomic + selectPolicy: + type: string + stabilizationWindowSeconds: + format: int32 + type: integer + type: object + scaleUp: + properties: + policies: + items: + properties: + periodSeconds: + format: int32 + type: integer + type: + type: string + value: + format: int32 + type: integer + required: + - periodSeconds + - type + - value + type: object + type: array + x-kubernetes-list-type: atomic + selectPolicy: + type: string + stabilizationWindowSeconds: + format: int32 + type: integer + type: object + type: object + maxReplicas: + format: int32 + type: integer + metrics: + items: + properties: + pods: + properties: + metric: + properties: + name: + type: string + selector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + required: + - name + type: object + target: + properties: + averageUtilization: + format: int32 + type: integer + averageValue: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: + type: string + value: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + required: + - type + type: object + required: + - metric + - target + type: object + type: + type: string + required: + - type + type: object + type: array + minReplicas: + format: int32 + type: integer + targetCPUUtilization: + format: int32 + type: integer + targetMemoryUtilization: + format: int32 + type: integer + type: object + config: + type: string + configmaps: + items: + properties: + mountpath: + type: string + name: + type: string + required: + - mountpath + - name + type: object + type: array + deploymentUpdateStrategy: + properties: + rollingUpdate: + properties: + maxSurge: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + maxUnavailable: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + type: object + type: + type: string + type: object + env: + items: + properties: + name: + type: string + value: + type: string + valueFrom: + properties: + configMapKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + secretKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + envFrom: + items: + properties: + configMapRef: + properties: + name: + default: "" + type: string + optional: + type: boolean + type: object + x-kubernetes-map-type: atomic + prefix: + type: string + secretRef: + properties: + name: + default: "" + type: string + optional: + type: boolean + type: object + x-kubernetes-map-type: atomic + type: object + type: array + hostNetwork: + type: boolean + image: + type: string + imagePullPolicy: + type: string + ingress: + properties: + annotations: + additionalProperties: + type: string + type: object + hostname: + type: string + ingressClassName: + type: string + route: + properties: + termination: + enum: + - insecure + - edge + - passthrough + - reencrypt + type: string + type: object + ruleType: + enum: + - path + - subdomain + type: string + tls: + items: + properties: + hosts: + items: + type: string + type: array + x-kubernetes-list-type: atomic + secretName: + type: string + type: object + type: array + type: + enum: + - ingress + - route + type: string + type: object + initContainers: + items: + properties: + args: + items: + type: string + type: array + x-kubernetes-list-type: atomic + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + env: + items: + properties: + name: + type: string + value: + type: string + valueFrom: + properties: + configMapKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + secretKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + envFrom: + items: + properties: + configMapRef: + properties: + name: + default: "" + type: string + optional: + type: boolean + type: object + x-kubernetes-map-type: atomic + prefix: + type: string + secretRef: + properties: + name: + default: "" + type: string + optional: + type: boolean + type: object + x-kubernetes-map-type: atomic + type: object + type: array + x-kubernetes-list-type: atomic + image: + type: string + imagePullPolicy: + type: string + lifecycle: + properties: + postStart: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + sleep: + properties: + seconds: + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + type: object + preStop: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + sleep: + properties: + seconds: + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + type: object + type: object + livenessProbe: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + failureThreshold: + format: int32 + type: integer + grpc: + properties: + port: + format: int32 + type: integer + service: + default: "" + type: string + required: + - port + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + initialDelaySeconds: + format: int32 + type: integer + periodSeconds: + format: int32 + type: integer + successThreshold: + format: int32 + type: integer + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + terminationGracePeriodSeconds: + format: int64 + type: integer + timeoutSeconds: + format: int32 + type: integer + type: object + name: + type: string + ports: + items: + properties: + containerPort: + format: int32 + type: integer + hostIP: + type: string + hostPort: + format: int32 + type: integer + name: + type: string + protocol: + default: TCP + type: string + required: + - containerPort + type: object + type: array + x-kubernetes-list-map-keys: + - containerPort + - protocol + x-kubernetes-list-type: map + readinessProbe: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + failureThreshold: + format: int32 + type: integer + grpc: + properties: + port: + format: int32 + type: integer + service: + default: "" + type: string + required: + - port + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + initialDelaySeconds: + format: int32 + type: integer + periodSeconds: + format: int32 + type: integer + successThreshold: + format: int32 + type: integer + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + terminationGracePeriodSeconds: + format: int64 + type: integer + timeoutSeconds: + format: int32 + type: integer + type: object + resizePolicy: + items: + properties: + resourceName: + type: string + restartPolicy: + type: string + required: + - resourceName + - restartPolicy + type: object + type: array + x-kubernetes-list-type: atomic + resources: + properties: + claims: + items: + properties: + name: + type: string + request: + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + restartPolicy: + type: string + securityContext: + properties: + allowPrivilegeEscalation: + type: boolean + appArmorProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + capabilities: + properties: + add: + items: + type: string + type: array + x-kubernetes-list-type: atomic + drop: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + privileged: + type: boolean + procMount: + type: string + readOnlyRootFilesystem: + type: boolean + runAsGroup: + format: int64 + type: integer + runAsNonRoot: + type: boolean + runAsUser: + format: int64 + type: integer + seLinuxOptions: + properties: + level: + type: string + role: + type: string + type: + type: string + user: + type: string + type: object + seccompProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + windowsOptions: + properties: + gmsaCredentialSpec: + type: string + gmsaCredentialSpecName: + type: string + hostProcess: + type: boolean + runAsUserName: + type: string + type: object + type: object + startupProbe: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + failureThreshold: + format: int32 + type: integer + grpc: + properties: + port: + format: int32 + type: integer + service: + default: "" + type: string + required: + - port + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + initialDelaySeconds: + format: int32 + type: integer + periodSeconds: + format: int32 + type: integer + successThreshold: + format: int32 + type: integer + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + terminationGracePeriodSeconds: + format: int64 + type: integer + timeoutSeconds: + format: int32 + type: integer + type: object + stdin: + type: boolean + stdinOnce: + type: boolean + terminationMessagePath: + type: string + terminationMessagePolicy: + type: string + tty: + type: boolean + volumeDevices: + items: + properties: + devicePath: + type: string + name: + type: string + required: + - devicePath + - name + type: object + type: array + x-kubernetes-list-map-keys: + - devicePath + x-kubernetes-list-type: map + volumeMounts: + items: + properties: + mountPath: + type: string + mountPropagation: + type: string + name: + type: string + readOnly: + type: boolean + recursiveReadOnly: + type: string + subPath: + type: string + subPathExpr: + type: string + required: + - mountPath + - name + type: object + type: array + x-kubernetes-list-map-keys: + - mountPath + x-kubernetes-list-type: map + workingDir: + type: string + required: + - name + type: object + type: array + lifecycle: + properties: + postStart: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + sleep: + properties: + seconds: + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + type: object + preStop: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + sleep: + properties: + seconds: + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + type: object + type: object + livenessProbe: + properties: + failureThreshold: + format: int32 + type: integer + initialDelaySeconds: + format: int32 + type: integer + periodSeconds: + format: int32 + type: integer + successThreshold: + format: int32 + type: integer + terminationGracePeriodSeconds: + format: int64 + type: integer + timeoutSeconds: + format: int32 + type: integer + type: object + managementState: + default: managed + enum: + - managed + - unmanaged + type: string + maxReplicas: + format: int32 + type: integer + minReplicas: + format: int32 + type: integer + mode: + enum: + - daemonset + - deployment + - sidecar + - statefulset + type: string + nodeSelector: + additionalProperties: + type: string + type: object + observability: + properties: + metrics: + properties: + DisablePrometheusAnnotations: + type: boolean + enableMetrics: + type: boolean + type: object + type: object + podAnnotations: + additionalProperties: + type: string + type: object + podDisruptionBudget: + properties: + maxUnavailable: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + minAvailable: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + type: object + podSecurityContext: + properties: + appArmorProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + fsGroup: + format: int64 + type: integer + fsGroupChangePolicy: + type: string + runAsGroup: + format: int64 + type: integer + runAsNonRoot: + type: boolean + runAsUser: + format: int64 + type: integer + seLinuxOptions: + properties: + level: + type: string + role: + type: string + type: + type: string + user: + type: string + type: object + seccompProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + supplementalGroups: + items: + format: int64 + type: integer + type: array + x-kubernetes-list-type: atomic + supplementalGroupsPolicy: + type: string + sysctls: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + windowsOptions: + properties: + gmsaCredentialSpec: + type: string + gmsaCredentialSpecName: + type: string + hostProcess: + type: boolean + runAsUserName: + type: string + type: object + type: object + ports: + items: + properties: + appProtocol: + type: string + hostPort: + format: int32 + type: integer + name: + type: string + nodePort: + format: int32 + type: integer + port: + format: int32 + type: integer + protocol: + default: TCP + type: string + targetPort: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + type: array + x-kubernetes-list-type: atomic + priorityClassName: + type: string + replicas: + format: int32 + type: integer + resources: + properties: + claims: + items: + properties: + name: + type: string + request: + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + securityContext: + properties: + allowPrivilegeEscalation: + type: boolean + appArmorProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + capabilities: + properties: + add: + items: + type: string + type: array + x-kubernetes-list-type: atomic + drop: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + privileged: + type: boolean + procMount: + type: string + readOnlyRootFilesystem: + type: boolean + runAsGroup: + format: int64 + type: integer + runAsNonRoot: + type: boolean + runAsUser: + format: int64 + type: integer + seLinuxOptions: + properties: + level: + type: string + role: + type: string + type: + type: string + user: + type: string + type: object + seccompProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + windowsOptions: + properties: + gmsaCredentialSpec: + type: string + gmsaCredentialSpecName: + type: string + hostProcess: + type: boolean + runAsUserName: + type: string + type: object + type: object + serviceAccount: + type: string + shareProcessNamespace: + type: boolean + targetAllocator: + properties: + affinity: + properties: + nodeAffinity: + properties: + preferredDuringSchedulingIgnoredDuringExecution: + items: + properties: + preference: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchFields: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + type: object + x-kubernetes-map-type: atomic + weight: + format: int32 + type: integer + required: + - preference + - weight + type: object + type: array + x-kubernetes-list-type: atomic + requiredDuringSchedulingIgnoredDuringExecution: + properties: + nodeSelectorTerms: + items: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchFields: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + type: object + x-kubernetes-map-type: atomic + type: array + x-kubernetes-list-type: atomic + required: + - nodeSelectorTerms + type: object + x-kubernetes-map-type: atomic + type: object + podAffinity: + properties: + preferredDuringSchedulingIgnoredDuringExecution: + items: + properties: + podAffinityTerm: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + type: string + required: + - topologyKey + type: object + weight: + format: int32 + type: integer + required: + - podAffinityTerm + - weight + type: object + type: array + x-kubernetes-list-type: atomic + requiredDuringSchedulingIgnoredDuringExecution: + items: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + type: string + required: + - topologyKey + type: object + type: array + x-kubernetes-list-type: atomic + type: object + podAntiAffinity: + properties: + preferredDuringSchedulingIgnoredDuringExecution: + items: + properties: + podAffinityTerm: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + type: string + required: + - topologyKey + type: object + weight: + format: int32 + type: integer + required: + - podAffinityTerm + - weight + type: object + type: array + x-kubernetes-list-type: atomic + requiredDuringSchedulingIgnoredDuringExecution: + items: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + type: string + required: + - topologyKey + type: object + type: array + x-kubernetes-list-type: atomic + type: object + type: object + allocationStrategy: + default: consistent-hashing + enum: + - least-weighted + - consistent-hashing + - per-node + type: string + enabled: + type: boolean + env: + items: + properties: + name: + type: string + value: + type: string + valueFrom: + properties: + configMapKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + secretKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + filterStrategy: + default: relabel-config + type: string + image: + type: string + nodeSelector: + additionalProperties: + type: string + type: object + observability: + properties: + metrics: + properties: + DisablePrometheusAnnotations: + type: boolean + enableMetrics: + type: boolean + type: object + type: object + podDisruptionBudget: + properties: + maxUnavailable: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + minAvailable: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + type: object + podSecurityContext: + properties: + appArmorProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + fsGroup: + format: int64 + type: integer + fsGroupChangePolicy: + type: string + runAsGroup: + format: int64 + type: integer + runAsNonRoot: + type: boolean + runAsUser: + format: int64 + type: integer + seLinuxOptions: + properties: + level: + type: string + role: + type: string + type: + type: string + user: + type: string + type: object + seccompProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + supplementalGroups: + items: + format: int64 + type: integer + type: array + x-kubernetes-list-type: atomic + supplementalGroupsPolicy: + type: string + sysctls: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + windowsOptions: + properties: + gmsaCredentialSpec: + type: string + gmsaCredentialSpecName: + type: string + hostProcess: + type: boolean + runAsUserName: + type: string + type: object + type: object + prometheusCR: + properties: + enabled: + type: boolean + podMonitorSelector: + additionalProperties: + type: string + type: object + scrapeInterval: + default: 30s + format: duration + type: string + serviceMonitorSelector: + additionalProperties: + type: string + type: object + type: object + replicas: + format: int32 + type: integer + resources: + properties: + claims: + items: + properties: + name: + type: string + request: + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + securityContext: + properties: + allowPrivilegeEscalation: + type: boolean + appArmorProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + capabilities: + properties: + add: + items: + type: string + type: array + x-kubernetes-list-type: atomic + drop: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + privileged: + type: boolean + procMount: + type: string + readOnlyRootFilesystem: + type: boolean + runAsGroup: + format: int64 + type: integer + runAsNonRoot: + type: boolean + runAsUser: + format: int64 + type: integer + seLinuxOptions: + properties: + level: + type: string + role: + type: string + type: + type: string + user: + type: string + type: object + seccompProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + windowsOptions: + properties: + gmsaCredentialSpec: + type: string + gmsaCredentialSpecName: + type: string + hostProcess: + type: boolean + runAsUserName: + type: string + type: object + type: object + serviceAccount: + type: string + tolerations: + items: + properties: + effect: + type: string + key: + type: string + operator: + type: string + tolerationSeconds: + format: int64 + type: integer + value: + type: string + type: object + type: array + topologySpreadConstraints: + items: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + maxSkew: + format: int32 + type: integer + minDomains: + format: int32 + type: integer + nodeAffinityPolicy: + type: string + nodeTaintsPolicy: + type: string + topologyKey: + type: string + whenUnsatisfiable: + type: string + required: + - maxSkew + - topologyKey + - whenUnsatisfiable + type: object + type: array + type: object + terminationGracePeriodSeconds: + format: int64 + type: integer + tolerations: + items: + properties: + effect: + type: string + key: + type: string + operator: + type: string + tolerationSeconds: + format: int64 + type: integer + value: + type: string + type: object + type: array + topologySpreadConstraints: + items: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + maxSkew: + format: int32 + type: integer + minDomains: + format: int32 + type: integer + nodeAffinityPolicy: + type: string + nodeTaintsPolicy: + type: string + topologyKey: + type: string + whenUnsatisfiable: + type: string + required: + - maxSkew + - topologyKey + - whenUnsatisfiable + type: object + type: array + updateStrategy: + properties: + rollingUpdate: + properties: + maxSurge: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + maxUnavailable: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + type: object + type: + type: string + type: object + upgradeStrategy: + enum: + - automatic + - none + type: string + volumeClaimTemplates: + items: + properties: + apiVersion: + type: string + kind: + type: string + metadata: + properties: + annotations: + additionalProperties: + type: string + type: object + finalizers: + items: + type: string + type: array + labels: + additionalProperties: + type: string + type: object + name: + type: string + namespace: + type: string + type: object + spec: + properties: + accessModes: + items: + type: string + type: array + x-kubernetes-list-type: atomic + dataSource: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + required: + - kind + - name + type: object + x-kubernetes-map-type: atomic + dataSourceRef: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + namespace: + type: string + required: + - kind + - name + type: object + resources: + properties: + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + selector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + storageClassName: + type: string + volumeAttributesClassName: + type: string + volumeMode: + type: string + volumeName: + type: string + type: object + status: + properties: + accessModes: + items: + type: string + type: array + x-kubernetes-list-type: atomic + allocatedResourceStatuses: + additionalProperties: + type: string + type: object + x-kubernetes-map-type: granular + allocatedResources: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + capacity: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + conditions: + items: + properties: + lastProbeTime: + format: date-time + type: string + lastTransitionTime: + format: date-time + type: string + message: + type: string + reason: + type: string + status: + type: string + type: + type: string + required: + - status + - type + type: object + type: array + x-kubernetes-list-map-keys: + - type + x-kubernetes-list-type: map + currentVolumeAttributesClassName: + type: string + modifyVolumeStatus: + properties: + status: + type: string + targetVolumeAttributesClassName: + type: string + required: + - status + type: object + phase: + type: string + type: object + type: object + type: array + x-kubernetes-list-type: atomic + volumeMounts: + items: + properties: + mountPath: + type: string + mountPropagation: + type: string + name: + type: string + readOnly: + type: boolean + recursiveReadOnly: + type: string + subPath: + type: string + subPathExpr: + type: string + required: + - mountPath + - name + type: object + type: array + x-kubernetes-list-type: atomic + volumes: + items: + properties: + awsElasticBlockStore: + properties: + fsType: + type: string + partition: + format: int32 + type: integer + readOnly: + type: boolean + volumeID: + type: string + required: + - volumeID + type: object + azureDisk: + properties: + cachingMode: + type: string + diskName: + type: string + diskURI: + type: string + fsType: + default: ext4 + type: string + kind: + type: string + readOnly: + default: false + type: boolean + required: + - diskName + - diskURI + type: object + azureFile: + properties: + readOnly: + type: boolean + secretName: + type: string + shareName: + type: string + required: + - secretName + - shareName + type: object + cephfs: + properties: + monitors: + items: + type: string + type: array + x-kubernetes-list-type: atomic + path: + type: string + readOnly: + type: boolean + secretFile: + type: string + secretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + user: + type: string + required: + - monitors + type: object + cinder: + properties: + fsType: + type: string + readOnly: + type: boolean + secretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + volumeID: + type: string + required: + - volumeID + type: object + configMap: + properties: + defaultMode: + format: int32 + type: integer + items: + items: + properties: + key: + type: string + mode: + format: int32 + type: integer + path: + type: string + required: + - key + - path + type: object + type: array + x-kubernetes-list-type: atomic + name: + default: "" + type: string + optional: + type: boolean + type: object + x-kubernetes-map-type: atomic + csi: + properties: + driver: + type: string + fsType: + type: string + nodePublishSecretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + readOnly: + type: boolean + volumeAttributes: + additionalProperties: + type: string + type: object + required: + - driver + type: object + downwardAPI: + properties: + defaultMode: + format: int32 + type: integer + items: + items: + properties: + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + mode: + format: int32 + type: integer + path: + type: string + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + required: + - path + type: object + type: array + x-kubernetes-list-type: atomic + type: object + emptyDir: + properties: + medium: + type: string + sizeLimit: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + ephemeral: + properties: + volumeClaimTemplate: + properties: + metadata: + properties: + annotations: + additionalProperties: + type: string + type: object + finalizers: + items: + type: string + type: array + labels: + additionalProperties: + type: string + type: object + name: + type: string + namespace: + type: string + type: object + spec: + properties: + accessModes: + items: + type: string + type: array + x-kubernetes-list-type: atomic + dataSource: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + required: + - kind + - name + type: object + x-kubernetes-map-type: atomic + dataSourceRef: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + namespace: + type: string + required: + - kind + - name + type: object + resources: + properties: + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + selector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + storageClassName: + type: string + volumeAttributesClassName: + type: string + volumeMode: + type: string + volumeName: + type: string + type: object + required: + - spec + type: object + type: object + fc: + properties: + fsType: + type: string + lun: + format: int32 + type: integer + readOnly: + type: boolean + targetWWNs: + items: + type: string + type: array + x-kubernetes-list-type: atomic + wwids: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + flexVolume: + properties: + driver: + type: string + fsType: + type: string + options: + additionalProperties: + type: string + type: object + readOnly: + type: boolean + secretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + required: + - driver + type: object + flocker: + properties: + datasetName: + type: string + datasetUUID: + type: string + type: object + gcePersistentDisk: + properties: + fsType: + type: string + partition: + format: int32 + type: integer + pdName: + type: string + readOnly: + type: boolean + required: + - pdName + type: object + gitRepo: + properties: + directory: + type: string + repository: + type: string + revision: + type: string + required: + - repository + type: object + glusterfs: + properties: + endpoints: + type: string + path: + type: string + readOnly: + type: boolean + required: + - endpoints + - path + type: object + hostPath: + properties: + path: + type: string + type: + type: string + required: + - path + type: object + image: + properties: + pullPolicy: + type: string + reference: + type: string + type: object + iscsi: + properties: + chapAuthDiscovery: + type: boolean + chapAuthSession: + type: boolean + fsType: + type: string + initiatorName: + type: string + iqn: + type: string + iscsiInterface: + default: default + type: string + lun: + format: int32 + type: integer + portals: + items: + type: string + type: array + x-kubernetes-list-type: atomic + readOnly: + type: boolean + secretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + targetPortal: + type: string + required: + - iqn + - lun + - targetPortal + type: object + name: + type: string + nfs: + properties: + path: + type: string + readOnly: + type: boolean + server: + type: string + required: + - path + - server + type: object + persistentVolumeClaim: + properties: + claimName: + type: string + readOnly: + type: boolean + required: + - claimName + type: object + photonPersistentDisk: + properties: + fsType: + type: string + pdID: + type: string + required: + - pdID + type: object + portworxVolume: + properties: + fsType: + type: string + readOnly: + type: boolean + volumeID: + type: string + required: + - volumeID + type: object + projected: + properties: + defaultMode: + format: int32 + type: integer + sources: + items: + properties: + clusterTrustBundle: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + name: + type: string + optional: + type: boolean + path: + type: string + signerName: + type: string + required: + - path + type: object + configMap: + properties: + items: + items: + properties: + key: + type: string + mode: + format: int32 + type: integer + path: + type: string + required: + - key + - path + type: object + type: array + x-kubernetes-list-type: atomic + name: + default: "" + type: string + optional: + type: boolean + type: object + x-kubernetes-map-type: atomic + downwardAPI: + properties: + items: + items: + properties: + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + mode: + format: int32 + type: integer + path: + type: string + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + required: + - path + type: object + type: array + x-kubernetes-list-type: atomic + type: object + secret: + properties: + items: + items: + properties: + key: + type: string + mode: + format: int32 + type: integer + path: + type: string + required: + - key + - path + type: object + type: array + x-kubernetes-list-type: atomic + name: + default: "" + type: string + optional: + type: boolean + type: object + x-kubernetes-map-type: atomic + serviceAccountToken: + properties: + audience: + type: string + expirationSeconds: + format: int64 + type: integer + path: + type: string + required: + - path + type: object + type: object + type: array + x-kubernetes-list-type: atomic + type: object + quobyte: + properties: + group: + type: string + readOnly: + type: boolean + registry: + type: string + tenant: + type: string + user: + type: string + volume: + type: string + required: + - registry + - volume + type: object + rbd: + properties: + fsType: + type: string + image: + type: string + keyring: + default: /etc/ceph/keyring + type: string + monitors: + items: + type: string + type: array + x-kubernetes-list-type: atomic + pool: + default: rbd + type: string + readOnly: + type: boolean + secretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + user: + default: admin + type: string + required: + - image + - monitors + type: object + scaleIO: + properties: + fsType: + default: xfs + type: string + gateway: + type: string + protectionDomain: + type: string + readOnly: + type: boolean + secretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + sslEnabled: + type: boolean + storageMode: + default: ThinProvisioned + type: string + storagePool: + type: string + system: + type: string + volumeName: + type: string + required: + - gateway + - secretRef + - system + type: object + secret: + properties: + defaultMode: + format: int32 + type: integer + items: + items: + properties: + key: + type: string + mode: + format: int32 + type: integer + path: + type: string + required: + - key + - path + type: object + type: array + x-kubernetes-list-type: atomic + optional: + type: boolean + secretName: + type: string + type: object + storageos: + properties: + fsType: + type: string + readOnly: + type: boolean + secretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + volumeName: + type: string + volumeNamespace: + type: string + type: object + vsphereVolume: + properties: + fsType: + type: string + storagePolicyID: + type: string + storagePolicyName: + type: string + volumePath: + type: string + required: + - volumePath + type: object + required: + - name + type: object + type: array + x-kubernetes-list-type: atomic + required: + - config + - managementState + type: object + status: + properties: + image: + type: string + messages: + items: + type: string + type: array + x-kubernetes-list-type: atomic + replicas: + format: int32 + type: integer + scale: + properties: + replicas: + format: int32 + type: integer + selector: + type: string + statusReplicas: + type: string + type: object + version: + type: string + type: object + type: object + served: true + storage: false + subresources: + scale: + labelSelectorPath: .status.scale.selector + specReplicasPath: .spec.replicas + statusReplicasPath: .status.scale.replicas + status: {} + - additionalPrinterColumns: + - description: Deployment Mode + jsonPath: .spec.mode + name: Mode + type: string + - description: OpenTelemetry Version + jsonPath: .status.version + name: Version + type: string + - jsonPath: .status.scale.statusReplicas + name: Ready + type: string + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + - jsonPath: .status.image + name: Image + type: string + - description: Management State + jsonPath: .spec.managementState + name: Management + type: string + name: v1beta1 + schema: + openAPIV3Schema: + properties: + apiVersion: + type: string + kind: + type: string + metadata: + type: object + spec: + properties: + additionalContainers: + items: + properties: + args: + items: + type: string + type: array + x-kubernetes-list-type: atomic + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + env: + items: + properties: + name: + type: string + value: + type: string + valueFrom: + properties: + configMapKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + secretKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + envFrom: + items: + properties: + configMapRef: + properties: + name: + default: "" + type: string + optional: + type: boolean + type: object + x-kubernetes-map-type: atomic + prefix: + type: string + secretRef: + properties: + name: + default: "" + type: string + optional: + type: boolean + type: object + x-kubernetes-map-type: atomic + type: object + type: array + x-kubernetes-list-type: atomic + image: + type: string + imagePullPolicy: + type: string + lifecycle: + properties: + postStart: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + sleep: + properties: + seconds: + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + type: object + preStop: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + sleep: + properties: + seconds: + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + type: object + type: object + livenessProbe: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + failureThreshold: + format: int32 + type: integer + grpc: + properties: + port: + format: int32 + type: integer + service: + default: "" + type: string + required: + - port + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + initialDelaySeconds: + format: int32 + type: integer + periodSeconds: + format: int32 + type: integer + successThreshold: + format: int32 + type: integer + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + terminationGracePeriodSeconds: + format: int64 + type: integer + timeoutSeconds: + format: int32 + type: integer + type: object + name: + type: string + ports: + items: + properties: + containerPort: + format: int32 + type: integer + hostIP: + type: string + hostPort: + format: int32 + type: integer + name: + type: string + protocol: + default: TCP + type: string + required: + - containerPort + type: object + type: array + x-kubernetes-list-map-keys: + - containerPort + - protocol + x-kubernetes-list-type: map + readinessProbe: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + failureThreshold: + format: int32 + type: integer + grpc: + properties: + port: + format: int32 + type: integer + service: + default: "" + type: string + required: + - port + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + initialDelaySeconds: + format: int32 + type: integer + periodSeconds: + format: int32 + type: integer + successThreshold: + format: int32 + type: integer + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + terminationGracePeriodSeconds: + format: int64 + type: integer + timeoutSeconds: + format: int32 + type: integer + type: object + resizePolicy: + items: + properties: + resourceName: + type: string + restartPolicy: + type: string + required: + - resourceName + - restartPolicy + type: object + type: array + x-kubernetes-list-type: atomic + resources: + properties: + claims: + items: + properties: + name: + type: string + request: + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + restartPolicy: + type: string + securityContext: + properties: + allowPrivilegeEscalation: + type: boolean + appArmorProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + capabilities: + properties: + add: + items: + type: string + type: array + x-kubernetes-list-type: atomic + drop: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + privileged: + type: boolean + procMount: + type: string + readOnlyRootFilesystem: + type: boolean + runAsGroup: + format: int64 + type: integer + runAsNonRoot: + type: boolean + runAsUser: + format: int64 + type: integer + seLinuxOptions: + properties: + level: + type: string + role: + type: string + type: + type: string + user: + type: string + type: object + seccompProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + windowsOptions: + properties: + gmsaCredentialSpec: + type: string + gmsaCredentialSpecName: + type: string + hostProcess: + type: boolean + runAsUserName: + type: string + type: object + type: object + startupProbe: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + failureThreshold: + format: int32 + type: integer + grpc: + properties: + port: + format: int32 + type: integer + service: + default: "" + type: string + required: + - port + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + initialDelaySeconds: + format: int32 + type: integer + periodSeconds: + format: int32 + type: integer + successThreshold: + format: int32 + type: integer + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + terminationGracePeriodSeconds: + format: int64 + type: integer + timeoutSeconds: + format: int32 + type: integer + type: object + stdin: + type: boolean + stdinOnce: + type: boolean + terminationMessagePath: + type: string + terminationMessagePolicy: + type: string + tty: + type: boolean + volumeDevices: + items: + properties: + devicePath: + type: string + name: + type: string + required: + - devicePath + - name + type: object + type: array + x-kubernetes-list-map-keys: + - devicePath + x-kubernetes-list-type: map + volumeMounts: + items: + properties: + mountPath: + type: string + mountPropagation: + type: string + name: + type: string + readOnly: + type: boolean + recursiveReadOnly: + type: string + subPath: + type: string + subPathExpr: + type: string + required: + - mountPath + - name + type: object + type: array + x-kubernetes-list-map-keys: + - mountPath + x-kubernetes-list-type: map + workingDir: + type: string + required: + - name + type: object + type: array + affinity: + properties: + nodeAffinity: + properties: + preferredDuringSchedulingIgnoredDuringExecution: + items: + properties: + preference: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchFields: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + type: object + x-kubernetes-map-type: atomic + weight: + format: int32 + type: integer + required: + - preference + - weight + type: object + type: array + x-kubernetes-list-type: atomic + requiredDuringSchedulingIgnoredDuringExecution: + properties: + nodeSelectorTerms: + items: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchFields: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + type: object + x-kubernetes-map-type: atomic + type: array + x-kubernetes-list-type: atomic + required: + - nodeSelectorTerms + type: object + x-kubernetes-map-type: atomic + type: object + podAffinity: + properties: + preferredDuringSchedulingIgnoredDuringExecution: + items: + properties: + podAffinityTerm: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + type: string + required: + - topologyKey + type: object + weight: + format: int32 + type: integer + required: + - podAffinityTerm + - weight + type: object + type: array + x-kubernetes-list-type: atomic + requiredDuringSchedulingIgnoredDuringExecution: + items: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + type: string + required: + - topologyKey + type: object + type: array + x-kubernetes-list-type: atomic + type: object + podAntiAffinity: + properties: + preferredDuringSchedulingIgnoredDuringExecution: + items: + properties: + podAffinityTerm: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + type: string + required: + - topologyKey + type: object + weight: + format: int32 + type: integer + required: + - podAffinityTerm + - weight + type: object + type: array + x-kubernetes-list-type: atomic + requiredDuringSchedulingIgnoredDuringExecution: + items: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + type: string + required: + - topologyKey + type: object + type: array + x-kubernetes-list-type: atomic + type: object + type: object + args: + additionalProperties: + type: string + type: object + autoscaler: + properties: + behavior: + properties: + scaleDown: + properties: + policies: + items: + properties: + periodSeconds: + format: int32 + type: integer + type: + type: string + value: + format: int32 + type: integer + required: + - periodSeconds + - type + - value + type: object + type: array + x-kubernetes-list-type: atomic + selectPolicy: + type: string + stabilizationWindowSeconds: + format: int32 + type: integer + type: object + scaleUp: + properties: + policies: + items: + properties: + periodSeconds: + format: int32 + type: integer + type: + type: string + value: + format: int32 + type: integer + required: + - periodSeconds + - type + - value + type: object + type: array + x-kubernetes-list-type: atomic + selectPolicy: + type: string + stabilizationWindowSeconds: + format: int32 + type: integer + type: object + type: object + maxReplicas: + format: int32 + type: integer + metrics: + items: + properties: + pods: + properties: + metric: + properties: + name: + type: string + selector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + required: + - name + type: object + target: + properties: + averageUtilization: + format: int32 + type: integer + averageValue: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: + type: string + value: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + required: + - type + type: object + required: + - metric + - target + type: object + type: + type: string + required: + - type + type: object + type: array + minReplicas: + format: int32 + type: integer + targetCPUUtilization: + format: int32 + type: integer + targetMemoryUtilization: + format: int32 + type: integer + type: object + config: + properties: + connectors: + type: object + x-kubernetes-preserve-unknown-fields: true + exporters: + type: object + x-kubernetes-preserve-unknown-fields: true + extensions: + type: object + x-kubernetes-preserve-unknown-fields: true + processors: + type: object + x-kubernetes-preserve-unknown-fields: true + receivers: + type: object + x-kubernetes-preserve-unknown-fields: true + service: + properties: + extensions: + items: + type: string + type: array + pipelines: + additionalProperties: + properties: + exporters: + items: + type: string + type: array + processors: + items: + type: string + type: array + receivers: + items: + type: string + type: array + required: + - exporters + - receivers + type: object + type: object + x-kubernetes-preserve-unknown-fields: true + telemetry: + type: object + x-kubernetes-preserve-unknown-fields: true + required: + - pipelines + type: object + required: + - exporters + - receivers + - service + type: object + x-kubernetes-preserve-unknown-fields: true + configVersions: + default: 3 + minimum: 1 + type: integer + configmaps: + items: + properties: + mountpath: + type: string + name: + type: string + required: + - mountpath + - name + type: object + type: array + daemonSetUpdateStrategy: + properties: + rollingUpdate: + properties: + maxSurge: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + maxUnavailable: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + type: object + type: + type: string + type: object + deploymentUpdateStrategy: + properties: + rollingUpdate: + properties: + maxSurge: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + maxUnavailable: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + type: object + type: + type: string + type: object + env: + items: + properties: + name: + type: string + value: + type: string + valueFrom: + properties: + configMapKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + secretKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + envFrom: + items: + properties: + configMapRef: + properties: + name: + default: "" + type: string + optional: + type: boolean + type: object + x-kubernetes-map-type: atomic + prefix: + type: string + secretRef: + properties: + name: + default: "" + type: string + optional: + type: boolean + type: object + x-kubernetes-map-type: atomic + type: object + type: array + hostNetwork: + type: boolean + image: + type: string + imagePullPolicy: + type: string + ingress: + properties: + annotations: + additionalProperties: + type: string + type: object + hostname: + type: string + ingressClassName: + type: string + route: + properties: + termination: + enum: + - insecure + - edge + - passthrough + - reencrypt + type: string + type: object + ruleType: + enum: + - path + - subdomain + type: string + tls: + items: + properties: + hosts: + items: + type: string + type: array + x-kubernetes-list-type: atomic + secretName: + type: string + type: object + type: array + type: + enum: + - ingress + - route + type: string + type: object + initContainers: + items: + properties: + args: + items: + type: string + type: array + x-kubernetes-list-type: atomic + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + env: + items: + properties: + name: + type: string + value: + type: string + valueFrom: + properties: + configMapKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + secretKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + envFrom: + items: + properties: + configMapRef: + properties: + name: + default: "" + type: string + optional: + type: boolean + type: object + x-kubernetes-map-type: atomic + prefix: + type: string + secretRef: + properties: + name: + default: "" + type: string + optional: + type: boolean + type: object + x-kubernetes-map-type: atomic + type: object + type: array + x-kubernetes-list-type: atomic + image: + type: string + imagePullPolicy: + type: string + lifecycle: + properties: + postStart: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + sleep: + properties: + seconds: + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + type: object + preStop: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + sleep: + properties: + seconds: + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + type: object + type: object + livenessProbe: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + failureThreshold: + format: int32 + type: integer + grpc: + properties: + port: + format: int32 + type: integer + service: + default: "" + type: string + required: + - port + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + initialDelaySeconds: + format: int32 + type: integer + periodSeconds: + format: int32 + type: integer + successThreshold: + format: int32 + type: integer + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + terminationGracePeriodSeconds: + format: int64 + type: integer + timeoutSeconds: + format: int32 + type: integer + type: object + name: + type: string + ports: + items: + properties: + containerPort: + format: int32 + type: integer + hostIP: + type: string + hostPort: + format: int32 + type: integer + name: + type: string + protocol: + default: TCP + type: string + required: + - containerPort + type: object + type: array + x-kubernetes-list-map-keys: + - containerPort + - protocol + x-kubernetes-list-type: map + readinessProbe: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + failureThreshold: + format: int32 + type: integer + grpc: + properties: + port: + format: int32 + type: integer + service: + default: "" + type: string + required: + - port + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + initialDelaySeconds: + format: int32 + type: integer + periodSeconds: + format: int32 + type: integer + successThreshold: + format: int32 + type: integer + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + terminationGracePeriodSeconds: + format: int64 + type: integer + timeoutSeconds: + format: int32 + type: integer + type: object + resizePolicy: + items: + properties: + resourceName: + type: string + restartPolicy: + type: string + required: + - resourceName + - restartPolicy + type: object + type: array + x-kubernetes-list-type: atomic + resources: + properties: + claims: + items: + properties: + name: + type: string + request: + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + restartPolicy: + type: string + securityContext: + properties: + allowPrivilegeEscalation: + type: boolean + appArmorProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + capabilities: + properties: + add: + items: + type: string + type: array + x-kubernetes-list-type: atomic + drop: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + privileged: + type: boolean + procMount: + type: string + readOnlyRootFilesystem: + type: boolean + runAsGroup: + format: int64 + type: integer + runAsNonRoot: + type: boolean + runAsUser: + format: int64 + type: integer + seLinuxOptions: + properties: + level: + type: string + role: + type: string + type: + type: string + user: + type: string + type: object + seccompProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + windowsOptions: + properties: + gmsaCredentialSpec: + type: string + gmsaCredentialSpecName: + type: string + hostProcess: + type: boolean + runAsUserName: + type: string + type: object + type: object + startupProbe: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + failureThreshold: + format: int32 + type: integer + grpc: + properties: + port: + format: int32 + type: integer + service: + default: "" + type: string + required: + - port + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + initialDelaySeconds: + format: int32 + type: integer + periodSeconds: + format: int32 + type: integer + successThreshold: + format: int32 + type: integer + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + terminationGracePeriodSeconds: + format: int64 + type: integer + timeoutSeconds: + format: int32 + type: integer + type: object + stdin: + type: boolean + stdinOnce: + type: boolean + terminationMessagePath: + type: string + terminationMessagePolicy: + type: string + tty: + type: boolean + volumeDevices: + items: + properties: + devicePath: + type: string + name: + type: string + required: + - devicePath + - name + type: object + type: array + x-kubernetes-list-map-keys: + - devicePath + x-kubernetes-list-type: map + volumeMounts: + items: + properties: + mountPath: + type: string + mountPropagation: + type: string + name: + type: string + readOnly: + type: boolean + recursiveReadOnly: + type: string + subPath: + type: string + subPathExpr: + type: string + required: + - mountPath + - name + type: object + type: array + x-kubernetes-list-map-keys: + - mountPath + x-kubernetes-list-type: map + workingDir: + type: string + required: + - name + type: object + type: array + ipFamilies: + items: + type: string + type: array + ipFamilyPolicy: + default: SingleStack + type: string + lifecycle: + properties: + postStart: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + sleep: + properties: + seconds: + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + type: object + preStop: + properties: + exec: + properties: + command: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + httpGet: + properties: + host: + type: string + httpHeaders: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + path: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + scheme: + type: string + required: + - port + type: object + sleep: + properties: + seconds: + format: int64 + type: integer + required: + - seconds + type: object + tcpSocket: + properties: + host: + type: string + port: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + type: object + type: object + livenessProbe: + properties: + failureThreshold: + format: int32 + type: integer + initialDelaySeconds: + format: int32 + type: integer + periodSeconds: + format: int32 + type: integer + successThreshold: + format: int32 + type: integer + terminationGracePeriodSeconds: + format: int64 + type: integer + timeoutSeconds: + format: int32 + type: integer + type: object + managementState: + default: managed + enum: + - managed + - unmanaged + type: string + mode: + enum: + - daemonset + - deployment + - sidecar + - statefulset + type: string + nodeSelector: + additionalProperties: + type: string + type: object + observability: + properties: + metrics: + properties: + disablePrometheusAnnotations: + type: boolean + enableMetrics: + type: boolean + type: object + type: object + persistentVolumeClaimRetentionPolicy: + properties: + whenDeleted: + type: string + whenScaled: + type: string + type: object + podAnnotations: + additionalProperties: + type: string + type: object + podDisruptionBudget: + properties: + maxUnavailable: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + minAvailable: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + type: object + podDnsConfig: + properties: + nameservers: + items: + type: string + type: array + x-kubernetes-list-type: atomic + options: + items: + properties: + name: + type: string + value: + type: string + type: object + type: array + x-kubernetes-list-type: atomic + searches: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + podSecurityContext: + properties: + appArmorProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + fsGroup: + format: int64 + type: integer + fsGroupChangePolicy: + type: string + runAsGroup: + format: int64 + type: integer + runAsNonRoot: + type: boolean + runAsUser: + format: int64 + type: integer + seLinuxOptions: + properties: + level: + type: string + role: + type: string + type: + type: string + user: + type: string + type: object + seccompProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + supplementalGroups: + items: + format: int64 + type: integer + type: array + x-kubernetes-list-type: atomic + supplementalGroupsPolicy: + type: string + sysctls: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + windowsOptions: + properties: + gmsaCredentialSpec: + type: string + gmsaCredentialSpecName: + type: string + hostProcess: + type: boolean + runAsUserName: + type: string + type: object + type: object + ports: + items: + properties: + appProtocol: + type: string + hostPort: + format: int32 + type: integer + name: + type: string + nodePort: + format: int32 + type: integer + port: + format: int32 + type: integer + protocol: + default: TCP + type: string + targetPort: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + required: + - port + type: object + type: array + x-kubernetes-list-type: atomic + priorityClassName: + type: string + readinessProbe: + properties: + failureThreshold: + format: int32 + type: integer + initialDelaySeconds: + format: int32 + type: integer + periodSeconds: + format: int32 + type: integer + successThreshold: + format: int32 + type: integer + terminationGracePeriodSeconds: + format: int64 + type: integer + timeoutSeconds: + format: int32 + type: integer + type: object + replicas: + format: int32 + type: integer + resources: + properties: + claims: + items: + properties: + name: + type: string + request: + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + securityContext: + properties: + allowPrivilegeEscalation: + type: boolean + appArmorProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + capabilities: + properties: + add: + items: + type: string + type: array + x-kubernetes-list-type: atomic + drop: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + privileged: + type: boolean + procMount: + type: string + readOnlyRootFilesystem: + type: boolean + runAsGroup: + format: int64 + type: integer + runAsNonRoot: + type: boolean + runAsUser: + format: int64 + type: integer + seLinuxOptions: + properties: + level: + type: string + role: + type: string + type: + type: string + user: + type: string + type: object + seccompProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + windowsOptions: + properties: + gmsaCredentialSpec: + type: string + gmsaCredentialSpecName: + type: string + hostProcess: + type: boolean + runAsUserName: + type: string + type: object + type: object + serviceAccount: + type: string + shareProcessNamespace: + type: boolean + targetAllocator: + properties: + affinity: + properties: + nodeAffinity: + properties: + preferredDuringSchedulingIgnoredDuringExecution: + items: + properties: + preference: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchFields: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + type: object + x-kubernetes-map-type: atomic + weight: + format: int32 + type: integer + required: + - preference + - weight + type: object + type: array + x-kubernetes-list-type: atomic + requiredDuringSchedulingIgnoredDuringExecution: + properties: + nodeSelectorTerms: + items: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchFields: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + type: object + x-kubernetes-map-type: atomic + type: array + x-kubernetes-list-type: atomic + required: + - nodeSelectorTerms + type: object + x-kubernetes-map-type: atomic + type: object + podAffinity: + properties: + preferredDuringSchedulingIgnoredDuringExecution: + items: + properties: + podAffinityTerm: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + type: string + required: + - topologyKey + type: object + weight: + format: int32 + type: integer + required: + - podAffinityTerm + - weight + type: object + type: array + x-kubernetes-list-type: atomic + requiredDuringSchedulingIgnoredDuringExecution: + items: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + type: string + required: + - topologyKey + type: object + type: array + x-kubernetes-list-type: atomic + type: object + podAntiAffinity: + properties: + preferredDuringSchedulingIgnoredDuringExecution: + items: + properties: + podAffinityTerm: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + type: string + required: + - topologyKey + type: object + weight: + format: int32 + type: integer + required: + - podAffinityTerm + - weight + type: object + type: array + x-kubernetes-list-type: atomic + requiredDuringSchedulingIgnoredDuringExecution: + items: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + mismatchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + namespaceSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + namespaces: + items: + type: string + type: array + x-kubernetes-list-type: atomic + topologyKey: + type: string + required: + - topologyKey + type: object + type: array + x-kubernetes-list-type: atomic + type: object + type: object + allocationStrategy: + default: consistent-hashing + enum: + - least-weighted + - consistent-hashing + - per-node + type: string + enabled: + type: boolean + env: + items: + properties: + name: + type: string + value: + type: string + valueFrom: + properties: + configMapKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + secretKeyRef: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + type: object + required: + - name + type: object + type: array + filterStrategy: + default: relabel-config + enum: + - "" + - relabel-config + type: string + image: + type: string + nodeSelector: + additionalProperties: + type: string + type: object + observability: + properties: + metrics: + properties: + disablePrometheusAnnotations: + type: boolean + enableMetrics: + type: boolean + type: object + type: object + podDisruptionBudget: + properties: + maxUnavailable: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + minAvailable: + anyOf: + - type: integer + - type: string + x-kubernetes-int-or-string: true + type: object + podSecurityContext: + properties: + appArmorProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + fsGroup: + format: int64 + type: integer + fsGroupChangePolicy: + type: string + runAsGroup: + format: int64 + type: integer + runAsNonRoot: + type: boolean + runAsUser: + format: int64 + type: integer + seLinuxOptions: + properties: + level: + type: string + role: + type: string + type: + type: string + user: + type: string + type: object + seccompProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + supplementalGroups: + items: + format: int64 + type: integer + type: array + x-kubernetes-list-type: atomic + supplementalGroupsPolicy: + type: string + sysctls: + items: + properties: + name: + type: string + value: + type: string + required: + - name + - value + type: object + type: array + x-kubernetes-list-type: atomic + windowsOptions: + properties: + gmsaCredentialSpec: + type: string + gmsaCredentialSpecName: + type: string + hostProcess: + type: boolean + runAsUserName: + type: string + type: object + type: object + prometheusCR: + properties: + enabled: + type: boolean + podMonitorSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + probeSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + scrapeConfigSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + scrapeInterval: + default: 30s + format: duration + type: string + serviceMonitorSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + type: object + replicas: + format: int32 + type: integer + resources: + properties: + claims: + items: + properties: + name: + type: string + request: + type: string + required: + - name + type: object + type: array + x-kubernetes-list-map-keys: + - name + x-kubernetes-list-type: map + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + securityContext: + properties: + allowPrivilegeEscalation: + type: boolean + appArmorProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + capabilities: + properties: + add: + items: + type: string + type: array + x-kubernetes-list-type: atomic + drop: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + privileged: + type: boolean + procMount: + type: string + readOnlyRootFilesystem: + type: boolean + runAsGroup: + format: int64 + type: integer + runAsNonRoot: + type: boolean + runAsUser: + format: int64 + type: integer + seLinuxOptions: + properties: + level: + type: string + role: + type: string + type: + type: string + user: + type: string + type: object + seccompProfile: + properties: + localhostProfile: + type: string + type: + type: string + required: + - type + type: object + windowsOptions: + properties: + gmsaCredentialSpec: + type: string + gmsaCredentialSpecName: + type: string + hostProcess: + type: boolean + runAsUserName: + type: string + type: object + type: object + serviceAccount: + type: string + tolerations: + items: + properties: + effect: + type: string + key: + type: string + operator: + type: string + tolerationSeconds: + format: int64 + type: integer + value: + type: string + type: object + type: array + topologySpreadConstraints: + items: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + maxSkew: + format: int32 + type: integer + minDomains: + format: int32 + type: integer + nodeAffinityPolicy: + type: string + nodeTaintsPolicy: + type: string + topologyKey: + type: string + whenUnsatisfiable: + type: string + required: + - maxSkew + - topologyKey + - whenUnsatisfiable + type: object + type: array + type: object + terminationGracePeriodSeconds: + format: int64 + type: integer + tolerations: + items: + properties: + effect: + type: string + key: + type: string + operator: + type: string + tolerationSeconds: + format: int64 + type: integer + value: + type: string + type: object + type: array + topologySpreadConstraints: + items: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + matchLabelKeys: + items: + type: string + type: array + x-kubernetes-list-type: atomic + maxSkew: + format: int32 + type: integer + minDomains: + format: int32 + type: integer + nodeAffinityPolicy: + type: string + nodeTaintsPolicy: + type: string + topologyKey: + type: string + whenUnsatisfiable: + type: string + required: + - maxSkew + - topologyKey + - whenUnsatisfiable + type: object + type: array + upgradeStrategy: + enum: + - automatic + - none + type: string + volumeClaimTemplates: + items: + properties: + apiVersion: + type: string + kind: + type: string + metadata: + properties: + annotations: + additionalProperties: + type: string + type: object + finalizers: + items: + type: string + type: array + labels: + additionalProperties: + type: string + type: object + name: + type: string + namespace: + type: string + type: object + spec: + properties: + accessModes: + items: + type: string + type: array + x-kubernetes-list-type: atomic + dataSource: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + required: + - kind + - name + type: object + x-kubernetes-map-type: atomic + dataSourceRef: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + namespace: + type: string + required: + - kind + - name + type: object + resources: + properties: + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + selector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + storageClassName: + type: string + volumeAttributesClassName: + type: string + volumeMode: + type: string + volumeName: + type: string + type: object + status: + properties: + accessModes: + items: + type: string + type: array + x-kubernetes-list-type: atomic + allocatedResourceStatuses: + additionalProperties: + type: string + type: object + x-kubernetes-map-type: granular + allocatedResources: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + capacity: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + conditions: + items: + properties: + lastProbeTime: + format: date-time + type: string + lastTransitionTime: + format: date-time + type: string + message: + type: string + reason: + type: string + status: + type: string + type: + type: string + required: + - status + - type + type: object + type: array + x-kubernetes-list-map-keys: + - type + x-kubernetes-list-type: map + currentVolumeAttributesClassName: + type: string + modifyVolumeStatus: + properties: + status: + type: string + targetVolumeAttributesClassName: + type: string + required: + - status + type: object + phase: + type: string + type: object + type: object + type: array + x-kubernetes-list-type: atomic + volumeMounts: + items: + properties: + mountPath: + type: string + mountPropagation: + type: string + name: + type: string + readOnly: + type: boolean + recursiveReadOnly: + type: string + subPath: + type: string + subPathExpr: + type: string + required: + - mountPath + - name + type: object + type: array + x-kubernetes-list-type: atomic + volumes: + items: + properties: + awsElasticBlockStore: + properties: + fsType: + type: string + partition: + format: int32 + type: integer + readOnly: + type: boolean + volumeID: + type: string + required: + - volumeID + type: object + azureDisk: + properties: + cachingMode: + type: string + diskName: + type: string + diskURI: + type: string + fsType: + default: ext4 + type: string + kind: + type: string + readOnly: + default: false + type: boolean + required: + - diskName + - diskURI + type: object + azureFile: + properties: + readOnly: + type: boolean + secretName: + type: string + shareName: + type: string + required: + - secretName + - shareName + type: object + cephfs: + properties: + monitors: + items: + type: string + type: array + x-kubernetes-list-type: atomic + path: + type: string + readOnly: + type: boolean + secretFile: + type: string + secretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + user: + type: string + required: + - monitors + type: object + cinder: + properties: + fsType: + type: string + readOnly: + type: boolean + secretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + volumeID: + type: string + required: + - volumeID + type: object + configMap: + properties: + defaultMode: + format: int32 + type: integer + items: + items: + properties: + key: + type: string + mode: + format: int32 + type: integer + path: + type: string + required: + - key + - path + type: object + type: array + x-kubernetes-list-type: atomic + name: + default: "" + type: string + optional: + type: boolean + type: object + x-kubernetes-map-type: atomic + csi: + properties: + driver: + type: string + fsType: + type: string + nodePublishSecretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + readOnly: + type: boolean + volumeAttributes: + additionalProperties: + type: string + type: object + required: + - driver + type: object + downwardAPI: + properties: + defaultMode: + format: int32 + type: integer + items: + items: + properties: + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + mode: + format: int32 + type: integer + path: + type: string + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + required: + - path + type: object + type: array + x-kubernetes-list-type: atomic + type: object + emptyDir: + properties: + medium: + type: string + sizeLimit: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + ephemeral: + properties: + volumeClaimTemplate: + properties: + metadata: + properties: + annotations: + additionalProperties: + type: string + type: object + finalizers: + items: + type: string + type: array + labels: + additionalProperties: + type: string + type: object + name: + type: string + namespace: + type: string + type: object + spec: + properties: + accessModes: + items: + type: string + type: array + x-kubernetes-list-type: atomic + dataSource: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + required: + - kind + - name + type: object + x-kubernetes-map-type: atomic + dataSourceRef: + properties: + apiGroup: + type: string + kind: + type: string + name: + type: string + namespace: + type: string + required: + - kind + - name + type: object + resources: + properties: + limits: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + requests: + additionalProperties: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + type: object + type: object + selector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + storageClassName: + type: string + volumeAttributesClassName: + type: string + volumeMode: + type: string + volumeName: + type: string + type: object + required: + - spec + type: object + type: object + fc: + properties: + fsType: + type: string + lun: + format: int32 + type: integer + readOnly: + type: boolean + targetWWNs: + items: + type: string + type: array + x-kubernetes-list-type: atomic + wwids: + items: + type: string + type: array + x-kubernetes-list-type: atomic + type: object + flexVolume: + properties: + driver: + type: string + fsType: + type: string + options: + additionalProperties: + type: string + type: object + readOnly: + type: boolean + secretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + required: + - driver + type: object + flocker: + properties: + datasetName: + type: string + datasetUUID: + type: string + type: object + gcePersistentDisk: + properties: + fsType: + type: string + partition: + format: int32 + type: integer + pdName: + type: string + readOnly: + type: boolean + required: + - pdName + type: object + gitRepo: + properties: + directory: + type: string + repository: + type: string + revision: + type: string + required: + - repository + type: object + glusterfs: + properties: + endpoints: + type: string + path: + type: string + readOnly: + type: boolean + required: + - endpoints + - path + type: object + hostPath: + properties: + path: + type: string + type: + type: string + required: + - path + type: object + image: + properties: + pullPolicy: + type: string + reference: + type: string + type: object + iscsi: + properties: + chapAuthDiscovery: + type: boolean + chapAuthSession: + type: boolean + fsType: + type: string + initiatorName: + type: string + iqn: + type: string + iscsiInterface: + default: default + type: string + lun: + format: int32 + type: integer + portals: + items: + type: string + type: array + x-kubernetes-list-type: atomic + readOnly: + type: boolean + secretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + targetPortal: + type: string + required: + - iqn + - lun + - targetPortal + type: object + name: + type: string + nfs: + properties: + path: + type: string + readOnly: + type: boolean + server: + type: string + required: + - path + - server + type: object + persistentVolumeClaim: + properties: + claimName: + type: string + readOnly: + type: boolean + required: + - claimName + type: object + photonPersistentDisk: + properties: + fsType: + type: string + pdID: + type: string + required: + - pdID + type: object + portworxVolume: + properties: + fsType: + type: string + readOnly: + type: boolean + volumeID: + type: string + required: + - volumeID + type: object + projected: + properties: + defaultMode: + format: int32 + type: integer + sources: + items: + properties: + clusterTrustBundle: + properties: + labelSelector: + properties: + matchExpressions: + items: + properties: + key: + type: string + operator: + type: string + values: + items: + type: string + type: array + x-kubernetes-list-type: atomic + required: + - key + - operator + type: object + type: array + x-kubernetes-list-type: atomic + matchLabels: + additionalProperties: + type: string + type: object + type: object + x-kubernetes-map-type: atomic + name: + type: string + optional: + type: boolean + path: + type: string + signerName: + type: string + required: + - path + type: object + configMap: + properties: + items: + items: + properties: + key: + type: string + mode: + format: int32 + type: integer + path: + type: string + required: + - key + - path + type: object + type: array + x-kubernetes-list-type: atomic + name: + default: "" + type: string + optional: + type: boolean + type: object + x-kubernetes-map-type: atomic + downwardAPI: + properties: + items: + items: + properties: + fieldRef: + properties: + apiVersion: + type: string + fieldPath: + type: string + required: + - fieldPath + type: object + x-kubernetes-map-type: atomic + mode: + format: int32 + type: integer + path: + type: string + resourceFieldRef: + properties: + containerName: + type: string + divisor: + anyOf: + - type: integer + - type: string + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ + x-kubernetes-int-or-string: true + resource: + type: string + required: + - resource + type: object + x-kubernetes-map-type: atomic + required: + - path + type: object + type: array + x-kubernetes-list-type: atomic + type: object + secret: + properties: + items: + items: + properties: + key: + type: string + mode: + format: int32 + type: integer + path: + type: string + required: + - key + - path + type: object + type: array + x-kubernetes-list-type: atomic + name: + default: "" + type: string + optional: + type: boolean + type: object + x-kubernetes-map-type: atomic + serviceAccountToken: + properties: + audience: + type: string + expirationSeconds: + format: int64 + type: integer + path: + type: string + required: + - path + type: object + type: object + type: array + x-kubernetes-list-type: atomic + type: object + quobyte: + properties: + group: + type: string + readOnly: + type: boolean + registry: + type: string + tenant: + type: string + user: + type: string + volume: + type: string + required: + - registry + - volume + type: object + rbd: + properties: + fsType: + type: string + image: + type: string + keyring: + default: /etc/ceph/keyring + type: string + monitors: + items: + type: string + type: array + x-kubernetes-list-type: atomic + pool: + default: rbd + type: string + readOnly: + type: boolean + secretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + user: + default: admin + type: string + required: + - image + - monitors + type: object + scaleIO: + properties: + fsType: + default: xfs + type: string + gateway: + type: string + protectionDomain: + type: string + readOnly: + type: boolean + secretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + sslEnabled: + type: boolean + storageMode: + default: ThinProvisioned + type: string + storagePool: + type: string + system: + type: string + volumeName: + type: string + required: + - gateway + - secretRef + - system + type: object + secret: + properties: + defaultMode: + format: int32 + type: integer + items: + items: + properties: + key: + type: string + mode: + format: int32 + type: integer + path: + type: string + required: + - key + - path + type: object + type: array + x-kubernetes-list-type: atomic + optional: + type: boolean + secretName: + type: string + type: object + storageos: + properties: + fsType: + type: string + readOnly: + type: boolean + secretRef: + properties: + name: + default: "" + type: string + type: object + x-kubernetes-map-type: atomic + volumeName: + type: string + volumeNamespace: + type: string + type: object + vsphereVolume: + properties: + fsType: + type: string + storagePolicyID: + type: string + storagePolicyName: + type: string + volumePath: + type: string + required: + - volumePath + type: object + required: + - name + type: object + type: array + x-kubernetes-list-type: atomic + required: + - config + - managementState + type: object + status: + properties: + image: + type: string + scale: + properties: + replicas: + format: int32 + type: integer + selector: + type: string + statusReplicas: + type: string + type: object + version: + type: string + type: object + type: object + served: true + storage: true + subresources: + scale: + labelSelectorPath: .status.scale.selector + specReplicasPath: .spec.replicas + statusReplicasPath: .status.scale.replicas + status: {} +status: + acceptedNames: + kind: "" + plural: "" + conditions: null + storedVersions: null diff --git a/functional_tests/testdata/values/aks_test_values.yaml.tmpl b/functional_tests/testdata/values/aks_test_values.yaml.tmpl index 1dd0b0177a..72fc1b23ba 100644 --- a/functional_tests/testdata/values/aks_test_values.yaml.tmpl +++ b/functional_tests/testdata/values/aks_test_values.yaml.tmpl @@ -70,6 +70,8 @@ livenessProbe: operator: enabled: true + crds: + create: false admissionWebhooks: certManager: enabled: false diff --git a/functional_tests/testdata/values/autopilot_test_values.yaml.tmpl b/functional_tests/testdata/values/autopilot_test_values.yaml.tmpl index acf197d8b5..b8cf91534b 100644 --- a/functional_tests/testdata/values/autopilot_test_values.yaml.tmpl +++ b/functional_tests/testdata/values/autopilot_test_values.yaml.tmpl @@ -62,6 +62,8 @@ distribution: gke/autopilot operator: enabled: true + crds: + create: false admissionWebhooks: certManager: enabled: false diff --git a/functional_tests/testdata/values/test_values.yaml.tmpl b/functional_tests/testdata/values/test_values.yaml.tmpl index 15eed00c1a..b0f8651cbe 100644 --- a/functional_tests/testdata/values/test_values.yaml.tmpl +++ b/functional_tests/testdata/values/test_values.yaml.tmpl @@ -71,6 +71,8 @@ extraAttributes: environment: dev operator: enabled: true + crds: + create: false targetAllocator: enabled: true diff --git a/helm-charts/splunk-otel-collector/templates/operator/instrumentation.yaml b/helm-charts/splunk-otel-collector/templates/operator/instrumentation.yaml index 859021146d..3d4cfea471 100644 --- a/helm-charts/splunk-otel-collector/templates/operator/instrumentation.yaml +++ b/helm-charts/splunk-otel-collector/templates/operator/instrumentation.yaml @@ -13,9 +13,6 @@ metadata: release: {{ .Release.Name }} heritage: {{ .Release.Service }} app.kubernetes.io/component: otel-operator - annotations: - "helm.sh/hook": post-install,post-upgrade - "helm.sh/hook-weight": "5" spec: exporter: endpoint: {{ include "splunk-otel-collector.operator.instrumentation-exporter-endpoint" . }}