From 66ff69162a77232ec030cab33410d83ab218dec8 Mon Sep 17 00:00:00 2001 From: Antoine Toulme Date: Wed, 2 Oct 2024 09:48:29 -0700 Subject: [PATCH] add 1.31 histogram expected files --- functional_tests/README.md | 4 +- functional_tests/histogram_test.go | 12 +- .../expected/v1.31/api_metrics.yaml | 31039 +++++++++ .../v1.31/controller_manager_metrics.yaml | 5066 ++ .../expected/v1.31/coredns_metrics.yaml | 440 + .../expected/v1.31/etcd_metrics.yaml | 57160 ++++++++++++++++ .../expected/v1.31/proxy_metrics.yaml | 16891 +++++ .../expected/v1.31/scheduler_metrics.yaml | 21082 ++++++ 8 files changed, 131686 insertions(+), 8 deletions(-) create mode 100644 functional_tests/testdata_histogram/expected/v1.31/api_metrics.yaml create mode 100644 functional_tests/testdata_histogram/expected/v1.31/controller_manager_metrics.yaml create mode 100644 functional_tests/testdata_histogram/expected/v1.31/coredns_metrics.yaml create mode 100644 functional_tests/testdata_histogram/expected/v1.31/etcd_metrics.yaml create mode 100644 functional_tests/testdata_histogram/expected/v1.31/proxy_metrics.yaml create mode 100644 functional_tests/testdata_histogram/expected/v1.31/scheduler_metrics.yaml diff --git a/functional_tests/README.md b/functional_tests/README.md index e22b62c81f..f1585c6a0a 100644 --- a/functional_tests/README.md +++ b/functional_tests/README.md @@ -6,7 +6,7 @@ Run the following commands prior to running the test locally: ``` export KUBECONFIG=/tmp/kube-config-splunk-otel-collector-chart-functional-testing export KUBE_TEST_ENV=kind -export K8S_VERSION=v1.28.0 +export K8S_VERSION=v1.31.0 kind create cluster --kubeconfig=/tmp/kube-config-splunk-otel-collector-chart-functional-testing --config=.github/workflows/configs/kind-config.yaml --image=kindest/node:$K8S_VERSION kubectl get csr -o=jsonpath='{range.items[?(@.spec.signerName=="kubernetes.io/kubelet-serving")]}{.metadata.name}{" "}{end}' | xargs kubectl certificate approve make cert-manager @@ -14,7 +14,7 @@ kind load docker-image quay.io/splunko11ytest/nodejs_test:latest --name kind kind load docker-image quay.io/splunko11ytest/java_test:latest --name kind kind load docker-image quay.io/splunko11ytest/dotnet_test:latest --name kind # On Mac M1s, you can also push this image so kind doesn't get confused with the platform to use: -kind load docker-image ghcr.io/signalfx/splunk-otel-dotnet/splunk-otel-dotnet:v1.6.0 --name kind +kind load docker-image ghcr.io/signalfx/splunk-otel-dotnet/splunk-otel-dotnet:v1.7.0 --name kind kind load docker-image ghcr.io/signalfx/splunk-otel-js/splunk-otel-js:v2.4.4 --name kind kind load docker-image ghcr.io/signalfx/splunk-otel-java/splunk-otel-java:v1.30.0 --name kind ``` diff --git a/functional_tests/histogram_test.go b/functional_tests/histogram_test.go index 5f5ebdfe89..9f3f0fee7e 100644 --- a/functional_tests/histogram_test.go +++ b/functional_tests/histogram_test.go @@ -203,22 +203,22 @@ func testHistogramMetrics(t *testing.T) { for j := 0; j < m.ResourceMetrics().At(i).ScopeMetrics().Len(); j++ { for k := 0; k < m.ResourceMetrics().At(i).ScopeMetrics().At(j).Metrics().Len(); k++ { metricToConsider := m.ResourceMetrics().At(i).ScopeMetrics().At(j).Metrics().At(k) - if metricToConsider.Name() == "coredns_dns_request_duration_seconds" && m.MetricCount() == expectedCoreDNSMetrics.MetricCount() && m.ResourceMetrics().Len() == expectedCoreDNSMetrics.ResourceMetrics().Len() { + if metricToConsider.Name() == "coredns_dns_request_duration_seconds" { //&& m.MetricCount() == expectedCoreDNSMetrics.MetricCount() && m.ResourceMetrics().Len() == expectedCoreDNSMetrics.ResourceMetrics().Len() { corednsMetrics = &m break OUTER - } else if metricToConsider.Name() == "kubeproxy_sync_proxy_rules_iptables_total" && m.MetricCount() == expectedKubeProxyMetrics.MetricCount() && m.ResourceMetrics().Len() == expectedKubeProxyMetrics.ResourceMetrics().Len() { + } else if metricToConsider.Name() == "kubeproxy_sync_proxy_rules_iptables_total" { // && m.MetricCount() == expectedKubeProxyMetrics.MetricCount() && m.ResourceMetrics().Len() == expectedKubeProxyMetrics.ResourceMetrics().Len() { kubeProxyMetrics = &m break OUTER - } else if metricToConsider.Name() == "scheduler_queue_incoming_pods_total" && m.MetricCount() == expectedKubeSchedulerMetrics.MetricCount() && m.ResourceMetrics().Len() == expectedKubeSchedulerMetrics.ResourceMetrics().Len() { + } else if metricToConsider.Name() == "scheduler_queue_incoming_pods_total" { //&& m.MetricCount() == expectedKubeSchedulerMetrics.MetricCount() && m.ResourceMetrics().Len() == expectedKubeSchedulerMetrics.ResourceMetrics().Len() { schedulerMetrics = &m break OUTER - } else if metricToConsider.Name() == "apiserver_audit_event_total" && m.MetricCount() == expectedApiMetrics.MetricCount() && m.ResourceMetrics().Len() == expectedApiMetrics.ResourceMetrics().Len() { + } else if metricToConsider.Name() == "apiserver_audit_event_total" { //&& m.MetricCount() == expectedApiMetrics.MetricCount() && m.ResourceMetrics().Len() == expectedApiMetrics.ResourceMetrics().Len() { apiMetrics = &m break OUTER - } else if metricToConsider.Name() == "workqueue_queue_duration_seconds" && m.MetricCount() == expectedControllerManagerMetrics.MetricCount() && m.ResourceMetrics().Len() == expectedControllerManagerMetrics.ResourceMetrics().Len() { + } else if metricToConsider.Name() == "workqueue_queue_duration_seconds" { //&& m.MetricCount() == expectedControllerManagerMetrics.MetricCount() && m.ResourceMetrics().Len() == expectedControllerManagerMetrics.ResourceMetrics().Len() { controllerManagerMetrics = &m break OUTER - } else if metricToConsider.Name() == "etcd_cluster_version" && m.MetricCount() == expectedEtcdMetrics.MetricCount() && m.ResourceMetrics().Len() == expectedEtcdMetrics.ResourceMetrics().Len() { + } else if metricToConsider.Name() == "etcd_cluster_version" { //&& m.MetricCount() == expectedEtcdMetrics.MetricCount() && m.ResourceMetrics().Len() == expectedEtcdMetrics.ResourceMetrics().Len() { etcdMetrics = &m break OUTER } diff --git a/functional_tests/testdata_histogram/expected/v1.31/api_metrics.yaml b/functional_tests/testdata_histogram/expected/v1.31/api_metrics.yaml new file mode 100644 index 0000000000..67e0152c3f --- /dev/null +++ b/functional_tests/testdata_histogram/expected/v1.31/api_metrics.yaml @@ -0,0 +1,31039 @@ +resourceMetrics: + - resource: {} + scopeMetrics: + - metrics: + - name: go_godebug_non_default_behavior_panicnil_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_tlsmaxrsasize_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: aggregator_discovery_aggregation_count_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_heap_allocs_bytes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 8.669548e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_heap_tiny_allocs_objects_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 52737 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_memstats_frees_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 562544 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 2.509844e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_heap_alloc_bytes + - gauge: + dataPoints: + - asDouble: 1.048576e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: process_max_fds + - gauge: + dataPoints: + - asDouble: 1.72739364224e+09 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: process_start_time_seconds + - name: go_godebug_non_default_behavior_gocachetest_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_gotypesalias_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_multipartmaxheaders_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 3.4660352e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_heap_inuse_bytes + - gauge: + dataPoints: + - asDouble: 685440 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_mspan_sys_bytes + - gauge: + dataPoints: + - asDouble: 714233 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_other_sys_bytes + - name: registered_metrics_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 141 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stability_level + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 4 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stability_level + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 11 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stability_level + value: + stringValue: STABLE + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 2 + attributes: + - key: deprecated_version + value: + stringValue: 1.30.0 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stability_level + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: up + - gauge: + dataPoints: + - asDouble: 3 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: rest_client_transport_cache_entries + - name: go_gc_duration_seconds_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "13" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_duration_seconds_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.002359035 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.5108e-05 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0" + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 7.7065e-05 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0.25" + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0.000178115 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0.5" + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0.000251013 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0.75" + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0.000400865 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "1" + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_duration_seconds_quantile + - name: go_godebug_non_default_behavior_http2client_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_multipartmaxparts_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_tls10server_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 6.291456e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_heap_stacks_bytes + - gauge: + dataPoints: + - asDouble: 7 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_threads + - gauge: + dataPoints: + - asDouble: 0.021050625 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: scrape_duration_seconds + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_limiter_last_enabled_gc_cycle + - gauge: + dataPoints: + - asDouble: 131040 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_metadata_mspan_free_bytes + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: build_date + value: + stringValue: "2024-05-13T22:00:36Z" + - key: compiler + value: + stringValue: gc + - key: git_commit + value: + stringValue: 7c48c2bd72b9bf5c44d21d7338cc7bea77d0ad2a + - key: git_tree_state + value: + stringValue: clean + - key: git_version + value: + stringValue: v1.30.0 + - key: go_version + value: + stringValue: go1.22.2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: major + value: + stringValue: "1" + - key: minor + value: + stringValue: "30" + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: platform + value: + stringValue: linux/amd64 + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: kubernetes_build_info + - gauge: + dataPoints: + - asDouble: 100 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: node_collector_zone_health + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: manager + value: + stringValue: kube-controller-manager + - key: name + value: + stringValue: nodeipam + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: running_managed_controllers + - name: endpoint_slice_controller_changes + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 3 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: operation + value: + stringValue: create + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 6 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: operation + value: + stringValue: update + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.493567e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_buck_hash_sys_bytes + - gauge: + dataPoints: + - asDouble: 1.20082432e+08 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: process_resident_memory_bytes + - name: service_controller_loadbalancer_sync_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: apiserver_envelope_encryption_dek_cache_fill_percent + - name: go_cpu_classes_scavenge_total_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 3.01e-07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_cycles_forced_gc_cycles_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 5.1061512e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_heap_goal_bytes + - gauge: + dataPoints: + - asDouble: 554400 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_mspan_inuse_bytes + - name: go_cpu_classes_idle_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 553.231358484 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_cpu_classes_scavenge_assist_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1.61e-07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_http2server_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_tlsrsakex_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 4.12528e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_metadata_other_bytes + - gauge: + dataPoints: + - asDouble: 4800 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_mcache_inuse_bytes + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: APIListChunking + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: APIPriorityAndFairness + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: AdmissionWebhookMatchConditions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: AggregatedDiscoveryEndpoint + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: CPUManager + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: CSINodeExpandSecret + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: CloudDualStackNodeIPs + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ConsistentHTTPGetHandlers + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: CustomResourceValidationExpressions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: EfficientWatchResumption + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ExecProbeTimeout + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: HPAContainerMetrics + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: JobReadyPods + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: KMSv2 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: KMSv2KDF + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: LegacyServiceAccountTokenCleanUp + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: MinDomainsInPodTopologySpread + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: NewVolumeManagerReconstruction + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: NodeOutOfServiceVolumeDetach + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: PodHostIPs + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: PodSchedulingReadiness + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ReadWriteOncePod + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: RemainingItemCount + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ServerSideApply + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ServerSideFieldValidation + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ServiceNodePortStaticSubrange + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: StableLoadBalancerNodeSet + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ValidatingAdmissionPolicy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: WatchBookmark + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ZeroLimitedNominalConcurrencyShares + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: APIResponseCompression + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: APIServerIdentity + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: APIServerTracing + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: APIServingWithRoutine + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: AllAlpha + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: AllBeta + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: AllowServiceLBStatusOnNonLB + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: DEPRECATED + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: AnyVolumeDataSource + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: AppArmor + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: AppArmorFields + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: CPUManagerPolicyAlphaOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: CPUManagerPolicyBetaOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: CPUManagerPolicyOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: CRDValidationRatcheting + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: CSIMigrationPortworx + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: CSIMigrationRBD + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: DEPRECATED + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: CSIVolumeHealth + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: CloudControllerManagerWebhook + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ClusterTrustBundle + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ClusterTrustBundleProjection + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ComponentSLIs + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ConsistentListFromCache + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ContainerCheckpoint + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ContextualLogging + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: CronJobsScheduledAnnotation + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: CrossNamespaceVolumeDataSource + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: CustomCPUCFSQuotaPeriod + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: CustomResourceFieldSelectors + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DefaultHostNetworkHostPortsInPodTemplates + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: DEPRECATED + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DevicePluginCDIDevices + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DisableCloudProviders + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DisableKubeletCloudCredentialProviders + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DisableNodeKubeProxyVersion + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DynamicResourceAllocation + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ElasticIndexedJob + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: EventedPLEG + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: GracefulNodeShutdown + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: GracefulNodeShutdownBasedOnPodPriority + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: HPAScaleToZero + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: HonorPVReclaimPolicy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ImageMaximumGCAge + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: InPlacePodVerticalScaling + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: InTreePluginAWSUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: InTreePluginAzureDiskUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: InTreePluginAzureFileUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: InTreePluginGCEUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: InTreePluginOpenStackUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: InTreePluginPortworxUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: InTreePluginRBDUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: DEPRECATED + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: InTreePluginvSphereUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: InformerResourceVersion + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: JobBackoffLimitPerIndex + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: JobManagedBy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: JobPodFailurePolicy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: JobPodReplacementPolicy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: JobSuccessPolicy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: KMSv1 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: DEPRECATED + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: KubeProxyDrainingTerminatingNodes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: KubeletCgroupDriverFromCRI + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: KubeletInUserNamespace + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: KubeletPodResourcesDynamicResources + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: KubeletPodResourcesGet + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: KubeletSeparateDiskGC + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: KubeletTracing + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: LoadBalancerIPMode + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: LocalStorageCapacityIsolationFSQuotaMonitoring + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: LogarithmicScaleDown + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: LoggingAlphaOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: LoggingBetaOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: MatchLabelKeysInPodAffinity + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: MatchLabelKeysInPodTopologySpread + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: MaxUnavailableStatefulSet + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: MemoryManager + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: MemoryQoS + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: MultiCIDRServiceAllocator + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: MutatingAdmissionPolicy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: NFTablesProxyMode + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: NodeInclusionPolicyInPodTopologySpread + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: NodeLogQuery + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: NodeSwap + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: OpenAPIEnums + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: PDBUnhealthyPodEvictionPolicy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: PersistentVolumeLastPhaseTransitionTime + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: PodAndContainerStatsFromCRI + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: PodDeletionCost + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: PodDisruptionConditions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: PodIndexLabel + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: PodLifecycleSleepAction + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: PodReadyToStartContainersCondition + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: PortForwardWebsockets + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ProcMountType + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: QOSReserved + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: RecoverVolumeExpansionFailure + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: RecursiveReadOnlyMounts + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: RelaxedEnvironmentVariableValidation + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: RetryGenerateName + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: RotateKubeletServerCertificate + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: RuntimeClassInImageCriApi + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: SELinuxMount + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: SELinuxMountReadWriteOncePod + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: SchedulerQueueingHints + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: SeparateCacheWatchRPC + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: SeparateTaintEvictionController + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ServiceAccountTokenJTI + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ServiceAccountTokenNodeBinding + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ServiceAccountTokenNodeBindingValidation + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ServiceAccountTokenPodNodeInfo + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ServiceTrafficDistribution + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: SidecarContainers + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: SizeMemoryBackedVolumes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: SkipReadOnlyValidationGCE + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: DEPRECATED + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: StatefulSetAutoDeletePVC + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: StatefulSetStartOrdinal + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: StorageNamespaceIndex + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: StorageVersionAPI + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: StorageVersionHash + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: StorageVersionMigrator + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: StructuredAuthenticationConfiguration + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: StructuredAuthorizationConfiguration + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: TopologyAwareHints + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: TopologyManagerPolicyAlphaOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: TopologyManagerPolicyBetaOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: TopologyManagerPolicyOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: TranslateStreamCloseWebsocketRequests + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: UnauthenticatedHTTP2DOSMitigation + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: UnknownVersionInteroperabilityProxy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: UserNamespacesPodSecurityStandards + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: UserNamespacesSupport + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: VolumeAttributesClass + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: VolumeCapacityPriority + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: WatchFromStorageWithoutResourceVersion + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: WatchList + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: WatchListClient + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: WinDSR + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: WinOverlay + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: WindowsHostNetwork + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: kubernetes_feature_enabled + - name: disabled_metrics_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_httplaxcontentlength_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_x509usefallbackroots_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 2.509844e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_heap_objects_bytes + - name: go_godebug_non_default_behavior_execerrdot_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 2.3093568e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_scan_total_bytes + - name: go_godebug_non_default_behavior_tarinsecurepath_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_x509sha1_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 3.104768e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_heap_released_bytes + - gauge: + dataPoints: + - asDouble: 10800 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_metadata_mcache_free_bytes + - gauge: + dataPoints: + - asDouble: Infinity + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: rest_client_exec_plugin_ttl_seconds + - name: root_ca_cert_publisher_sync_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 6 + attributes: + - key: code + value: + stringValue: "200" + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: apiserver_webhooks_x509_insecure_sha1_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_cycles_total_gc_cycles_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 13 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_tlsunsafeekm_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 15600 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_mcache_sys_bytes + - name: authentication_token_cache_fetch_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: status + value: + stringValue: ok + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.7273937822093172e+09 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_last_gc_time_seconds + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + - key: version + value: + stringValue: go1.22.2 + timeUnixNano: "1000000" + name: go_info + - name: go_gc_cycles_automatic_gc_cycles_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 13 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 9.223372036854776e+18 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_gomemlimit_bytes + - gauge: + dataPoints: + - asDouble: 1.506536e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_scan_stack_bytes + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_os_stacks_bytes + - name: apiserver_webhooks_x509_missing_san_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: authentication_token_cache_request_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: status + value: + stringValue: miss + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_cpu_classes_scavenge_background_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1.4e-07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_heap_allocs_objects_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 631305 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 4.8234496e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_heap_sys_bytes + - gauge: + dataPoints: + - asDouble: 6.1560072e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_sys_bytes + - name: apiserver_audit_event_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ClusterRoleAggregator + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DynamicCABundle-client-ca-bundle + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DynamicCABundle-csr-controller + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DynamicCABundle-request-header + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DynamicServingCertificateController + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: bootstrap_signer_queue + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: certificate + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: claims + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: cronjob + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: daemonset + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: deployment + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: disruption + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: disruption_recheck + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: endpoint + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: endpoint_slice + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: endpoint_slice_mirroring + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ephemeral_volume + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: garbage_collector_attempt_to_delete + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: garbage_collector_attempt_to_orphan + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: garbage_collector_graph_changes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: horizontalpodautoscaler + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: job + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: job_orphan_pod + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: namespace + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: node + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: node_lifecycle_controller + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: node_lifecycle_controller_pods + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: noexec_taint_node + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: noexec_taint_pod + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: orphaned_pods_nodes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: pvcprotection + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: pvcs + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: pvprotection + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: replicaset + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: replicationmanager + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: resource_quota_controller_resource_changes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: resourcequota_primary + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: resourcequota_priority + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: root_ca_cert_publisher + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: service + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: serviceaccount + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: serviceaccount_tokens_secret + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: serviceaccount_tokens_service + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: stale_pod_disruption + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: statefulset + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: token_cleaner + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ttl_jobs_to_delete + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ttlcontroller + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: validatingadmissionpolicy-status + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: volume_expand + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: volumes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: workqueue_depth + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ClusterRoleAggregator + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DynamicCABundle-client-ca-bundle + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DynamicCABundle-csr-controller + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DynamicCABundle-request-header + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DynamicServingCertificateController + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: bootstrap_signer_queue + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: certificate + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: claims + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: cronjob + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: daemonset + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: deployment + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: disruption + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: disruption_recheck + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: endpoint + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: endpoint_slice + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: endpoint_slice_mirroring + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ephemeral_volume + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: garbage_collector_attempt_to_delete + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: garbage_collector_attempt_to_orphan + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: garbage_collector_graph_changes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: horizontalpodautoscaler + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: job + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: job_orphan_pod + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: namespace + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: node + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: node_lifecycle_controller + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: node_lifecycle_controller_pods + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: noexec_taint_node + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: noexec_taint_pod + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: orphaned_pods_nodes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: pvcprotection + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: pvcs + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: pvprotection + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: replicaset + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: replicationmanager + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: resource_quota_controller_resource_changes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: resourcequota_primary + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: resourcequota_priority + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: root_ca_cert_publisher + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: service + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: serviceaccount + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: serviceaccount_tokens_secret + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: serviceaccount_tokens_service + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: stale_pod_disruption + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: statefulset + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: token_cleaner + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ttl_jobs_to_delete + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ttlcontroller + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: validatingadmissionpolicy-status + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: volume_expand + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: volumes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: workqueue_unfinished_work_seconds + - name: authorization_attempts_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 16 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: result + value: + stringValue: allowed + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: garbagecollector_controller_resources_sync_error_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 4096 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_stack_starting_size_bytes + - gauge: + dataPoints: + - asDouble: 3.104768e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_heap_released_bytes + - gauge: + dataPoints: + - asDouble: 1.337438208e+09 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: process_virtual_memory_bytes + - gauge: + dataPoints: + - asDouble: 9.561912e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_heap_unused_bytes + - gauge: + dataPoints: + - asDouble: 714233 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_other_bytes + - gauge: + dataPoints: + - asDouble: 121498 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_heap_objects + - name: go_sync_mutex_wait_total_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 119.663328176 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: node_collector_unhealthy_nodes_in_zone + - gauge: + dataPoints: + - asDouble: 256 + attributes: + - key: clusterCIDR + value: + stringValue: 10.244.0.0/16 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: node_ipam_controller_cirdset_max_cidrs + - gauge: + dataPoints: + - asDouble: 18 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: process_open_fds + - name: apiserver_delegated_authz_request_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: code + value: + stringValue: "201" + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_heap_frees_bytes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 6.159704e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.493567e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_profiling_buckets_bytes + - name: go_memstats_lookups_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: node_ipam_controller_cidrset_cidrs_allocations_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: clusterCIDR + value: + stringValue: 10.244.0.0/16 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: endpoint_slice_controller_syncs + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 19 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: result + value: + stringValue: success + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_heap_frees_objects_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 509807 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 2.4372352e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_heap_live_bytes + - name: go_godebug_non_default_behavior_httpmuxgo121_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_randautoseed_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 6.291456e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_stack_inuse_bytes + - gauge: + dataPoints: + - asDouble: 1222 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_sched_goroutines_goroutines + - gauge: + dataPoints: + - asDouble: 2602 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: scrape_samples_scraped + - name: authentication_attempts + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 16 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: result + value: + stringValue: success + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 2602 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: scrape_samples_post_metric_relabeling + - name: go_cpu_classes_gc_pause_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.009457184 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_jstmpllitinterp_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: process_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 2.74 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: apiserver_delegated_authn_request_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: code + value: + stringValue: "201" + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 121498 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_heap_objects_objects + - gauge: + dataPoints: + - asDouble: 554400 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_metadata_mspan_inuse_bytes + - name: node_collector_evictions_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 2.077676e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_scan_heap_bytes + - name: go_godebug_non_default_behavior_x509usepolicies_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: service_controller_nodesync_error_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: cardinality_enforcement_unexpected_categorizations_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 810272 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_scan_globals_bytes + - name: go_godebug_non_default_behavior_gocacheverify_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 6.291456e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_stack_sys_bytes + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: node_collector_zone_size + - name: taint_eviction_controller_pod_deletions_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: apiserver_audit_requests_rejected_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: status + value: + stringValue: blocked + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: status + value: + stringValue: in_flight + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: authentication_token_cache_active_fetch_count + - name: go_memstats_alloc_bytes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 8.669548e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: hidden_metrics_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: rest_client_transport_create_calls_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 54 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: result + value: + stringValue: hit + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 3 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: result + value: + stringValue: miss + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: workqueue_adds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 63 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ClusterRoleAggregator + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DynamicCABundle-client-ca-bundle + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 5 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DynamicCABundle-csr-controller + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DynamicCABundle-request-header + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 3 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DynamicServingCertificateController + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 2 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: bootstrap_signer_queue + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 30 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: certificate + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: claims + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: cronjob + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 17 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: daemonset + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 38 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: deployment + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: disruption + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: disruption_recheck + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 15 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: endpoint + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 19 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: endpoint_slice + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 10 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: endpoint_slice_mirroring + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ephemeral_volume + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 6 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: garbage_collector_attempt_to_delete + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: garbage_collector_attempt_to_orphan + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 676 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: garbage_collector_graph_changes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: horizontalpodautoscaler + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: job + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: job_orphan_pod + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: namespace + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: node + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 8 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: node_lifecycle_controller + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 13 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: node_lifecycle_controller_pods + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: noexec_taint_node + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 22 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: noexec_taint_pod + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: orphaned_pods_nodes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: pvcprotection + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: pvcs + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: pvprotection + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 39 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: replicaset + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: replicationmanager + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: resource_quota_controller_resource_changes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: resourcequota_primary + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: resourcequota_priority + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 6 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: root_ca_cert_publisher + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: service + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 6 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: serviceaccount + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: serviceaccount_tokens_secret + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 48 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: serviceaccount_tokens_service + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: stale_pod_disruption + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: statefulset + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: token_cleaner + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ttl_jobs_to_delete + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 8 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ttlcontroller + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: validatingadmissionpolicy-status + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: volume_expand + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: volumes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: apiserver_storage_envelope_transformation_cache_misses_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.8446744073709552e+19 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: process_virtual_memory_max_bytes + - name: go_godebug_non_default_behavior_zipinsecurepath_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 6.1560072e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_total_bytes + - gauge: + dataPoints: + - asDouble: 100 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_gogc_percent + - gauge: + dataPoints: + - asDouble: 3 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: endpoint_slice_controller_num_endpoint_slices + - gauge: + dataPoints: + - asDouble: 1221 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_goroutines + - gauge: + dataPoints: + - asDouble: 2.509844e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_alloc_bytes + - name: retroactive_storageclass_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: authenticated_user_requests + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 16 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + - key: username + value: + stringValue: other + timeUnixNano: "1000000" + isMonotonic: true + - name: go_cpu_classes_user_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 2.544796341 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_multipathtcp_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 5.1061512e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_next_gc_bytes + - name: go_cgo_go_to_c_calls_calls_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 4 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: endpoint_slice_controller_endpoints_desired + - name: go_cpu_classes_gc_mark_dedicated_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.069203205 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_cpu_classes_total_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 555.996617088 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 4.12528e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_gc_sys_bytes + - gauge: + dataPoints: + - asDouble: 0.00390625 + attributes: + - key: clusterCIDR + value: + stringValue: 10.244.0.0/16 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: node_ipam_controller_cidrset_usage_cidrs + - name: ephemeral_volume_controller_create_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_cpu_classes_gc_mark_assist_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.003772846 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_cpu_classes_gc_mark_idle_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.138028727 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 4800 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_metadata_mcache_inuse_bytes + - name: apiserver_storage_data_key_generation_failures_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: ephemeral_volume_controller_create_failures_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_cpu_classes_gc_total_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.220461962 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_installgoroot_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.0469376e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_heap_free_bytes + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ClusterRoleAggregator + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DynamicCABundle-client-ca-bundle + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DynamicCABundle-csr-controller + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DynamicCABundle-request-header + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DynamicServingCertificateController + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: bootstrap_signer_queue + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: certificate + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: claims + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: cronjob + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: daemonset + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: deployment + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: disruption + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: disruption_recheck + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: endpoint + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: endpoint_slice + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: endpoint_slice_mirroring + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ephemeral_volume + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: garbage_collector_attempt_to_delete + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: garbage_collector_attempt_to_orphan + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: garbage_collector_graph_changes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: horizontalpodautoscaler + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: job + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: job_orphan_pod + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: namespace + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: node + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: node_lifecycle_controller + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: node_lifecycle_controller_pods + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: noexec_taint_node + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: noexec_taint_pod + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: orphaned_pods_nodes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: pvcprotection + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: pvcs + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: pvprotection + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: replicaset + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: replicationmanager + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: resource_quota_controller_resource_changes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: resourcequota_primary + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: resourcequota_priority + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: root_ca_cert_publisher + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: service + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: serviceaccount + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: serviceaccount_tokens_secret + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: serviceaccount_tokens_service + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: stale_pod_disruption + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: statefulset + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: token_cleaner + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ttl_jobs_to_delete + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ttlcontroller + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: validatingadmissionpolicy-status + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: volume_expand + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: volumes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: workqueue_longest_running_processor_seconds + - name: rest_client_requests_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 216 + attributes: + - key: code + value: + stringValue: "200" + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: method + value: + stringValue: GET + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 15 + attributes: + - key: code + value: + stringValue: "200" + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: method + value: + stringValue: PATCH + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 140 + attributes: + - key: code + value: + stringValue: "200" + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: method + value: + stringValue: PUT + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 104 + attributes: + - key: code + value: + stringValue: "201" + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: method + value: + stringValue: POST + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: code + value: + stringValue: "403" + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: method + value: + stringValue: GET + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 35 + attributes: + - key: code + value: + stringValue: "404" + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: method + value: + stringValue: GET + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 9 + attributes: + - key: code + value: + stringValue: "409" + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: method + value: + stringValue: PUT + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 2602 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: scrape_series_added + - gauge: + dataPoints: + - asDouble: 1.3574144e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_heap_idle_bytes + - name: go_godebug_non_default_behavior_gocachehash_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_memstats_mallocs_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 684042 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 4 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_sched_gomaxprocs_threads + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: kube-controller-manager + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: leader_election_master_status + - name: retroactive_storageclass_errors_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 3 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: endpoint_slice_controller_desired_endpoint_slices + - name: workqueue_retries_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ClusterRoleAggregator + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DynamicCABundle-client-ca-bundle + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DynamicCABundle-csr-controller + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DynamicCABundle-request-header + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: DynamicServingCertificateController + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: bootstrap_signer_queue + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: certificate + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: cronjob + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: daemonset + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 17 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: deployment + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: disruption + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: disruption_recheck + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 10 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: endpoint + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 16 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: endpoint_slice + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: endpoint_slice_mirroring + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ephemeral_volume + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: garbage_collector_attempt_to_delete + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: garbage_collector_attempt_to_orphan + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: garbage_collector_graph_changes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: horizontalpodautoscaler + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: job + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: job_orphan_pod + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: namespace + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: node + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: node_lifecycle_controller_pods + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: orphaned_pods_nodes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: pvcprotection + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: pvcs + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: pvprotection + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: replicaset + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: replicationmanager + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: resource_quota_controller_resource_changes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: resourcequota_primary + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: resourcequota_priority + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: root_ca_cert_publisher + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: service + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: serviceaccount + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: serviceaccount_tokens_secret + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: serviceaccount_tokens_service + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: stale_pod_disruption + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: statefulset + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: token_cleaner + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ttl_jobs_to_delete + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: ttlcontroller + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: validatingadmissionpolicy-status + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 514ab4db-aa19-4655-8675-a99861a6a362 + - key: name + value: + stringValue: volume_expand + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + scope: {} diff --git a/functional_tests/testdata_histogram/expected/v1.31/controller_manager_metrics.yaml b/functional_tests/testdata_histogram/expected/v1.31/controller_manager_metrics.yaml new file mode 100644 index 0000000000..fab92726ce --- /dev/null +++ b/functional_tests/testdata_histogram/expected/v1.31/controller_manager_metrics.yaml @@ -0,0 +1,5066 @@ +resourceMetrics: + - resource: + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: d842c515-08ca-4e80-bc2e-59c069ac609c + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10257" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10257" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10257 + - key: service.name + value: + stringValue: kube-controller-manager + - key: url.scheme + value: + stringValue: https + schemaUrl: https://opentelemetry.io/schemas/1.6.1 + scopeMetrics: + - metrics: + - description: '[ALPHA] CEL compilation time in seconds.' + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 0.005 + - 0.01 + - 0.025 + - 0.05 + - 0.1 + - 0.25 + - 0.5 + - 1 + - 2.5 + - 5 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: apiserver_cel_compilation_duration_seconds + - description: '[ALPHA] ' + histogram: + aggregationTemporality: 2 + dataPoints: + - attributes: + - key: status + value: + stringValue: miss + bucketCounts: + - "1" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "1" + explicitBounds: + - 0.005 + - 0.01 + - 0.025 + - 0.05 + - 0.1 + - 0.25 + - 0.5 + - 1 + - 2.5 + - 5 + - 10 + startTimeUnixNano: "1000000" + sum: 0.005 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: authentication_token_cache_request_duration_seconds + - description: '[ALPHA] Number of endpoints removed on each Service sync' + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "16" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "16" + explicitBounds: + - 2 + - 4 + - 8 + - 16 + - 32 + - 64 + - 128 + - 256 + - 512 + - 1024 + - 2048 + - 4096 + - 8192 + - 16384 + - 32768 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: endpoint_slice_controller_endpoints_removed_per_sync + - description: '[STABLE] Time between when a cronjob is scheduled to be run, and when the corresponding job is created' + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1 + - 2 + - 4 + - 8 + - 16 + - 32 + - 64 + - 128 + - 256 + - 512 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: cronjob_controller_job_creation_skew_duration_seconds + - description: '[ALPHA] Number of EndpointSlices changed on each Service sync' + histogram: + aggregationTemporality: 2 + dataPoints: + - attributes: + - key: topology + value: + stringValue: Disabled + bucketCounts: + - "7" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "9" + - "0" + - "0" + - "0" + - "0" + count: "16" + explicitBounds: + - 0.005 + - 0.01 + - 0.025 + - 0.05 + - 0.1 + - 0.25 + - 0.5 + - 1 + - 2.5 + - 5 + - 10 + startTimeUnixNano: "1000000" + sum: 9 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: endpoint_slice_controller_endpointslices_changed_per_sync + - description: '[ALPHA] Request size in bytes. Broken down by verb and host.' + histogram: + aggregationTemporality: 2 + dataPoints: + - attributes: + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: verb + value: + stringValue: GET + bucketCounts: + - "198" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "198" + explicitBounds: + - 64 + - 256 + - 512 + - 1024 + - 4096 + - 16384 + - 65536 + - 262144 + - 1.048576e+06 + - 4.194304e+06 + - 1.6777216e+07 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: verb + value: + stringValue: PATCH + bucketCounts: + - "1" + - "2" + - "1" + - "0" + - "8" + - "3" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "15" + explicitBounds: + - 64 + - 256 + - 512 + - 1024 + - 4096 + - 16384 + - 65536 + - 262144 + - 1.048576e+06 + - 4.194304e+06 + - 1.6777216e+07 + startTimeUnixNano: "1000000" + sum: 38104 + timeUnixNano: "1000000" + - attributes: + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: verb + value: + stringValue: POST + bucketCounts: + - "1" + - "57" + - "19" + - "7" + - "19" + - "1" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "104" + explicitBounds: + - 64 + - 256 + - 512 + - 1024 + - 4096 + - 16384 + - 65536 + - 262144 + - 1.048576e+06 + - 4.194304e+06 + - 1.6777216e+07 + startTimeUnixNano: "1000000" + sum: 50739 + timeUnixNano: "1000000" + - attributes: + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: verb + value: + stringValue: PUT + bucketCounts: + - "0" + - "0" + - "78" + - "13" + - "54" + - "1" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "146" + explicitBounds: + - 64 + - 256 + - 512 + - 1024 + - 4096 + - 16384 + - 65536 + - 262144 + - 1.048576e+06 + - 4.194304e+06 + - 1.6777216e+07 + startTimeUnixNano: "1000000" + sum: 175421 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: rest_client_request_size_bytes + - description: '[ALPHA] Time for comparison of old to new for the purposes of CRDValidationRatcheting during an UPDATE in seconds.' + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-05 + - 4e-05 + - 0.00016 + - 0.00064 + - 0.00256 + - 0.01024 + - 0.04096 + - 0.16384 + - 0.65536 + - 2.62144 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: apiextensions_apiserver_validation_ratcheting_seconds + - description: '[ALPHA] Histogram of the number of seconds the last auth exec plugin client certificate lived before being rotated. If auth exec plugin client certificates are unused, histogram will contain no data.' + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 600 + - 1800 + - 3600 + - 14400 + - 86400 + - 604800 + - 2.592e+06 + - 7.776e+06 + - 1.5552e+07 + - 3.1104e+07 + - 1.24416e+08 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: rest_client_exec_plugin_certificate_rotation_age + - description: '[ALPHA] How long in seconds processing an item from workqueue takes.' + histogram: + aggregationTemporality: 2 + dataPoints: + - attributes: + - key: name + value: + stringValue: ClusterRoleAggregator + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "46" + - "13" + - "1" + - "3" + - "0" + - "0" + count: "63" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 2.0266241129999996 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: DynamicCABundle-client-ca-bundle + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "2" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "2" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 4.287e-05 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: DynamicCABundle-csr-controller + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "6" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "6" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.001040605 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: DynamicCABundle-request-header + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "1" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "1" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 2.8283e-05 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: DynamicServingCertificateController + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "3" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "3" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 5.0294e-05 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: bootstrap_signer_queue + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "1" + - "0" + - "0" + - "0" + - "1" + - "0" + - "0" + count: "2" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.6034830919999999 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: certificate + bucketCounts: + - "0" + - "0" + - "0" + - "15" + - "11" + - "2" + - "0" + - "2" + - "0" + - "0" + - "0" + count: "30" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.03881558800000001 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: claims + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: cronjob + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: daemonset + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "8" + - "4" + - "2" + - "2" + - "0" + - "0" + count: "16" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 1.8957623210000003 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: deployment + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "13" + - "16" + - "7" + - "2" + - "0" + - "0" + count: "38" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 1.5920111130000003 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: disruption + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: disruption_recheck + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: endpoint + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "5" + - "0" + - "8" + - "1" + - "0" + - "0" + - "0" + count: "14" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.09241719300000001 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: endpoint_slice + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "3" + - "5" + - "8" + - "0" + - "1" + - "0" + - "0" + count: "17" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.8373582580000002 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: endpoint_slice_mirroring + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "10" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "10" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.000194512 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: ephemeral_volume + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: garbage_collector_attempt_to_delete + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "1" + - "0" + - "5" + - "0" + - "0" + - "0" + - "0" + count: "6" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.0368459 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: garbage_collector_attempt_to_orphan + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: garbage_collector_graph_changes + bucketCounts: + - "0" + - "0" + - "0" + - "501" + - "165" + - "4" + - "1" + - "0" + - "0" + - "0" + - "0" + count: "671" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.008388135000000005 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: horizontalpodautoscaler + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: job + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: job_orphan_pod + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: namespace + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: node + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: node_lifecycle_controller + bucketCounts: + - "0" + - "0" + - "0" + - "4" + - "2" + - "0" + - "1" + - "0" + - "0" + - "0" + - "0" + count: "7" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.007379337999999999 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: node_lifecycle_controller_pods + bucketCounts: + - "0" + - "0" + - "0" + - "3" + - "7" + - "2" + - "1" + - "0" + - "0" + - "0" + - "0" + count: "13" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.00205301 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: noexec_taint_node + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "1" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "1" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 2.4676e-05 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: noexec_taint_pod + bucketCounts: + - "0" + - "0" + - "0" + - "13" + - "7" + - "2" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "22" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.000611182 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: orphaned_pods_nodes + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: pvcprotection + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: pvcs + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: pvprotection + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: replicaset + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "9" + - "14" + - "6" + - "9" + - "2" + - "0" + - "0" + count: "40" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.9238042379999996 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: replicationmanager + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: resource_quota_controller_resource_changes + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: resourcequota_primary + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: resourcequota_priority + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: root_ca_cert_publisher + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "5" + - "0" + - "1" + - "0" + - "0" + count: "6" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.719315073 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: service + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: serviceaccount + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "5" + - "0" + - "1" + - "0" + - "0" + count: "6" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.563585007 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: serviceaccount_tokens_secret + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: serviceaccount_tokens_service + bucketCounts: + - "0" + - "0" + - "0" + - "47" + - "1" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "48" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.000290544 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: stale_pod_disruption + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: statefulset + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: token_cleaner + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "1" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "1" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 1.4076e-05 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: ttl_jobs_to_delete + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: ttlcontroller + bucketCounts: + - "0" + - "0" + - "0" + - "6" + - "0" + - "0" + - "0" + - "0" + - "1" + - "0" + - "0" + count: "7" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.755161755 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: validatingadmissionpolicy-status + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: volume_expand + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: volumes + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: workqueue_work_duration_seconds + - description: '[ALPHA] Duration in seconds for NodeController to update the health of a single node.' + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "27" + - "1" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "28" + explicitBounds: + - 0.001 + - 0.004 + - 0.016 + - 0.064 + - 0.256 + - 1.024 + - 4.096 + - 16.384 + startTimeUnixNano: "1000000" + sum: 0.00284636 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: node_collector_update_node_health_duration_seconds + - description: '[ALPHA] Latencies in seconds of data encryption key(DEK) generation operations.' + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 5e-06 + - 1e-05 + - 2e-05 + - 4e-05 + - 8e-05 + - 0.00016 + - 0.00032 + - 0.00064 + - 0.00128 + - 0.00256 + - 0.00512 + - 0.01024 + - 0.02048 + - 0.04096 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: apiserver_storage_data_key_generation_duration_seconds + - description: '[ALPHA] Duration of syncEndpoints() in seconds' + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "10" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "10" + explicitBounds: + - 0.001 + - 0.002 + - 0.004 + - 0.008 + - 0.016 + - 0.032 + - 0.064 + - 0.128 + - 0.256 + - 0.512 + - 1.024 + - 2.048 + - 4.096 + - 8.192 + - 16.384 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: endpoint_slice_mirroring_controller_endpoints_sync_duration + - description: '[ALPHA] Client side rate limiter latency in seconds. Broken down by verb, and host.' + histogram: + aggregationTemporality: 2 + dataPoints: + - attributes: + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: verb + value: + stringValue: GET + bucketCounts: + - "131" + - "1" + - "45" + - "7" + - "10" + - "4" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "198" + explicitBounds: + - 0.005 + - 0.025 + - 0.1 + - 0.25 + - 0.5 + - 1 + - 2 + - 4 + - 8 + - 15 + - 30 + - 60 + startTimeUnixNano: "1000000" + sum: 9.771708125000005 + timeUnixNano: "1000000" + - attributes: + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: verb + value: + stringValue: PATCH + bucketCounts: + - "15" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "15" + explicitBounds: + - 0.005 + - 0.025 + - 0.1 + - 0.25 + - 0.5 + - 1 + - 2 + - 4 + - 8 + - 15 + - 30 + - 60 + startTimeUnixNano: "1000000" + sum: 2.2839999999999995e-05 + timeUnixNano: "1000000" + - attributes: + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: verb + value: + stringValue: POST + bucketCounts: + - "73" + - "0" + - "22" + - "0" + - "9" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "104" + explicitBounds: + - 0.005 + - 0.025 + - 0.1 + - 0.25 + - 0.5 + - 1 + - 2 + - 4 + - 8 + - 15 + - 30 + - 60 + startTimeUnixNano: "1000000" + sum: 5.1838831999999995 + timeUnixNano: "1000000" + - attributes: + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: verb + value: + stringValue: PUT + bucketCounts: + - "146" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "146" + explicitBounds: + - 0.005 + - 0.025 + - 0.1 + - 0.25 + - 0.5 + - 1 + - 2 + - 4 + - 8 + - 15 + - 30 + - 60 + startTimeUnixNano: "1000000" + sum: 0.0004300169999999999 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: rest_client_rate_limiter_duration_seconds + - description: '[ALPHA] Number of endpoints added on each Service sync' + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "16" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "16" + explicitBounds: + - 2 + - 4 + - 8 + - 16 + - 32 + - 64 + - 128 + - 256 + - 512 + - 1024 + - 2048 + - 4096 + - 8192 + - 16384 + - 32768 + startTimeUnixNano: "1000000" + sum: 4 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: endpoint_slice_controller_endpoints_added_per_sync + - description: '[ALPHA] The ratio of chosen deleted pod''s ages to the current youngest pod''s age (at the time). Should be <2. The intent of this metric is to measure the rough efficacy of the LogarithmicScaleDown feature gate''s effect on the sorting (and deletion) of pods when a replicaset scales down. This only considers Ready pods when calculating and reporting.' + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 0.25 + - 0.5 + - 1 + - 2 + - 4 + - 8 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: replicaset_controller_sorting_deletion_age_ratio + - description: '[ALPHA] Response size in bytes. Broken down by verb and host.' + histogram: + aggregationTemporality: 2 + dataPoints: + - attributes: + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: verb + value: + stringValue: GET + bucketCounts: + - "19" + - "78" + - "38" + - "5" + - "16" + - "25" + - "17" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "198" + explicitBounds: + - 64 + - 256 + - 512 + - 1024 + - 4096 + - 16384 + - 65536 + - 262144 + - 1.048576e+06 + - 4.194304e+06 + - 1.6777216e+07 + startTimeUnixNano: "1000000" + sum: 603705 + timeUnixNano: "1000000" + - attributes: + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: verb + value: + stringValue: PATCH + bucketCounts: + - "0" + - "0" + - "0" + - "1" + - "14" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "15" + explicitBounds: + - 64 + - 256 + - 512 + - 1024 + - 4096 + - 16384 + - 65536 + - 262144 + - 1.048576e+06 + - 4.194304e+06 + - 1.6777216e+07 + startTimeUnixNano: "1000000" + sum: 46591 + timeUnixNano: "1000000" + - attributes: + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: verb + value: + stringValue: POST + bucketCounts: + - "0" + - "40" + - "1" + - "20" + - "41" + - "2" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "104" + explicitBounds: + - 64 + - 256 + - 512 + - 1024 + - 4096 + - 16384 + - 65536 + - 262144 + - 1.048576e+06 + - 4.194304e+06 + - 1.6777216e+07 + startTimeUnixNano: "1000000" + sum: 115812 + timeUnixNano: "1000000" + - attributes: + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: verb + value: + stringValue: PUT + bucketCounts: + - "0" + - "2" + - "84" + - "6" + - "34" + - "20" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "146" + explicitBounds: + - 64 + - 256 + - 512 + - 1024 + - 4096 + - 16384 + - 65536 + - 262144 + - 1.048576e+06 + - 4.194304e+06 + - 1.6777216e+07 + startTimeUnixNano: "1000000" + sum: 259808 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: rest_client_response_size_bytes + - description: '[ALPHA] Request latency in seconds. Broken down by status code.' + histogram: + aggregationTemporality: 2 + dataPoints: + - attributes: + - key: code + value: + stringValue: "201" + bucketCounts: + - "1" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "1" + explicitBounds: + - 0.25 + - 0.5 + - 0.7 + - 1 + - 1.5 + - 3 + - 5 + - 10 + startTimeUnixNano: "1000000" + sum: 0.001492718 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: apiserver_delegated_authz_request_duration_seconds + - description: '[ALPHA] A metric measuring the latency for updating each load balancer hosts.' + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1 + - 2 + - 4 + - 8 + - 16 + - 32 + - 64 + - 128 + - 256 + - 512 + - 1024 + - 2048 + - 4096 + - 8192 + - 16384 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: service_controller_update_loadbalancer_host_latency_seconds + - description: '[ALPHA] Duration in seconds for NodeController to update the health of all nodes.' + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "28" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "28" + explicitBounds: + - 0.01 + - 0.04 + - 0.16 + - 0.64 + - 2.56 + - 10.24 + - 40.96 + - 163.84 + startTimeUnixNano: "1000000" + sum: 0.004353011999999999 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: node_collector_update_all_nodes_health_duration_seconds + - description: Distribution of individual non-GC-related stop-the-world stopping latencies. This is the time it takes from deciding to stop the world until all Ps are stopped. This is a subset of the total non-GC-related stop-the-world time (/sched/pauses/total/other:seconds). During this time, some threads may be executing. Bucket counts increase monotonically. + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 6.399999999999999e-08 + - 6.399999999999999e-07 + - 7.167999999999999e-06 + - 8.191999999999999e-05 + - 0.0009175039999999999 + - 0.010485759999999998 + - 0.11744051199999998 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: go_sched_pauses_stopping_other_seconds + - description: Distribution of freed heap allocations by approximate size. Bucket counts increase monotonically. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "10082" + - "191131" + - "104475" + - "72652" + - "41679" + - "7860" + - "3692" + - "1421" + - "1556" + - "248" + - "63" + - "75" + count: "434934" + explicitBounds: + - 8.999999999999998 + - 24.999999999999996 + - 64.99999999999999 + - 144.99999999999997 + - 320.99999999999994 + - 704.9999999999999 + - 1536.9999999999998 + - 3200.9999999999995 + - 6528.999999999999 + - 13568.999999999998 + - 27264.999999999996 + startTimeUnixNano: "1000000" + sum: 5.32536e+07 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: go_gc_heap_frees_by_size_bytes + - description: '[ALPHA] Distribution of the remaining lifetime on the certificate used to authenticate a request.' + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 0 + - 1800 + - 3600 + - 7200 + - 21600 + - 43200 + - 86400 + - 172800 + - 345600 + - 604800 + - 2.592e+06 + - 7.776e+06 + - 1.5552e+07 + - 3.1104e+07 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: apiserver_client_certificate_expiration_seconds + - description: '[ALPHA] The time it took to delete the job since it became eligible for deletion' + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 0.1 + - 0.2 + - 0.4 + - 0.8 + - 1.6 + - 3.2 + - 6.4 + - 12.8 + - 25.6 + - 51.2 + - 102.4 + - 204.8 + - 409.6 + - 819.2 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: ttl_after_finished_controller_job_deletion_duration_seconds + - description: '[ALPHA] A metric measuring the latency for nodesync which updates loadbalancer hosts on cluster node updates.' + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1 + - 2 + - 4 + - 8 + - 16 + - 32 + - 64 + - 128 + - 256 + - 512 + - 1024 + - 2048 + - 4096 + - 8192 + - 16384 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: service_controller_nodesync_latency_seconds + - description: '[ALPHA] Latency, in seconds, between the time when a taint effect has been activated for the Pod and its deletion via TaintEvictionController.' + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 0.005 + - 0.025 + - 0.1 + - 0.5 + - 1 + - 2.5 + - 10 + - 30 + - 60 + - 120 + - 180 + - 240 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: taint_eviction_controller_pod_deletion_duration_seconds + - description: '[ALPHA] CEL evaluation time in seconds.' + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 0.005 + - 0.01 + - 0.025 + - 0.05 + - 0.1 + - 0.25 + - 0.5 + - 1 + - 2.5 + - 5 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: apiserver_cel_evaluation_duration_seconds + - description: '[ALPHA] Number of endpoints added on each Service sync' + histogram: + aggregationTemporality: 2 + dataPoints: + - attributes: + - key: clusterCIDR + value: + stringValue: 10.244.0.0/16 + bucketCounts: + - "1" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "1" + explicitBounds: + - 1 + - 5 + - 25 + - 125 + - 625 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: node_ipam_controller_cidrset_allocation_tries_per_request + - description: '[ALPHA] Request latency in seconds. Broken down by status code.' + histogram: + aggregationTemporality: 2 + dataPoints: + - attributes: + - key: code + value: + stringValue: "201" + bucketCounts: + - "1" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "1" + explicitBounds: + - 0.25 + - 0.5 + - 0.7 + - 1 + - 1.5 + - 3 + - 5 + - 10 + startTimeUnixNano: "1000000" + sum: 0.005402619 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: apiserver_delegated_authn_request_duration_seconds + - description: Distribution of heap allocations by approximate size. Bucket counts increase monotonically. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "14512" + - "262161" + - "166054" + - "102464" + - "54630" + - "20180" + - "5096" + - "1967" + - "1852" + - "456" + - "271" + - "186" + count: "629829" + explicitBounds: + - 8.999999999999998 + - 24.999999999999996 + - 64.99999999999999 + - 144.99999999999997 + - 320.99999999999994 + - 704.9999999999999 + - 1536.9999999999998 + - 3200.9999999999995 + - 6528.999999999999 + - 13568.999999999998 + - 27264.999999999996 + startTimeUnixNano: "1000000" + sum: 8.6040568e+07 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: go_gc_heap_allocs_by_size_bytes + - description: Distribution of the time goroutines have spent in the scheduler in a runnable state before actually running. Bucket counts increase monotonically. + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "1087" + - "679" + - "2634" + - "1561" + - "210" + - "44" + - "0" + - "0" + count: "6215" + explicitBounds: + - 6.399999999999999e-08 + - 6.399999999999999e-07 + - 7.167999999999999e-06 + - 8.191999999999999e-05 + - 0.0009175039999999999 + - 0.010485759999999998 + - 0.11744051199999998 + startTimeUnixNano: "1000000" + sum: 0.07049184 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: go_sched_latencies_seconds + - description: '[ALPHA] Authentication duration in seconds broken out by result.' + histogram: + aggregationTemporality: 2 + dataPoints: + - attributes: + - key: result + value: + stringValue: success + bucketCounts: + - "15" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "15" + explicitBounds: + - 0.001 + - 0.002 + - 0.004 + - 0.008 + - 0.016 + - 0.032 + - 0.064 + - 0.128 + - 0.256 + - 0.512 + - 1.024 + - 2.048 + - 4.096 + - 8.192 + - 16.384 + startTimeUnixNano: "1000000" + sum: 0.000385428 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: authentication_duration_seconds + - description: '[ALPHA] How long in seconds an item stays in workqueue before being requested.' + histogram: + aggregationTemporality: 2 + dataPoints: + - attributes: + - key: name + value: + stringValue: ClusterRoleAggregator + bucketCounts: + - "0" + - "0" + - "0" + - "21" + - "6" + - "25" + - "8" + - "3" + - "0" + - "0" + - "0" + count: "63" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.17281754 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: DynamicCABundle-client-ca-bundle + bucketCounts: + - "0" + - "0" + - "0" + - "1" + - "1" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "2" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 1.8701000000000003e-05 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: DynamicCABundle-csr-controller + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "4" + - "2" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "6" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.000537703 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: DynamicCABundle-request-header + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "1" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "1" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.000269112 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: DynamicServingCertificateController + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "3" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "3" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 4.3540999999999995e-05 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: bootstrap_signer_queue + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "1" + - "0" + - "0" + - "0" + - "0" + - "1" + - "0" + count: "2" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 1.8004588220000002 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: certificate + bucketCounts: + - "0" + - "0" + - "0" + - "16" + - "3" + - "1" + - "0" + - "10" + - "0" + - "0" + - "0" + count: "30" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.43301819700000005 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: claims + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: cronjob + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: daemonset + bucketCounts: + - "0" + - "0" + - "0" + - "6" + - "2" + - "2" + - "1" + - "5" + - "0" + - "0" + - "0" + count: "16" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.24582215799999999 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: deployment + bucketCounts: + - "0" + - "0" + - "0" + - "16" + - "2" + - "7" + - "4" + - "9" + - "0" + - "0" + - "0" + count: "38" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.277535491 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: disruption + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: disruption_recheck + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: endpoint + bucketCounts: + - "0" + - "0" + - "0" + - "12" + - "0" + - "0" + - "0" + - "2" + - "0" + - "0" + - "0" + count: "14" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.05124650099999999 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: endpoint_slice + bucketCounts: + - "0" + - "0" + - "0" + - "14" + - "1" + - "0" + - "0" + - "2" + - "0" + - "0" + - "0" + count: "17" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.169764549 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: endpoint_slice_mirroring + bucketCounts: + - "0" + - "0" + - "0" + - "9" + - "0" + - "0" + - "0" + - "1" + - "0" + - "0" + - "0" + count: "10" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.08571319100000001 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: ephemeral_volume + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: garbage_collector_attempt_to_delete + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "6" + - "0" + - "0" + count: "6" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 4.686947429 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: garbage_collector_attempt_to_orphan + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: garbage_collector_graph_changes + bucketCounts: + - "0" + - "0" + - "9" + - "460" + - "104" + - "98" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "671" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.024226090999999977 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: horizontalpodautoscaler + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: job + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: job_orphan_pod + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: namespace + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: node + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: node_lifecycle_controller + bucketCounts: + - "0" + - "0" + - "0" + - "6" + - "0" + - "0" + - "0" + - "1" + - "0" + - "0" + - "0" + count: "7" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.092592275 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: node_lifecycle_controller_pods + bucketCounts: + - "0" + - "0" + - "0" + - "8" + - "1" + - "0" + - "0" + - "4" + - "0" + - "0" + - "0" + count: "13" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.364914616 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: noexec_taint_node + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "1" + - "0" + - "0" + - "0" + count: "1" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.091185582 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: noexec_taint_pod + bucketCounts: + - "0" + - "0" + - "0" + - "12" + - "5" + - "1" + - "0" + - "4" + - "0" + - "0" + - "0" + count: "22" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.3601596169999999 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: orphaned_pods_nodes + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: pvcprotection + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: pvcs + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: pvprotection + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: replicaset + bucketCounts: + - "0" + - "0" + - "0" + - "24" + - "1" + - "5" + - "3" + - "7" + - "0" + - "0" + - "0" + count: "40" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.12755579099999997 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: replicationmanager + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: resource_quota_controller_resource_changes + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: resourcequota_primary + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: resourcequota_priority + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: root_ca_cert_publisher + bucketCounts: + - "0" + - "0" + - "0" + - "1" + - "0" + - "0" + - "0" + - "1" + - "4" + - "0" + - "0" + count: "6" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 3.258264172 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: service + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: serviceaccount + bucketCounts: + - "0" + - "0" + - "0" + - "1" + - "0" + - "0" + - "0" + - "1" + - "4" + - "0" + - "0" + count: "6" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 2.393591978 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: serviceaccount_tokens_secret + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: serviceaccount_tokens_service + bucketCounts: + - "0" + - "0" + - "0" + - "37" + - "1" + - "0" + - "0" + - "10" + - "0" + - "0" + - "0" + count: "48" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.7501404709999999 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: stale_pod_disruption + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: statefulset + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: token_cleaner + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "1" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "1" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.000249947 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: ttl_jobs_to_delete + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: ttlcontroller + bucketCounts: + - "0" + - "0" + - "0" + - "5" + - "0" + - "1" + - "0" + - "1" + - "0" + - "0" + - "0" + count: "7" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0.08389994599999999 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: validatingadmissionpolicy-status + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: volume_expand + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + - attributes: + - key: name + value: + stringValue: volumes + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 1e-08 + - 1e-07 + - 1e-06 + - 9.999999999999999e-06 + - 9.999999999999999e-05 + - 0.001 + - 0.01 + - 0.1 + - 1 + - 10 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: workqueue_queue_duration_seconds + - description: Distribution of individual non-GC-related stop-the-world pause latencies. This is the time from deciding to stop the world until the world is started again. Some of this time is spent getting all threads to stop (measured directly in /sched/pauses/stopping/other:seconds). Bucket counts increase monotonically. + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + explicitBounds: + - 6.399999999999999e-08 + - 6.399999999999999e-07 + - 7.167999999999999e-06 + - 8.191999999999999e-05 + - 0.0009175039999999999 + - 0.010485759999999998 + - 0.11744051199999998 + startTimeUnixNano: "1000000" + sum: 0 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: go_sched_pauses_total_other_seconds + - description: '[ALPHA] Request latency in seconds. Broken down by verb, and host.' + histogram: + aggregationTemporality: 2 + dataPoints: + - attributes: + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: verb + value: + stringValue: GET + bucketCounts: + - "89" + - "39" + - "44" + - "9" + - "11" + - "5" + - "1" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "198" + explicitBounds: + - 0.005 + - 0.025 + - 0.1 + - 0.25 + - 0.5 + - 1 + - 2 + - 4 + - 8 + - 15 + - 30 + - 60 + startTimeUnixNano: "1000000" + sum: 13.2880485 + timeUnixNano: "1000000" + - attributes: + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: verb + value: + stringValue: PATCH + bucketCounts: + - "5" + - "6" + - "0" + - "0" + - "0" + - "4" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "15" + explicitBounds: + - 0.005 + - 0.025 + - 0.1 + - 0.25 + - 0.5 + - 1 + - 2 + - 4 + - 8 + - 15 + - 30 + - 60 + startTimeUnixNano: "1000000" + sum: 2.754314302 + timeUnixNano: "1000000" + - attributes: + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: verb + value: + stringValue: POST + bucketCounts: + - "44" + - "19" + - "21" + - "2" + - "11" + - "7" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "104" + explicitBounds: + - 0.005 + - 0.025 + - 0.1 + - 0.25 + - 0.5 + - 1 + - 2 + - 4 + - 8 + - 15 + - 30 + - 60 + startTimeUnixNano: "1000000" + sum: 11.538072622 + timeUnixNano: "1000000" + - attributes: + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: verb + value: + stringValue: PUT + bucketCounts: + - "76" + - "67" + - "2" + - "0" + - "0" + - "1" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "146" + explicitBounds: + - 0.005 + - 0.025 + - 0.1 + - 0.25 + - 0.5 + - 1 + - 2 + - 4 + - 8 + - 15 + - 30 + - 60 + startTimeUnixNano: "1000000" + sum: 1.5314315709999997 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: rest_client_request_duration_seconds + - description: Distribution of individual GC-related stop-the-world stopping latencies. This is the time it takes from deciding to stop the world until all Ps are stopped. This is a subset of the total GC-related stop-the-world time (/sched/pauses/total/gc:seconds). During this time, some threads may be executing. Bucket counts increase monotonically. + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "0" + - "10" + - "1" + - "10" + - "3" + - "0" + - "0" + - "0" + count: "24" + explicitBounds: + - 6.399999999999999e-08 + - 6.399999999999999e-07 + - 7.167999999999999e-06 + - 8.191999999999999e-05 + - 0.0009175039999999999 + - 0.010485759999999998 + - 0.11744051199999998 + startTimeUnixNano: "1000000" + sum: 0.00031872000000000004 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: go_sched_pauses_stopping_gc_seconds + - description: Distribution of individual GC-related stop-the-world pause latencies. This is the time from deciding to stop the world until the world is started again. Some of this time is spent getting all threads to stop (this is measured directly in /sched/pauses/stopping/gc:seconds), during which some threads may still be running. Bucket counts increase monotonically. + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "0" + - "0" + - "4" + - "15" + - "5" + - "0" + - "0" + - "0" + count: "24" + explicitBounds: + - 6.399999999999999e-08 + - 6.399999999999999e-07 + - 7.167999999999999e-06 + - 8.191999999999999e-05 + - 0.0009175039999999999 + - 0.010485759999999998 + - 0.11744051199999998 + startTimeUnixNano: "1000000" + sum: 0.00051968 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: go_sched_pauses_total_gc_seconds + - description: '[ALPHA] Authorization duration in seconds broken out by result.' + histogram: + aggregationTemporality: 2 + dataPoints: + - attributes: + - key: result + value: + stringValue: allowed + bucketCounts: + - "15" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "15" + explicitBounds: + - 0.001 + - 0.002 + - 0.004 + - 0.008 + - 0.016 + - 0.032 + - 0.064 + - 0.128 + - 0.256 + - 0.512 + - 1.024 + - 2.048 + - 4.096 + - 8.192 + - 16.384 + startTimeUnixNano: "1000000" + sum: 5.9977e-05 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: authorization_duration_seconds + - description: Deprecated. Prefer the identical /sched/pauses/total/gc:seconds. + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "0" + - "0" + - "4" + - "15" + - "5" + - "0" + - "0" + - "0" + count: "24" + explicitBounds: + - 6.399999999999999e-08 + - 6.399999999999999e-07 + - 7.167999999999999e-06 + - 8.191999999999999e-05 + - 0.0009175039999999999 + - 0.010485759999999998 + - 0.11744051199999998 + startTimeUnixNano: "1000000" + sum: 0.00051968 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: go_gc_pauses_seconds + - description: '[ALPHA] Number of namespace syncs happened in root ca cert publisher.' + histogram: + aggregationTemporality: 2 + dataPoints: + - attributes: + - key: code + value: + stringValue: "200" + bucketCounts: + - "0" + - "4" + - "1" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "1" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "6" + explicitBounds: + - 0.001 + - 0.002 + - 0.004 + - 0.008 + - 0.016 + - 0.032 + - 0.064 + - 0.128 + - 0.256 + - 0.512 + - 1.024 + - 2.048 + - 4.096 + - 8.192 + - 16.384 + startTimeUnixNano: "1000000" + sum: 0.719279898 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: root_ca_cert_publisher_sync_duration_seconds + scope: + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver + version: v0.110.0 diff --git a/functional_tests/testdata_histogram/expected/v1.31/coredns_metrics.yaml b/functional_tests/testdata_histogram/expected/v1.31/coredns_metrics.yaml new file mode 100644 index 0000000000..0ddbe661c1 --- /dev/null +++ b/functional_tests/testdata_histogram/expected/v1.31/coredns_metrics.yaml @@ -0,0 +1,440 @@ +resourceMetrics: + - resource: + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: coredns-7db6d8ff4d-2ztxm + - key: k8s.pod.uid + value: + stringValue: 14dcef47-a7c0-428a-99ff-2b3504322c2a + - key: net.host.name + value: + stringValue: 10.244.0.3 + - key: net.host.port + value: + stringValue: "9153" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.3 + - key: server.port + value: + stringValue: "9153" + - key: service.instance.id + value: + stringValue: 10.244.0.3:9153 + - key: service.name + value: + stringValue: coredns + - key: url.scheme + value: + stringValue: http + schemaUrl: https://opentelemetry.io/schemas/1.6.1 + scopeMetrics: + - metrics: + - description: Size of the returned response in bytes. + histogram: + aggregationTemporality: 2 + dataPoints: + - attributes: + - key: proto + value: + stringValue: udp + - key: server + value: + stringValue: dns://:53 + - key: zone + value: + stringValue: . + bucketCounts: + - "0" + - "0" + - "14" + - "3" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "17" + explicitBounds: + - 0 + - 100 + - 200 + - 300 + - 400 + - 511 + - 1023 + - 2047 + - 4095 + - 8291 + - 16000 + - 32000 + - 48000 + - 64000 + startTimeUnixNano: "1000000" + sum: 2723 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: coredns_dns_response_size_bytes + - description: Histogram of the time each request took. + histogram: + aggregationTemporality: 2 + dataPoints: + - attributes: + - key: proxy_name + value: + stringValue: forward + - key: rcode + value: + stringValue: NOERROR + - key: to + value: + stringValue: 172.18.0.1:53 + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "1" + - "1" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "2" + explicitBounds: + - 0.00025 + - 0.0005 + - 0.001 + - 0.002 + - 0.004 + - 0.008 + - 0.016 + - 0.032 + - 0.064 + - 0.128 + - 0.256 + - 0.512 + - 1.024 + - 2.048 + - 4.096 + - 8.192 + startTimeUnixNano: "1000000" + sum: 0.015369563999999999 + timeUnixNano: "1000000" + - attributes: + - key: proxy_name + value: + stringValue: forward + - key: rcode + value: + stringValue: NXDOMAIN + - key: to + value: + stringValue: 172.18.0.1:53 + bucketCounts: + - "0" + - "0" + - "0" + - "0" + - "0" + - "2" + - "1" + - "0" + - "1" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "4" + explicitBounds: + - 0.00025 + - 0.0005 + - 0.001 + - 0.002 + - 0.004 + - 0.008 + - 0.016 + - 0.032 + - 0.064 + - 0.128 + - 0.256 + - 0.512 + - 1.024 + - 2.048 + - 4.096 + - 8.192 + startTimeUnixNano: "1000000" + sum: 0.057460335 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: coredns_proxy_request_duration_seconds + - description: Client side rate limiter latency in seconds. Broken down by verb and host. + histogram: + aggregationTemporality: 2 + dataPoints: + - attributes: + - key: host + value: + stringValue: 10.96.0.1:443 + - key: verb + value: + stringValue: GET + bucketCounts: + - "3" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "3" + explicitBounds: + - 0.005 + - 0.01 + - 0.025 + - 0.05 + - 0.1 + - 0.25 + - 0.5 + - 1 + - 2.5 + - 5 + - 10 + startTimeUnixNano: "1000000" + sum: 3.3040000000000005e-06 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: coredns_kubernetes_rest_client_rate_limiter_duration_seconds + - description: Request latency in seconds. Broken down by verb and host. + histogram: + aggregationTemporality: 2 + dataPoints: + - attributes: + - key: host + value: + stringValue: 10.96.0.1:443 + - key: verb + value: + stringValue: GET + bucketCounts: + - "0" + - "3" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "3" + explicitBounds: + - 0.005 + - 0.01 + - 0.025 + - 0.05 + - 0.1 + - 0.25 + - 0.5 + - 1 + - 2.5 + - 5 + - 10 + startTimeUnixNano: "1000000" + sum: 0.015708676999999997 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: coredns_kubernetes_rest_client_request_duration_seconds + - description: Histogram of the time (in seconds) each request took. + histogram: + aggregationTemporality: 2 + dataPoints: + - bucketCounts: + - "0" + - "159" + - "0" + - "0" + - "0" + - "0" + count: "159" + explicitBounds: + - 0.00025 + - 0.0025 + - 0.025 + - 0.25 + - 2.5 + startTimeUnixNano: "1000000" + sum: 0.07593674800000003 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: coredns_health_request_duration_seconds + - description: Size of the EDNS0 UDP buffer in bytes (64K for TCP) per zone and protocol. + histogram: + aggregationTemporality: 2 + dataPoints: + - attributes: + - key: proto + value: + stringValue: udp + - key: server + value: + stringValue: dns://:53 + - key: zone + value: + stringValue: . + bucketCounts: + - "0" + - "14" + - "3" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "17" + explicitBounds: + - 0 + - 100 + - 200 + - 300 + - 400 + - 511 + - 1023 + - 2047 + - 4095 + - 8291 + - 16000 + - 32000 + - 48000 + - 64000 + startTimeUnixNano: "1000000" + sum: 1279 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: coredns_dns_request_size_bytes + - description: Histogram of the time (in seconds) each request took per zone. + histogram: + aggregationTemporality: 2 + dataPoints: + - attributes: + - key: server + value: + stringValue: dns://:53 + - key: zone + value: + stringValue: . + bucketCounts: + - "10" + - "1" + - "0" + - "0" + - "0" + - "3" + - "2" + - "0" + - "1" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + - "0" + count: "17" + explicitBounds: + - 0.00025 + - 0.0005 + - 0.001 + - 0.002 + - 0.004 + - 0.008 + - 0.016 + - 0.032 + - 0.064 + - 0.128 + - 0.256 + - 0.512 + - 1.024 + - 2.048 + - 4.096 + - 8.192 + startTimeUnixNano: "1000000" + sum: 0.07464508700000001 + timeUnixNano: "1000000" + metadata: + - key: prometheus.type + value: + stringValue: histogram + name: coredns_dns_request_duration_seconds + scope: + name: github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver + version: v0.110.0 diff --git a/functional_tests/testdata_histogram/expected/v1.31/etcd_metrics.yaml b/functional_tests/testdata_histogram/expected/v1.31/etcd_metrics.yaml new file mode 100644 index 0000000000..285761db5c --- /dev/null +++ b/functional_tests/testdata_histogram/expected/v1.31/etcd_metrics.yaml @@ -0,0 +1,57160 @@ +resourceMetrics: + - resource: {} + scopeMetrics: + - metrics: + - gauge: + dataPoints: + - asDouble: 6.6183168e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: process_resident_memory_bytes + - gauge: + dataPoints: + - asDouble: 1.1492114432e+10 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: process_virtual_memory_bytes + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_mvcc_db_open_read_transactions + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: server_go_version + value: + stringValue: go1.19.9 + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_server_go_version + - name: etcd_debugging_store_writes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: action + value: + stringValue: create + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 2 + attributes: + - key: action + value: + stringValue: set + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_server_is_leader + - name: etcd_server_slow_read_indexes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 51433 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_debugging_mvcc_compact_revision + - gauge: + dataPoints: + - asDouble: 49 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_debugging_mvcc_watch_stream_total + - name: etcd_debugging_store_reads_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: action + value: + stringValue: getRecursive + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: etcd_server_health_success + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 3970 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 2.6043808e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_next_gc_bytes + - gauge: + dataPoints: + - asDouble: 1.5966208e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_heap_released_bytes + - gauge: + dataPoints: + - asDouble: 1.048576e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: os_fd_limit + - name: etcd_debugging_mvcc_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 47859 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: etcd_mvcc_txn_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 4 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + - key: version + value: + stringValue: go1.19.9 + timeUnixNano: "1000000" + name: go_info + - name: go_memstats_frees_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 6.1741687e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: promhttp_metric_handler_requests_in_flight + - name: etcd_debugging_store_expires_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.49504e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_mvcc_db_total_size_in_use_in_bytes + - name: etcd_server_learner_promote_successes + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_memstats_alloc_bytes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1.1077539272e+10 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.048576e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: process_max_fds + - name: etcd_debugging_store_watch_requests_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_server_has_leader + - gauge: + dataPoints: + - asDouble: 376848 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_mspan_inuse_bytes + - gauge: + dataPoints: + - asDouble: 6.065076e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_sys_bytes + - name: etcd_debugging_mvcc_db_compaction_keys_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 51198 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 4.5645824e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_heap_sys_bytes + - gauge: + dataPoints: + - asDouble: 5.96352e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_gc_sys_bytes + - gauge: + dataPoints: + - asDouble: 4.685824e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_stack_inuse_bytes + - gauge: + dataPoints: + - asDouble: 1.8446744073709552e+19 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: process_virtual_memory_max_bytes + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_debugging_mvcc_pending_events_total + - name: etcd_network_client_grpc_sent_bytes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1.1463121e+08 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: server_id + value: + stringValue: e58c878e0e01014 + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_server_id + - gauge: + dataPoints: + - asDouble: 2.2102016e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_heap_idle_bytes + - gauge: + dataPoints: + - asDouble: 17 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_threads + - name: etcd_debugging_lease_granted_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 3978 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 52010 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_debugging_mvcc_current_revision + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_grpc_proxy_cache_misses_total + - name: go_memstats_mallocs_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 6.1815291e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: etcd_debugging_server_lease_expired_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 3974 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 7.94664e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_disk_wal_write_bytes_total + - gauge: + dataPoints: + - asDouble: 73604 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_heap_objects + - gauge: + dataPoints: + - asDouble: 15600 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_mcache_sys_bytes + - name: grpc_server_msg_received_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Alarm + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: AuthDisable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: AuthEnable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: AuthStatus + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Authenticate + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Check + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 131 + attributes: + - key: grpc_method + value: + stringValue: Compact + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Defragment + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: DeleteRange + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Downgrade + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Hash + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: HashKV + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 3978 + attributes: + - key: grpc_method + value: + stringValue: LeaseGrant + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: LeaseKeepAlive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: LeaseLeases + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: LeaseRevoke + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: LeaseTimeToLive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: MemberAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: MemberList + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: MemberPromote + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: MemberRemove + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: MemberUpdate + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: MoveLeader + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Put + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 132944 + attributes: + - key: grpc_method + value: + stringValue: Range + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: RoleAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: RoleDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: RoleGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: RoleGrantPermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: RoleList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: RoleRevokePermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Snapshot + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1061 + attributes: + - key: grpc_method + value: + stringValue: Status + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 52011 + attributes: + - key: grpc_method + value: + stringValue: Txn + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: UserAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: UserChangePassword + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: UserDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: UserGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: UserGrantRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: UserList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: UserRevokeRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 50 + attributes: + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: etcdserverpb.Watch + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: etcd_network_client_grpc_received_bytes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 3.7848027e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: process_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 910.93 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 78 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: process_open_fds + - name: etcd_mvcc_range_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 236590 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.7241840567195532e+09 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_last_gc_time_seconds + - name: go_memstats_lookups_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 295 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_debugging_mvcc_keys_total + - gauge: + dataPoints: + - asDouble: 77 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: os_fd_used + - gauge: + dataPoints: + - asDouble: 2.8999938690654708e-05 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_gc_cpu_fraction + - gauge: + dataPoints: + - asDouble: 12000 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_mcache_inuse_bytes + - name: grpc_server_handled_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: Alarm + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: AuthDisable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: AuthEnable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: AuthStatus + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: Authenticate + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: Check + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: Compact + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: Defragment + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: DeleteRange + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: Downgrade + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: Hash + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: HashKV + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: LeaseGrant + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: LeaseKeepAlive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: LeaseLeases + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: LeaseRevoke + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: LeaseTimeToLive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: MemberAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: MemberList + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: MemberPromote + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: MemberRemove + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: MemberUpdate + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: MoveLeader + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: Put + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: Range + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: RoleAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: RoleDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: RoleGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: RoleGrantPermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: RoleList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: RoleRevokePermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: Snapshot + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: Status + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: Txn + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: UserAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: UserChangePassword + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: UserDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: UserGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: UserGrantRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: UserList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: UserRevokeRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: etcdserverpb.Watch + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Aborted + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: Alarm + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: AuthDisable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: AuthEnable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: AuthStatus + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: Authenticate + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: Check + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: Compact + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: Defragment + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: DeleteRange + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: Downgrade + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: Hash + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: HashKV + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: LeaseGrant + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: LeaseKeepAlive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: LeaseLeases + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: LeaseRevoke + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: LeaseTimeToLive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: MemberAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: MemberList + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: MemberPromote + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: MemberRemove + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: MemberUpdate + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: MoveLeader + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: Put + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: Range + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: RoleAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: RoleDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: RoleGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: RoleGrantPermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: RoleList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: RoleRevokePermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: Snapshot + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: Status + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: Txn + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: UserAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: UserChangePassword + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: UserDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: UserGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: UserGrantRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: UserList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: UserRevokeRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: etcdserverpb.Watch + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: AlreadyExists + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: Alarm + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: AuthDisable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: AuthEnable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: AuthStatus + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: Authenticate + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: Check + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: Compact + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: Defragment + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: DeleteRange + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: Downgrade + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: Hash + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: HashKV + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: LeaseGrant + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: LeaseKeepAlive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: LeaseLeases + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: LeaseRevoke + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: LeaseTimeToLive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: MemberAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: MemberList + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: MemberPromote + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: MemberRemove + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: MemberUpdate + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: MoveLeader + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: Put + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: Range + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: RoleAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: RoleDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: RoleGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: RoleGrantPermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: RoleList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: RoleRevokePermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: Snapshot + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: Status + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: Txn + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: UserAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: UserChangePassword + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: UserDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: UserGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: UserGrantRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: UserList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: UserRevokeRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: etcdserverpb.Watch + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Canceled + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: Alarm + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: AuthDisable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: AuthEnable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: AuthStatus + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: Authenticate + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: Check + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: Compact + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: Defragment + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: DeleteRange + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: Downgrade + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: Hash + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: HashKV + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: LeaseGrant + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: LeaseKeepAlive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: LeaseLeases + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: LeaseRevoke + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: LeaseTimeToLive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: MemberAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: MemberList + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: MemberPromote + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: MemberRemove + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: MemberUpdate + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: MoveLeader + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: Put + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: Range + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: RoleAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: RoleDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: RoleGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: RoleGrantPermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: RoleList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: RoleRevokePermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: Snapshot + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: Status + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: Txn + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: UserAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: UserChangePassword + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: UserDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: UserGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: UserGrantRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: UserList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: UserRevokeRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: etcdserverpb.Watch + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DataLoss + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: Alarm + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: AuthDisable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: AuthEnable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: AuthStatus + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: Authenticate + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: Check + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: Compact + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: Defragment + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: DeleteRange + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: Downgrade + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: Hash + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: HashKV + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: LeaseGrant + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: LeaseKeepAlive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: LeaseLeases + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: LeaseRevoke + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: LeaseTimeToLive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: MemberAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: MemberList + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: MemberPromote + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: MemberRemove + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: MemberUpdate + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: MoveLeader + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: Put + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: Range + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: RoleAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: RoleDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: RoleGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: RoleGrantPermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: RoleList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: RoleRevokePermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: Snapshot + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: Status + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: Txn + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: UserAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: UserChangePassword + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: UserDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: UserGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: UserGrantRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: UserList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: UserRevokeRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: etcdserverpb.Watch + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: DeadlineExceeded + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: Alarm + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: AuthDisable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: AuthEnable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: AuthStatus + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: Authenticate + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: Check + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: Compact + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: Defragment + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: DeleteRange + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: Downgrade + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: Hash + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: HashKV + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: LeaseGrant + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: LeaseKeepAlive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: LeaseLeases + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: LeaseRevoke + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: LeaseTimeToLive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: MemberAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: MemberList + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: MemberPromote + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: MemberRemove + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: MemberUpdate + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: MoveLeader + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: Put + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: Range + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: RoleAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: RoleDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: RoleGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: RoleGrantPermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: RoleList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: RoleRevokePermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: Snapshot + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: Status + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: Txn + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: UserAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: UserChangePassword + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: UserDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: UserGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: UserGrantRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: UserList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: UserRevokeRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: etcdserverpb.Watch + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: FailedPrecondition + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: Alarm + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: AuthDisable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: AuthEnable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: AuthStatus + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: Authenticate + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: Check + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: Compact + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: Defragment + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: DeleteRange + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: Downgrade + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: Hash + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: HashKV + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: LeaseGrant + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: LeaseKeepAlive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: LeaseLeases + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: LeaseRevoke + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: LeaseTimeToLive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: MemberAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: MemberList + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: MemberPromote + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: MemberRemove + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: MemberUpdate + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: MoveLeader + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: Put + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: Range + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: RoleAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: RoleDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: RoleGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: RoleGrantPermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: RoleList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: RoleRevokePermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: Snapshot + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: Status + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: Txn + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: UserAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: UserChangePassword + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: UserDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: UserGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: UserGrantRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: UserList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: UserRevokeRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: etcdserverpb.Watch + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Internal + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: Alarm + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: AuthDisable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: AuthEnable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: AuthStatus + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: Authenticate + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: Check + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: Compact + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: Defragment + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: DeleteRange + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: Downgrade + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: Hash + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: HashKV + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: LeaseGrant + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: LeaseKeepAlive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: LeaseLeases + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: LeaseRevoke + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: LeaseTimeToLive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: MemberAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: MemberList + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: MemberPromote + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: MemberRemove + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: MemberUpdate + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: MoveLeader + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: Put + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: Range + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: RoleAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: RoleDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: RoleGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: RoleGrantPermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: RoleList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: RoleRevokePermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: Snapshot + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: Status + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: Txn + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: UserAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: UserChangePassword + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: UserDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: UserGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: UserGrantRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: UserList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: UserRevokeRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: etcdserverpb.Watch + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: InvalidArgument + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: Alarm + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: AuthDisable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: AuthEnable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: AuthStatus + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: Authenticate + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: Check + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: Compact + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: Defragment + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: DeleteRange + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: Downgrade + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: Hash + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: HashKV + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: LeaseGrant + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: LeaseKeepAlive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: LeaseLeases + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: LeaseRevoke + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: LeaseTimeToLive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: MemberAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: MemberList + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: MemberPromote + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: MemberRemove + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: MemberUpdate + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: MoveLeader + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: Put + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: Range + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: RoleAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: RoleDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: RoleGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: RoleGrantPermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: RoleList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: RoleRevokePermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: Snapshot + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: Status + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: Txn + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: UserAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: UserChangePassword + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: UserDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: UserGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: UserGrantRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: UserList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: UserRevokeRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: etcdserverpb.Watch + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: NotFound + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: Alarm + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: AuthDisable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: AuthEnable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: AuthStatus + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: Authenticate + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: Check + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 131 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: Compact + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: Defragment + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: DeleteRange + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: Downgrade + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: Hash + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: HashKV + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 3978 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: LeaseGrant + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: LeaseKeepAlive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: LeaseLeases + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: LeaseRevoke + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: LeaseTimeToLive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: MemberAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: MemberList + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: MemberPromote + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: MemberRemove + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: MemberUpdate + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: MoveLeader + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: Put + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 132944 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: Range + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: RoleAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: RoleDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: RoleGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: RoleGrantPermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: RoleList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: RoleRevokePermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: Snapshot + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1061 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: Status + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 52011 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: Txn + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: UserAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: UserChangePassword + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: UserDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: UserGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: UserGrantRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: UserList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: UserRevokeRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: etcdserverpb.Watch + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: Alarm + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: AuthDisable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: AuthEnable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: AuthStatus + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: Authenticate + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: Check + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: Compact + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: Defragment + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: DeleteRange + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: Downgrade + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: Hash + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: HashKV + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: LeaseGrant + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: LeaseKeepAlive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: LeaseLeases + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: LeaseRevoke + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: LeaseTimeToLive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: MemberAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: MemberList + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: MemberPromote + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: MemberRemove + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: MemberUpdate + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: MoveLeader + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: Put + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: Range + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: RoleAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: RoleDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: RoleGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: RoleGrantPermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: RoleList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: RoleRevokePermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: Snapshot + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: Status + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: Txn + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: UserAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: UserChangePassword + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: UserDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: UserGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: UserGrantRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: UserList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: UserRevokeRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: etcdserverpb.Watch + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: OutOfRange + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: Alarm + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: AuthDisable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: AuthEnable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: AuthStatus + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: Authenticate + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: Check + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: Compact + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: Defragment + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: DeleteRange + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: Downgrade + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: Hash + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: HashKV + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: LeaseGrant + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: LeaseKeepAlive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: LeaseLeases + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: LeaseRevoke + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: LeaseTimeToLive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: MemberAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: MemberList + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: MemberPromote + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: MemberRemove + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: MemberUpdate + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: MoveLeader + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: Put + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: Range + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: RoleAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: RoleDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: RoleGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: RoleGrantPermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: RoleList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: RoleRevokePermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: Snapshot + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: Status + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: Txn + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: UserAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: UserChangePassword + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: UserDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: UserGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: UserGrantRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: UserList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: UserRevokeRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: etcdserverpb.Watch + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: PermissionDenied + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: Alarm + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: AuthDisable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: AuthEnable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: AuthStatus + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: Authenticate + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: Check + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: Compact + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: Defragment + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: DeleteRange + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: Downgrade + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: Hash + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: HashKV + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: LeaseGrant + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: LeaseKeepAlive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: LeaseLeases + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: LeaseRevoke + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: LeaseTimeToLive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: MemberAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: MemberList + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: MemberPromote + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: MemberRemove + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: MemberUpdate + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: MoveLeader + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: Put + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: Range + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: RoleAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: RoleDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: RoleGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: RoleGrantPermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: RoleList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: RoleRevokePermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: Snapshot + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: Status + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: Txn + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: UserAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: UserChangePassword + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: UserDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: UserGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: UserGrantRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: UserList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: UserRevokeRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: etcdserverpb.Watch + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: ResourceExhausted + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: Alarm + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: AuthDisable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: AuthEnable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: AuthStatus + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: Authenticate + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: Check + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: Compact + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: Defragment + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: DeleteRange + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: Downgrade + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: Hash + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: HashKV + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: LeaseGrant + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: LeaseKeepAlive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: LeaseLeases + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: LeaseRevoke + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: LeaseTimeToLive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: MemberAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: MemberList + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: MemberPromote + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: MemberRemove + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: MemberUpdate + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: MoveLeader + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: Put + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: Range + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: RoleAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: RoleDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: RoleGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: RoleGrantPermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: RoleList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: RoleRevokePermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: Snapshot + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: Status + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: Txn + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: UserAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: UserChangePassword + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: UserDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: UserGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: UserGrantRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: UserList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: UserRevokeRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: etcdserverpb.Watch + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unauthenticated + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: Alarm + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: AuthDisable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: AuthEnable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: AuthStatus + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: Authenticate + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: Check + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: Compact + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: Defragment + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: DeleteRange + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: Downgrade + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: Hash + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: HashKV + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: LeaseGrant + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: LeaseKeepAlive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: LeaseLeases + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: LeaseRevoke + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: LeaseTimeToLive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: MemberAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: MemberList + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: MemberPromote + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: MemberRemove + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: MemberUpdate + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: MoveLeader + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: Put + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: Range + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: RoleAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: RoleDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: RoleGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: RoleGrantPermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: RoleList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: RoleRevokePermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: Snapshot + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: Status + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: Txn + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: UserAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: UserChangePassword + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: UserDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: UserGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: UserGrantRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: UserList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: UserRevokeRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: etcdserverpb.Watch + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unavailable + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: Alarm + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: AuthDisable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: AuthEnable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: AuthStatus + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: Authenticate + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: Check + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: Compact + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: Defragment + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: DeleteRange + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: Downgrade + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: Hash + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: HashKV + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: LeaseGrant + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: LeaseKeepAlive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: LeaseLeases + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: LeaseRevoke + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: LeaseTimeToLive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: MemberAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: MemberList + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: MemberPromote + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: MemberRemove + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: MemberUpdate + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: MoveLeader + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: Put + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: Range + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: RoleAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: RoleDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: RoleGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: RoleGrantPermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: RoleList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: RoleRevokePermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: Snapshot + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: Status + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: Txn + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: UserAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: UserChangePassword + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: UserDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: UserGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: UserGrantRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: UserList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: UserRevokeRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: etcdserverpb.Watch + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unimplemented + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: Alarm + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: AuthDisable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: AuthEnable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: AuthStatus + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: Authenticate + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: Check + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: Compact + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: Defragment + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: DeleteRange + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: Downgrade + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: Hash + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: HashKV + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: LeaseGrant + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: LeaseKeepAlive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: LeaseLeases + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: LeaseRevoke + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: LeaseTimeToLive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: MemberAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: MemberList + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: MemberPromote + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: MemberRemove + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: MemberUpdate + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: MoveLeader + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: Put + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: Range + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: RoleAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: RoleDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: RoleGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: RoleGrantPermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: RoleList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: RoleRevokePermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: Snapshot + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: Status + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: Txn + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: UserAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: UserChangePassword + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: UserDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: UserGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: UserGrantRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: UserList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: UserRevokeRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: etcdserverpb.Watch + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_code + value: + stringValue: Unknown + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 60098 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_server_proposals_applied_total + - gauge: + dataPoints: + - asDouble: 2.147483648e+09 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_server_quota_backend_bytes + - gauge: + dataPoints: + - asDouble: 1.7193152e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_alloc_bytes + - gauge: + dataPoints: + - asDouble: 4.685824e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_stack_sys_bytes + - gauge: + dataPoints: + - asDouble: 1.72414436362e+09 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: process_start_time_seconds + - name: etcd_server_client_requests_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 50 + attributes: + - key: client_api_version + value: + stringValue: unknown + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: type + value: + stringValue: stream + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 190125 + attributes: + - key: client_api_version + value: + stringValue: unknown + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: type + value: + stringValue: unary + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 2.3543808e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_heap_inuse_bytes + - name: etcd_debugging_lease_revoked_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 3974 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.724183966e+09 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_debugging_mvcc_db_compaction_last + - name: grpc_server_started_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Alarm + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: AuthDisable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: AuthEnable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: AuthStatus + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Authenticate + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Check + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 131 + attributes: + - key: grpc_method + value: + stringValue: Compact + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Defragment + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: DeleteRange + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Downgrade + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Hash + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: HashKV + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 3978 + attributes: + - key: grpc_method + value: + stringValue: LeaseGrant + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: LeaseKeepAlive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: LeaseLeases + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: LeaseRevoke + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: LeaseTimeToLive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: MemberAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: MemberList + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: MemberPromote + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: MemberRemove + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: MemberUpdate + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: MoveLeader + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Put + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 132944 + attributes: + - key: grpc_method + value: + stringValue: Range + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: RoleAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: RoleDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: RoleGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: RoleGrantPermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: RoleList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: RoleRevokePermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Snapshot + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1061 + attributes: + - key: grpc_method + value: + stringValue: Status + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 52011 + attributes: + - key: grpc_method + value: + stringValue: Txn + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: UserAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: UserChangePassword + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: UserDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: UserGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: UserGrantRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: UserList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: UserRevokeRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 50 + attributes: + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: etcdserverpb.Watch + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: up + - gauge: + dataPoints: + - asDouble: 1399 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: scrape_samples_post_metric_relabeling + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: cluster_version + value: + stringValue: "3.5" + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_cluster_version + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_debugging_auth_revision + - name: etcd_debugging_lease_renewed_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: etcd_server_heartbeat_send_failures_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 60098 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_server_proposals_committed_total + - gauge: + dataPoints: + - asDouble: 553248 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_mspan_sys_bytes + - gauge: + dataPoints: + - asDouble: 2.6372491e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_debugging_mvcc_total_put_size_in_bytes + - name: etcd_server_health_failures + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: etcd_server_read_indexes_failed_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: server_version + value: + stringValue: 3.5.9 + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_server_version + - gauge: + dataPoints: + - asDouble: 461 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_goroutines + - name: etcd_grpc_proxy_events_coalescing_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_server_is_learner + - gauge: + dataPoints: + - asDouble: 1399 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: scrape_samples_scraped + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_disk_defrag_inflight + - name: etcd_server_leader_changes_seen_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: grpc_server_msg_sent_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Alarm + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: AuthDisable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: AuthEnable + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: AuthStatus + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Authenticate + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Check + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 131 + attributes: + - key: grpc_method + value: + stringValue: Compact + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Defragment + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: DeleteRange + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Downgrade + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Hash + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: HashKV + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 3978 + attributes: + - key: grpc_method + value: + stringValue: LeaseGrant + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: LeaseKeepAlive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: LeaseLeases + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: LeaseRevoke + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: LeaseTimeToLive + - key: grpc_service + value: + stringValue: etcdserverpb.Lease + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: MemberAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: MemberList + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: MemberPromote + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: MemberRemove + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: MemberUpdate + - key: grpc_service + value: + stringValue: etcdserverpb.Cluster + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: MoveLeader + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Put + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 132944 + attributes: + - key: grpc_method + value: + stringValue: Range + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: RoleAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: RoleDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: RoleGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: RoleGrantPermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: RoleList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: RoleRevokePermission + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Snapshot + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1061 + attributes: + - key: grpc_method + value: + stringValue: Status + - key: grpc_service + value: + stringValue: etcdserverpb.Maintenance + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 52011 + attributes: + - key: grpc_method + value: + stringValue: Txn + - key: grpc_service + value: + stringValue: etcdserverpb.KV + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: UserAdd + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: UserChangePassword + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: UserDelete + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: UserGet + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: UserGrantRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: UserList + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: UserRevokeRole + - key: grpc_service + value: + stringValue: etcdserverpb.Auth + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 413118 + attributes: + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: etcdserverpb.Watch + - key: grpc_type + value: + stringValue: bidi_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: grpc_method + value: + stringValue: Watch + - key: grpc_service + value: + stringValue: grpc.health.v1.Health + - key: grpc_type + value: + stringValue: server_stream + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_server_proposals_pending + - gauge: + dataPoints: + - asDouble: 2.032409e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_other_sys_bytes + - gauge: + dataPoints: + - asDouble: 49 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_debugging_mvcc_watcher_total + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_debugging_store_watchers + - name: etcd_server_slow_apply_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 13 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_grpc_proxy_cache_hits_total + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_server_snapshot_apply_in_progress_total + - name: go_gc_duration_seconds_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "847" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_duration_seconds_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.492143008 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 3.1333e-05 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0" + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0.0002725 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0.25" + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0.000635583 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0.5" + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0.001081875 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0.75" + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0.005010875 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "1" + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_gc_duration_seconds_quantile + - gauge: + dataPoints: + - asDouble: 1.754335e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_buck_hash_sys_bytes + - name: promhttp_metric_handler_requests_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 3 + attributes: + - key: code + value: + stringValue: "200" + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: code + value: + stringValue: "500" + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: code + value: + stringValue: "503" + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1399 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: scrape_series_added + - name: etcd_server_proposals_failed_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_debugging_mvcc_slow_watcher_total + - name: etcd_mvcc_delete_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 80 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0.015158916 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: scrape_duration_seconds + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_grpc_proxy_watchers_coalescing_total + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_grpc_proxy_cache_keys_total + - gauge: + dataPoints: + - asDouble: 2.527232e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: etcd_mvcc_db_total_size_in_bytes + - name: etcd_mvcc_put_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 51982 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: etcd_debugging_mvcc_range_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 236590 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.7193152e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - 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: ab365406-a5f6-44e3-8187-2bc40d50ff63 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "2381" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "2381" + - key: service.instance.id + value: + stringValue: 172.18.0.2:2381 + - key: service.name + value: + stringValue: etcd + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_heap_alloc_bytes + scope: {} diff --git a/functional_tests/testdata_histogram/expected/v1.31/proxy_metrics.yaml b/functional_tests/testdata_histogram/expected/v1.31/proxy_metrics.yaml new file mode 100644 index 0000000000..39533f9033 --- /dev/null +++ b/functional_tests/testdata_histogram/expected/v1.31/proxy_metrics.yaml @@ -0,0 +1,16891 @@ +resourceMetrics: + - resource: {} + scopeMetrics: + - metrics: + - name: go_godebug_non_default_behavior_multipartmaxparts_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 10800 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memory_classes_metadata_mcache_free_bytes + - name: go_gc_cycles_forced_gc_cycles_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 4800 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_mcache_inuse_bytes + - gauge: + dataPoints: + - asDouble: 4 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_sched_gomaxprocs_threads + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: kubeproxy_sync_proxy_rules_service_changes_pending + - name: go_cgo_go_to_c_calls_calls_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_memstats_frees_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 63889 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 29029 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_heap_objects + - gauge: + dataPoints: + - asDouble: 15600 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_mcache_sys_bytes + - gauge: + dataPoints: + - asDouble: 1.048576e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_stack_inuse_bytes + - name: go_godebug_non_default_behavior_installgoroot_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 4.815472e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_gc_scan_heap_bytes + - gauge: + dataPoints: + - asDouble: 7.136736e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_alloc_bytes + - gauge: + dataPoints: + - asDouble: 516096 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_heap_released_bytes + - gauge: + dataPoints: + - asDouble: 1.7242813594705262e+09 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_last_gc_time_seconds + - gauge: + dataPoints: + - asDouble: 29029 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_gc_heap_objects_objects + - gauge: + dataPoints: + - asDouble: 4 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: table + value: + stringValue: filter + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 44 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: table + value: + stringValue: nat + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: kubeproxy_sync_proxy_rules_iptables_total + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: traffic_policy + value: + stringValue: external + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: traffic_policy + value: + stringValue: internal + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: kubeproxy_sync_proxy_rules_no_local_endpoints_total + - gauge: + dataPoints: + - asDouble: 51 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_sched_goroutines_goroutines + - name: go_godebug_non_default_behavior_tlsrsakex_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 516096 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memory_classes_heap_released_bytes + - gauge: + dataPoints: + - asDouble: 1.459041e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memory_classes_profiling_buckets_bytes + - gauge: + dataPoints: + - asDouble: 1.72428123884e+09 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: process_start_time_seconds + - gauge: + dataPoints: + - asDouble: 752000 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_gc_scan_globals_bytes + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: kubeproxy_sync_proxy_rules_endpoint_changes_pending + - gauge: + dataPoints: + - asDouble: 704 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: scrape_samples_scraped + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_gc_limiter_last_enabled_gc_cycle + - gauge: + dataPoints: + - asDouble: 5.6672256e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: process_resident_memory_bytes + - name: go_godebug_non_default_behavior_tarinsecurepath_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 3.55616e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_gc_sys_bytes + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: up + - name: go_godebug_non_default_behavior_gotypesalias_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_gocachetest_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.048576e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memory_classes_heap_stacks_bytes + - gauge: + dataPoints: + - asDouble: 1.7242812551474903e+09 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: kubeproxy_sync_proxy_rules_last_timestamp_seconds + - gauge: + dataPoints: + - asDouble: 1.048576e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: process_max_fds + - name: rest_client_transport_create_calls_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: result + value: + stringValue: miss + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_cpu_classes_scavenge_assist_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1.9e-07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 6.114152e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_gc_heap_live_bytes + - name: go_godebug_non_default_behavior_gocacheverify_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_httpmuxgo121_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_x509sha1_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_zipinsecurepath_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.459041e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_buck_hash_sys_bytes + - name: go_memstats_lookups_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_cpu_classes_total_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 481.601499884 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: APIListChunking + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: APIPriorityAndFairness + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: AdmissionWebhookMatchConditions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: AggregatedDiscoveryEndpoint + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: CPUManager + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: CSINodeExpandSecret + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: CloudDualStackNodeIPs + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: ConsistentHTTPGetHandlers + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: CustomResourceValidationExpressions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: EfficientWatchResumption + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: ExecProbeTimeout + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: HPAContainerMetrics + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: JobReadyPods + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: KMSv2 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: KMSv2KDF + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: LegacyServiceAccountTokenCleanUp + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: MinDomainsInPodTopologySpread + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: NewVolumeManagerReconstruction + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: NodeOutOfServiceVolumeDetach + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: PodHostIPs + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: PodSchedulingReadiness + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: ReadWriteOncePod + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: RemainingItemCount + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: ServerSideApply + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: ServerSideFieldValidation + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: ServiceNodePortStaticSubrange + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: StableLoadBalancerNodeSet + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: ValidatingAdmissionPolicy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: WatchBookmark + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: ZeroLimitedNominalConcurrencyShares + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: APIResponseCompression + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: APIServerIdentity + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: APIServerTracing + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: APIServingWithRoutine + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: AllAlpha + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: AllBeta + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: AllowServiceLBStatusOnNonLB + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: DEPRECATED + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: AnyVolumeDataSource + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: AppArmor + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: AppArmorFields + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: CPUManagerPolicyAlphaOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: CPUManagerPolicyBetaOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: CPUManagerPolicyOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: CRDValidationRatcheting + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: CSIMigrationPortworx + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: CSIMigrationRBD + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: DEPRECATED + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: CSIVolumeHealth + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: CloudControllerManagerWebhook + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: ClusterTrustBundle + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: ClusterTrustBundleProjection + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: ComponentSLIs + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: ConsistentListFromCache + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: ContainerCheckpoint + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: ContextualLogging + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: CronJobsScheduledAnnotation + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: CrossNamespaceVolumeDataSource + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: CustomCPUCFSQuotaPeriod + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: CustomResourceFieldSelectors + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: DefaultHostNetworkHostPortsInPodTemplates + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: DEPRECATED + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: DevicePluginCDIDevices + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: DisableCloudProviders + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: DisableKubeletCloudCredentialProviders + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: DisableNodeKubeProxyVersion + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: DynamicResourceAllocation + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: ElasticIndexedJob + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: EventedPLEG + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: GracefulNodeShutdown + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: GracefulNodeShutdownBasedOnPodPriority + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: HPAScaleToZero + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: HonorPVReclaimPolicy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: ImageMaximumGCAge + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: InPlacePodVerticalScaling + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: InTreePluginAWSUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: InTreePluginAzureDiskUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: InTreePluginAzureFileUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: InTreePluginGCEUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: InTreePluginOpenStackUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: InTreePluginPortworxUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: InTreePluginRBDUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: DEPRECATED + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: InTreePluginvSphereUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: InformerResourceVersion + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: JobBackoffLimitPerIndex + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: JobManagedBy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: JobPodFailurePolicy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: JobPodReplacementPolicy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: JobSuccessPolicy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: KMSv1 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: DEPRECATED + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: KubeProxyDrainingTerminatingNodes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: KubeletCgroupDriverFromCRI + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: KubeletInUserNamespace + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: KubeletPodResourcesDynamicResources + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: KubeletPodResourcesGet + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: KubeletSeparateDiskGC + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: KubeletTracing + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: LoadBalancerIPMode + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: LocalStorageCapacityIsolationFSQuotaMonitoring + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: LogarithmicScaleDown + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: LoggingAlphaOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: LoggingBetaOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: MatchLabelKeysInPodAffinity + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: MatchLabelKeysInPodTopologySpread + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: MaxUnavailableStatefulSet + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: MemoryManager + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: MemoryQoS + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: MultiCIDRServiceAllocator + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: MutatingAdmissionPolicy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: NFTablesProxyMode + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: NodeInclusionPolicyInPodTopologySpread + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: NodeLogQuery + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: NodeSwap + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: OpenAPIEnums + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: PDBUnhealthyPodEvictionPolicy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: PersistentVolumeLastPhaseTransitionTime + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: PodAndContainerStatsFromCRI + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: PodDeletionCost + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: PodDisruptionConditions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: PodIndexLabel + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: PodLifecycleSleepAction + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: PodReadyToStartContainersCondition + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: PortForwardWebsockets + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: ProcMountType + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: QOSReserved + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: RecoverVolumeExpansionFailure + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: RecursiveReadOnlyMounts + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: RelaxedEnvironmentVariableValidation + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: RetryGenerateName + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: RotateKubeletServerCertificate + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: RuntimeClassInImageCriApi + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: SELinuxMount + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: SELinuxMountReadWriteOncePod + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: SchedulerQueueingHints + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: SeparateCacheWatchRPC + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: SeparateTaintEvictionController + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: ServiceAccountTokenJTI + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: ServiceAccountTokenNodeBinding + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: ServiceAccountTokenNodeBindingValidation + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: ServiceAccountTokenPodNodeInfo + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: ServiceTrafficDistribution + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: SidecarContainers + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: SizeMemoryBackedVolumes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: SkipReadOnlyValidationGCE + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: DEPRECATED + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: StatefulSetAutoDeletePVC + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: StatefulSetStartOrdinal + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: StorageNamespaceIndex + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: StorageVersionAPI + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: StorageVersionHash + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: StorageVersionMigrator + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: StructuredAuthenticationConfiguration + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: StructuredAuthorizationConfiguration + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: TopologyAwareHints + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: TopologyManagerPolicyAlphaOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: TopologyManagerPolicyBetaOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: TopologyManagerPolicyOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: TranslateStreamCloseWebsocketRequests + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: UnauthenticatedHTTP2DOSMitigation + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: UnknownVersionInteroperabilityProxy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: UserNamespacesPodSecurityStandards + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: UserNamespacesSupport + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: VolumeAttributesClass + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: VolumeCapacityPriority + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: WatchFromStorageWithoutResourceVersion + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: WatchList + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: WatchListClient + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: WinDSR + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: WinOverlay + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: name + value: + stringValue: WindowsHostNetwork + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: kubernetes_feature_enabled + - name: registered_metrics_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 87 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stability_level + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 4 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stability_level + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 5 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stability_level + value: + stringValue: STABLE + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 2 + attributes: + - key: deprecated_version + value: + stringValue: 1.30.0 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: stability_level + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 7 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_threads + - gauge: + dataPoints: + - asDouble: 6080 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memory_classes_metadata_mspan_free_bytes + - name: go_godebug_non_default_behavior_x509usepolicies_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 704 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: scrape_series_added + - name: go_cpu_classes_gc_mark_assist_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.001894801 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_cycles_total_gc_cycles_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 6 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 5.6806e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_gc_scan_total_bytes + - name: go_godebug_non_default_behavior_http2client_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 2.816544e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memory_classes_heap_unused_bytes + - gauge: + dataPoints: + - asDouble: 163200 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_mspan_sys_bytes + - gauge: + dataPoints: + - asDouble: 1.3093432e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_next_gc_bytes + - gauge: + dataPoints: + - asDouble: 4 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: table + value: + stringValue: filter + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 15 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: table + value: + stringValue: nat + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: kubeproxy_sync_proxy_rules_iptables_last + - name: go_cpu_classes_gc_pause_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.002930548 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_multipathtcp_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_randautoseed_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + - key: version + value: + stringValue: go1.22.2 + timeUnixNano: "1000000" + name: go_info + - gauge: + dataPoints: + - asDouble: 157120 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_mspan_inuse_bytes + - gauge: + dataPoints: + - asDouble: 1.8699528e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_sys_bytes + - gauge: + dataPoints: + - asDouble: Infinity + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: rest_client_exec_plugin_ttl_seconds + - name: go_cpu_classes_gc_mark_dedicated_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.013785014 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_cycles_automatic_gc_cycles_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 6 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 113128 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_gc_scan_stack_bytes + - name: go_godebug_non_default_behavior_tlsmaxrsasize_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 51 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_goroutines + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: build_date + value: + stringValue: "2024-05-13T22:00:36Z" + - key: compiler + value: + stringValue: gc + - key: git_commit + value: + stringValue: 7c48c2bd72b9bf5c44d21d7338cc7bea77d0ad2a + - key: git_tree_state + value: + stringValue: clean + - key: git_version + value: + stringValue: v1.30.0 + - key: go_version + value: + stringValue: go1.22.2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: major + value: + stringValue: "1" + - key: minor + value: + stringValue: "30" + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: platform + value: + stringValue: linux/amd64 + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: kubernetes_build_info + - name: go_cpu_classes_user_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.496051801 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: disabled_metrics_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 4096 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_gc_stack_starting_size_bytes + - name: go_memstats_alloc_bytes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1.5259672e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.7242812551218708e+09 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: kubeproxy_sync_proxy_rules_last_queued_timestamp_seconds + - name: apiserver_storage_envelope_transformation_cache_misses_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 4800 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memory_classes_metadata_mcache_inuse_bytes + - gauge: + dataPoints: + - asDouble: 955383 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memory_classes_other_bytes + - gauge: + dataPoints: + - asDouble: 1.8446744073709552e+19 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: process_virtual_memory_max_bytes + - gauge: + dataPoints: + - asDouble: 704 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: scrape_samples_post_metric_relabeling + - name: go_cpu_classes_scavenge_total_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 3.1e-07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: apiserver_webhooks_x509_missing_san_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_heap_allocs_objects_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 88021 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_heap_frees_bytes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 8.122936e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.3093432e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_gc_heap_goal_bytes + - gauge: + dataPoints: + - asDouble: 1.315336192e+09 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: process_virtual_memory_bytes + - name: apiserver_audit_event_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.1501568e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_heap_sys_bytes + - gauge: + dataPoints: + - asDouble: 157120 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memory_classes_metadata_mspan_inuse_bytes + - name: cardinality_enforcement_unexpected_categorizations_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_cpu_classes_gc_mark_idle_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.009429357 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_duration_seconds_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "6" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_duration_seconds_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.000730616 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 3.9184e-05 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0" + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 5.5123e-05 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0.25" + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 8.8665e-05 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0.5" + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0.000106797 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0.75" + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0.000368871 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "1" + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_gc_duration_seconds_quantile + - gauge: + dataPoints: + - asDouble: 9.95328e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_heap_inuse_bytes + - name: hidden_metrics_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: kubeproxy_sync_proxy_rules_endpoint_changes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 10 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: rest_client_requests_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 7 + attributes: + - key: code + value: + stringValue: "200" + - key: host + value: + stringValue: kind-control-plane:6443 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: method + value: + stringValue: GET + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: code + value: + stringValue: "201" + - key: host + value: + stringValue: kind-control-plane:6443 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: method + value: + stringValue: POST + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: apiserver_webhooks_x509_insecure_sha1_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 11 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: process_open_fds + - name: go_godebug_non_default_behavior_gocachehash_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_jstmpllitinterp_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memory_classes_os_stacks_bytes + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: rest_client_transport_cache_entries + - name: go_gc_heap_tiny_allocs_objects_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 4897 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 7.136736e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_heap_alloc_bytes + - name: process_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.14 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 100 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_gc_gogc_percent + - name: kubeproxy_sync_proxy_rules_iptables_partial_restore_failures_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_memstats_mallocs_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 92918 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_cpu_classes_scavenge_background_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1.2e-07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_heap_frees_objects_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 58992 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_execerrdot_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_tls10server_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 3.55616e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memory_classes_metadata_other_bytes + - gauge: + dataPoints: + - asDouble: 1.048576e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_stack_sys_bytes + - name: apiserver_storage_data_key_generation_failures_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_cpu_classes_gc_total_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.02803972 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_httplaxcontentlength_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: kubeproxy_sync_proxy_rules_service_changes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 8 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 7.136736e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memory_classes_heap_objects_bytes + - gauge: + dataPoints: + - asDouble: 955383 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_other_sys_bytes + - name: go_godebug_non_default_behavior_x509usefallbackroots_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_multipartmaxheaders_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_tlsunsafeekm_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: kubeproxy_sync_proxy_rules_iptables_restore_failures_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: apiserver_envelope_encryption_dek_cache_fill_percent + - gauge: + dataPoints: + - asDouble: 1.8699528e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memory_classes_total_bytes + - gauge: + dataPoints: + - asDouble: 1.548288e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_heap_idle_bytes + - name: go_cpu_classes_idle_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 481.077408053 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_heap_allocs_bytes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1.5259672e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.032192e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memory_classes_heap_free_bytes + - name: go_sync_mutex_wait_total_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.000496936 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: apiserver_audit_requests_rejected_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 9.223372036854776e+18 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_gc_gomemlimit_bytes + - name: go_godebug_non_default_behavior_http2server_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_panicnil_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0.004696361 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: scrape_duration_seconds + - name: aggregator_discovery_aggregation_count_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: sock + - key: k8s.namespace.name + value: + stringValue: kube-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: kube-proxy-pk6ln + - key: k8s.pod.uid + value: + stringValue: 000b712b-c14b-4175-a092-e56ddf66d548 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10249" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10249" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10249 + - key: service.name + value: + stringValue: kubernetes-proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + scope: {} diff --git a/functional_tests/testdata_histogram/expected/v1.31/scheduler_metrics.yaml b/functional_tests/testdata_histogram/expected/v1.31/scheduler_metrics.yaml new file mode 100644 index 0000000000..8ef6b51425 --- /dev/null +++ b/functional_tests/testdata_histogram/expected/v1.31/scheduler_metrics.yaml @@ -0,0 +1,21082 @@ +resourceMetrics: + - resource: {} + scopeMetrics: + - metrics: + - name: apiserver_audit_event_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_cpu_classes_user_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1.431499893 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.14688e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_heap_free_bytes + - gauge: + dataPoints: + - asDouble: 4.016224e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_heap_unused_bytes + - name: go_memstats_lookups_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.316048896e+09 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: process_virtual_memory_bytes + - name: scheduler_preemption_attempts_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 3 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: apiserver_audit_requests_rejected_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 7.06128e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_scan_total_bytes + - gauge: + dataPoints: + - asDouble: 8.558496e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_heap_alloc_bytes + - gauge: + dataPoints: + - asDouble: 1.048576e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: process_max_fds + - gauge: + dataPoints: + - asDouble: 2 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: rest_client_transport_cache_entries + - name: go_gc_duration_seconds_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "9" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_duration_seconds_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.001019527 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.3736e-05 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0" + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 5.0274e-05 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0.25" + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 9.5147e-05 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0.5" + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0.00012384 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0.75" + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0.000324432 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "1" + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_duration_seconds_quantile + - name: go_godebug_non_default_behavior_x509sha1_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + - key: version + value: + stringValue: go1.22.2 + timeUnixNano: "1000000" + name: go_info + - name: process_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1.29 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1643 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: scrape_series_added + - name: apiserver_webhooks_x509_missing_san_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_multipartmaxheaders_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_tlsmaxrsasize_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 8.558496e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_heap_objects_bytes + - gauge: + dataPoints: + - asDouble: 1.5204352e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_heap_sys_bytes + - gauge: + dataPoints: + - asDouble: 1.4644648e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_next_gc_bytes + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: DynamicConfigMapCABundle-client-ca + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: DynamicServingCertificateController + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: RequestHeaderAuthRequestController + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: workqueue_longest_running_processor_seconds + - gauge: + dataPoints: + - asDouble: 9.223372036854776e+18 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_gomemlimit_bytes + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_limiter_last_enabled_gc_cycle + - name: go_godebug_non_default_behavior_http2client_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: type + value: + stringValue: assumed_pods + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: type + value: + stringValue: nodes + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 13 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: type + value: + stringValue: pods + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: scheduler_scheduler_cache_size + - name: go_cpu_classes_gc_mark_dedicated_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.011696362 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_heap_allocs_bytes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 3.1105088e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_gocachehash_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_gocachetest_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_http2server_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_x509usefallbackroots_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_memstats_alloc_bytes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 3.1105088e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 3.644752e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_metadata_other_bytes + - gauge: + dataPoints: + - asDouble: 1.8446744073709552e+19 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: process_virtual_memory_max_bytes + - name: rest_client_transport_create_calls_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 4 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: result + value: + stringValue: hit + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 2 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: result + value: + stringValue: miss + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_cgo_go_to_c_calls_calls_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_cpu_classes_gc_mark_idle_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.031986679 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_cpu_classes_scavenge_assist_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1.8e-07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_cycles_total_gc_cycles_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 9 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_tls10server_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 212640 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_metadata_mspan_inuse_bytes + - gauge: + dataPoints: + - asDouble: 735971 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_other_sys_bytes + - gauge: + dataPoints: + - asDouble: 4 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_sched_gomaxprocs_threads + - gauge: + dataPoints: + - asDouble: 10 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: process_open_fds + - name: scheduler_schedule_attempts_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 9 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: profile + value: + stringValue: default-scheduler + - key: result + value: + stringValue: scheduled + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 3 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: profile + value: + stringValue: default-scheduler + - key: result + value: + stringValue: unschedulable + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: workqueue_adds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 4 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: DynamicConfigMapCABundle-client-ca + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 4 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: DynamicServingCertificateController + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: RequestHeaderAuthRequestController + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1643 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: scrape_samples_scraped + - name: authenticated_user_requests + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 15 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + - key: username + value: + stringValue: other + timeUnixNano: "1000000" + isMonotonic: true + - name: go_cpu_classes_gc_pause_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.004091804 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 6.865032e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_heap_live_bytes + - name: scheduler_plugin_evaluation_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: Filter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: AzureDiskLimits + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: Filter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: EBSLimits + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: Filter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: GCEPDLimits + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: Filter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: InterPodAffinity + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 9 + attributes: + - key: extension_point + value: + stringValue: Filter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: NodeAffinity + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 12 + attributes: + - key: extension_point + value: + stringValue: Filter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: NodeName + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: extension_point + value: + stringValue: Filter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: NodePorts + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 9 + attributes: + - key: extension_point + value: + stringValue: Filter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: NodeResourcesFit + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 12 + attributes: + - key: extension_point + value: + stringValue: Filter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: NodeUnschedulable + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: Filter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: NodeVolumeLimits + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: Filter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: PodTopologySpread + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 12 + attributes: + - key: extension_point + value: + stringValue: Filter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: TaintToleration + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: Filter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: VolumeBinding + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: Filter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: VolumeRestrictions + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: Filter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: VolumeZone + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: PreFilter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: AzureDiskLimits + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: PreFilter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: EBSLimits + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: PreFilter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: GCEPDLimits + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: PreFilter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: InterPodAffinity + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 12 + attributes: + - key: extension_point + value: + stringValue: PreFilter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: NodeAffinity + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: extension_point + value: + stringValue: PreFilter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: NodePorts + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 12 + attributes: + - key: extension_point + value: + stringValue: PreFilter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: NodeResourcesFit + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: PreFilter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: NodeVolumeLimits + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: PreFilter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: PodTopologySpread + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: PreFilter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: VolumeBinding + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: PreFilter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: VolumeRestrictions + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: PreFilter + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: VolumeZone + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: PreScore + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: InterPodAffinity + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: PreScore + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: NodeAffinity + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: PreScore + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: NodeResourcesBalancedAllocation + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: PreScore + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: NodeResourcesFit + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: PreScore + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: PodTopologySpread + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: PreScore + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: TaintToleration + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: PreScore + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: VolumeBinding + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: Score + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: ImageLocality + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: Score + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: InterPodAffinity + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: Score + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: NodeAffinity + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: Score + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: NodeResourcesBalancedAllocation + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: Score + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: NodeResourcesFit + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: Score + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: PodTopologySpread + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: Score + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: TaintToleration + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: extension_point + value: + stringValue: Score + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: VolumeBinding + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: up + - gauge: + dataPoints: + - asDouble: 163864 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_scan_stack_bytes + - name: go_godebug_non_default_behavior_multipartmaxparts_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 4800 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_metadata_mcache_inuse_bytes + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: build_date + value: + stringValue: "2024-05-13T22:00:36Z" + - key: compiler + value: + stringValue: gc + - key: git_commit + value: + stringValue: 7c48c2bd72b9bf5c44d21d7338cc7bea77d0ad2a + - key: git_tree_state + value: + stringValue: clean + - key: git_version + value: + stringValue: v1.30.0 + - key: go_version + value: + stringValue: go1.22.2 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: major + value: + stringValue: "1" + - key: minor + value: + stringValue: "30" + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: platform + value: + stringValue: linux/amd64 + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: kubernetes_build_info + - name: apiserver_storage_data_key_generation_failures_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_cpu_classes_scavenge_total_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 3.7e-07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 6.146696e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_scan_heap_bytes + - name: go_godebug_non_default_behavior_httplaxcontentlength_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_zipinsecurepath_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.482752e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_heap_released_bytes + - gauge: + dataPoints: + - asDouble: 1.572864e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_stack_sys_bytes + - gauge: + dataPoints: + - asDouble: 1.72448099781e+09 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: process_start_time_seconds + - name: registered_metrics_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 84 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stability_level + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 5 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stability_level + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 13 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stability_level + value: + stringValue: STABLE + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 2 + attributes: + - key: deprecated_version + value: + stringValue: 1.30.0 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stability_level + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: apiserver_webhooks_x509_insecure_sha1_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: cardinality_enforcement_unexpected_categorizations_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_installgoroot_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_x509usepolicies_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: apiserver_delegated_authn_request_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: code + value: + stringValue: "201" + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: APIListChunking + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: APIPriorityAndFairness + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: AdmissionWebhookMatchConditions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: AggregatedDiscoveryEndpoint + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: CPUManager + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: CSINodeExpandSecret + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: CloudDualStackNodeIPs + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: ConsistentHTTPGetHandlers + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: CustomResourceValidationExpressions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: EfficientWatchResumption + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: ExecProbeTimeout + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: HPAContainerMetrics + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: JobReadyPods + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: KMSv2 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: KMSv2KDF + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: LegacyServiceAccountTokenCleanUp + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: MinDomainsInPodTopologySpread + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: NewVolumeManagerReconstruction + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: NodeOutOfServiceVolumeDetach + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: PodHostIPs + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: PodSchedulingReadiness + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: ReadWriteOncePod + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: RemainingItemCount + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: ServerSideApply + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: ServerSideFieldValidation + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: ServiceNodePortStaticSubrange + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: StableLoadBalancerNodeSet + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: ValidatingAdmissionPolicy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: WatchBookmark + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: ZeroLimitedNominalConcurrencyShares + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: APIResponseCompression + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: APIServerIdentity + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: APIServerTracing + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: APIServingWithRoutine + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: AllAlpha + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: AllBeta + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: AllowServiceLBStatusOnNonLB + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: DEPRECATED + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: AnyVolumeDataSource + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: AppArmor + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: AppArmorFields + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: CPUManagerPolicyAlphaOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: CPUManagerPolicyBetaOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: CPUManagerPolicyOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: CRDValidationRatcheting + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: CSIMigrationPortworx + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: CSIMigrationRBD + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: DEPRECATED + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: CSIVolumeHealth + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: CloudControllerManagerWebhook + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: ClusterTrustBundle + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: ClusterTrustBundleProjection + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: ComponentSLIs + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: ConsistentListFromCache + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: ContainerCheckpoint + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: ContextualLogging + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: CronJobsScheduledAnnotation + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: CrossNamespaceVolumeDataSource + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: CustomCPUCFSQuotaPeriod + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: CustomResourceFieldSelectors + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: DefaultHostNetworkHostPortsInPodTemplates + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: DEPRECATED + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: DevicePluginCDIDevices + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: DisableCloudProviders + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: DisableKubeletCloudCredentialProviders + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: DisableNodeKubeProxyVersion + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: DynamicResourceAllocation + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: ElasticIndexedJob + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: EventedPLEG + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: GracefulNodeShutdown + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: GracefulNodeShutdownBasedOnPodPriority + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: HPAScaleToZero + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: HonorPVReclaimPolicy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: ImageMaximumGCAge + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: InPlacePodVerticalScaling + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: InTreePluginAWSUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: InTreePluginAzureDiskUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: InTreePluginAzureFileUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: InTreePluginGCEUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: InTreePluginOpenStackUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: InTreePluginPortworxUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: InTreePluginRBDUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: DEPRECATED + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: InTreePluginvSphereUnregister + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: InformerResourceVersion + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: JobBackoffLimitPerIndex + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: JobManagedBy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: JobPodFailurePolicy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: JobPodReplacementPolicy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: JobSuccessPolicy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: KMSv1 + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: DEPRECATED + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: KubeProxyDrainingTerminatingNodes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: KubeletCgroupDriverFromCRI + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: KubeletInUserNamespace + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: KubeletPodResourcesDynamicResources + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: KubeletPodResourcesGet + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: KubeletSeparateDiskGC + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: KubeletTracing + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: LoadBalancerIPMode + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: LocalStorageCapacityIsolationFSQuotaMonitoring + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: LogarithmicScaleDown + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: LoggingAlphaOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: LoggingBetaOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: MatchLabelKeysInPodAffinity + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: MatchLabelKeysInPodTopologySpread + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: MaxUnavailableStatefulSet + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: MemoryManager + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: MemoryQoS + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: MultiCIDRServiceAllocator + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: MutatingAdmissionPolicy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: NFTablesProxyMode + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: NodeInclusionPolicyInPodTopologySpread + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: NodeLogQuery + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: NodeSwap + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: OpenAPIEnums + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: PDBUnhealthyPodEvictionPolicy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: PersistentVolumeLastPhaseTransitionTime + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: PodAndContainerStatsFromCRI + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: PodDeletionCost + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: PodDisruptionConditions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: PodIndexLabel + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: PodLifecycleSleepAction + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: PodReadyToStartContainersCondition + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: PortForwardWebsockets + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: ProcMountType + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: QOSReserved + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: RecoverVolumeExpansionFailure + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: RecursiveReadOnlyMounts + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: RelaxedEnvironmentVariableValidation + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: RetryGenerateName + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: RotateKubeletServerCertificate + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: RuntimeClassInImageCriApi + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: SELinuxMount + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: SELinuxMountReadWriteOncePod + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: SchedulerQueueingHints + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: SeparateCacheWatchRPC + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: SeparateTaintEvictionController + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: ServiceAccountTokenJTI + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: ServiceAccountTokenNodeBinding + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: ServiceAccountTokenNodeBindingValidation + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: ServiceAccountTokenPodNodeInfo + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: ServiceTrafficDistribution + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: SidecarContainers + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: SizeMemoryBackedVolumes + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: SkipReadOnlyValidationGCE + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: DEPRECATED + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: StatefulSetAutoDeletePVC + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: StatefulSetStartOrdinal + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: StorageNamespaceIndex + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: StorageVersionAPI + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: StorageVersionHash + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: StorageVersionMigrator + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: StructuredAuthenticationConfiguration + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: StructuredAuthorizationConfiguration + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: TopologyAwareHints + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: TopologyManagerPolicyAlphaOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: TopologyManagerPolicyBetaOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: TopologyManagerPolicyOptions + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: TranslateStreamCloseWebsocketRequests + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: UnauthenticatedHTTP2DOSMitigation + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: UnknownVersionInteroperabilityProxy + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: UserNamespacesPodSecurityStandards + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: UserNamespacesSupport + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: VolumeAttributesClass + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: VolumeCapacityPriority + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: WatchFromStorageWithoutResourceVersion + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: WatchList + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: WatchListClient + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: WinDSR + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: WinOverlay + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: BETA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: WindowsHostNetwork + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: stage + value: + stringValue: ALPHA + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: kubernetes_feature_enabled + - name: authorization_attempts_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 15 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: result + value: + stringValue: allowed + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_cpu_classes_total_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 138.520010076 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_tlsunsafeekm_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 735971 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_other_bytes + - gauge: + dataPoints: + - asDouble: 1.491813e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_buck_hash_sys_bytes + - gauge: + dataPoints: + - asDouble: 3.644752e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_gc_sys_bytes + - gauge: + dataPoints: + - asDouble: 4800 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_mcache_inuse_bytes + - gauge: + dataPoints: + - asDouble: 212640 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_mspan_inuse_bytes + - gauge: + dataPoints: + - asDouble: Infinity + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: rest_client_exec_plugin_ttl_seconds + - name: aggregator_discovery_aggregation_count_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_cpu_classes_gc_total_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.052688676 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.491813e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_profiling_buckets_bytes + - gauge: + dataPoints: + - asDouble: 8.558496e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_alloc_bytes + - gauge: + dataPoints: + - asDouble: 1.72448103259461e+09 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_last_gc_time_seconds + - name: go_gc_cycles_forced_gc_cycles_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 750720 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_scan_globals_bytes + - name: authentication_token_cache_fetch_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: status + value: + stringValue: ok + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_gocacheverify_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_randautoseed_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_tlsrsakex_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_memstats_mallocs_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 201303 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: hidden_metrics_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: scheduler_queue_incoming_pods_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 3 + attributes: + - key: event + value: + stringValue: NodeTaintChange + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: queue + value: + stringValue: active + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 9 + attributes: + - key: event + value: + stringValue: PodAdd + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: queue + value: + stringValue: active + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 3 + attributes: + - key: event + value: + stringValue: ScheduleAttemptFailure + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: queue + value: + stringValue: unschedulable + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: DynamicConfigMapCABundle-client-ca + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: DynamicServingCertificateController + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: RequestHeaderAuthRequestController + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: workqueue_depth + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: apiserver_envelope_encryption_dek_cache_fill_percent + - name: go_gc_heap_frees_objects_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 123433 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 228480 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_mspan_sys_bytes + - name: authentication_token_cache_request_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: status + value: + stringValue: miss + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_os_stacks_bytes + - gauge: + dataPoints: + - asDouble: 1.572864e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_stack_inuse_bytes + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: queue + value: + stringValue: active + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: queue + value: + stringValue: backoff + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: queue + value: + stringValue: gated + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: queue + value: + stringValue: unschedulable + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: scheduler_pending_pods + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: status + value: + stringValue: blocked + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: status + value: + stringValue: in_flight + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: authentication_token_cache_active_fetch_count + - name: disabled_metrics_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_sync_mutex_wait_total_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.004827104 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 62685 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_heap_objects_objects + - gauge: + dataPoints: + - asDouble: 172 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_goroutines + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: operation + value: + stringValue: Filter + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: operation + value: + stringValue: InterPodAffinity + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: operation + value: + stringValue: binding + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: scheduler_goroutines + - name: apiserver_storage_envelope_transformation_cache_misses_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_heap_tiny_allocs_objects_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 15185 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_panicnil_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.482752e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_heap_released_bytes + - gauge: + dataPoints: + - asDouble: 10800 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_metadata_mcache_free_bytes + - gauge: + dataPoints: + - asDouble: 15840 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_metadata_mspan_free_bytes + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: plugin + value: + stringValue: TaintToleration + - key: profile + value: + stringValue: default-scheduler + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: scheduler_unschedulable_pods + - name: go_cpu_classes_gc_mark_assist_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.004913831 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 2.629632e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_heap_idle_bytes + - name: authentication_attempts + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 15 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: result + value: + stringValue: success + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_cycles_automatic_gc_cycles_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 9 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_jstmpllitinterp_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_tarinsecurepath_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.572864e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_heap_stacks_bytes + - name: workqueue_retries_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: DynamicConfigMapCABundle-client-ca + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: DynamicServingCertificateController + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: RequestHeaderAuthRequestController + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_heap_frees_bytes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 2.2546592e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_execerrdot_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_httpmuxgo121_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 62685 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_heap_objects + - gauge: + dataPoints: + - asDouble: 15600 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_mcache_sys_bytes + - gauge: + dataPoints: + - asDouble: 2.2893832e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_sys_bytes + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: kube-scheduler + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: leader_election_master_status + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: DynamicConfigMapCABundle-client-ca + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: DynamicServingCertificateController + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: name + value: + stringValue: RequestHeaderAuthRequestController + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: workqueue_unfinished_work_seconds + - name: go_cpu_classes_scavenge_background_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1.9e-07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0.016242823 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: scrape_duration_seconds + - gauge: + dataPoints: + - asDouble: 2.2893832e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memory_classes_total_bytes + - gauge: + dataPoints: + - asDouble: 10 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_threads + - gauge: + dataPoints: + - asDouble: 1.4644648e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_heap_goal_bytes + - gauge: + dataPoints: + - asDouble: 2048 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_stack_starting_size_bytes + - name: go_godebug_non_default_behavior_gotypesalias_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_godebug_non_default_behavior_multipathtcp_events_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_memstats_frees_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 138618 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: rest_client_requests_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 30 + attributes: + - key: code + value: + stringValue: "200" + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: method + value: + stringValue: GET + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 3 + attributes: + - key: code + value: + stringValue: "200" + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: method + value: + stringValue: PATCH + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 71 + attributes: + - key: code + value: + stringValue: "200" + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: method + value: + stringValue: PUT + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 25 + attributes: + - key: code + value: + stringValue: "201" + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: method + value: + stringValue: POST + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 25 + attributes: + - key: code + value: + stringValue: "403" + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: method + value: + stringValue: GET + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: code + value: + stringValue: "404" + - key: host + value: + stringValue: 172.18.0.2:6443 + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: method + value: + stringValue: GET + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: apiserver_delegated_authz_request_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: code + value: + stringValue: "201" + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_cpu_classes_idle_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 137.035821137 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_heap_allocs_objects_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 186118 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.257472e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_memstats_heap_inuse_bytes + - gauge: + dataPoints: + - asDouble: 6.4610304e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: process_resident_memory_bytes + - gauge: + dataPoints: + - asDouble: 1643 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: scrape_samples_post_metric_relabeling + - gauge: + dataPoints: + - asDouble: 100 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_gc_gogc_percent + - gauge: + dataPoints: + - asDouble: 172 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: https + - key: k8s.cluster.name + value: + stringValue: sock + - 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: 6c3cc1ab-07fc-4a38-8627-f81e7a3a010a + - key: net.host.name + value: + stringValue: 172.18.0.2 + - key: net.host.port + value: + stringValue: "10259" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 172.18.0.2 + - key: server.port + value: + stringValue: "10259" + - key: service.instance.id + value: + stringValue: 172.18.0.2:10259 + - key: service.name + value: + stringValue: kubernetes-scheduler + - key: url.scheme + value: + stringValue: https + timeUnixNano: "1000000" + name: go_sched_goroutines_goroutines + scope: {}