From 503075d5bd5be40f89204f620fe1b8d9f567e428 Mon Sep 17 00:00:00 2001 From: Jina Jain Date: Fri, 14 Feb 2025 17:45:06 -0800 Subject: [PATCH] add test for istio metrics (#1657) --- .github/workflows/functional_test_v2.yaml | 1 + .pre-commit-config.yaml | 1 + functional_tests/common.go | 23 + functional_tests/functional_test.go | 19 - functional_tests/go.mod | 7 +- functional_tests/go.sum | 9 +- functional_tests/istio_test.go | 555 + .../testdata_istio/expected_istiod.yaml | 14332 +++++++ .../testdata_istio/expected_istioingress.yaml | 33394 ++++++++++++++++ .../testdata_istio/istio_values.yaml.tmpl | 37 + .../testobjects/1-serviceaccount.yaml | 5 + .../testdata_istio/testobjects/2-service.yaml | 15 + .../testobjects/3-deployment.yaml | 24 + .../testdata_istio/testobjects/gateway.yaml | 15 + .../testobjects/virtualservice.yaml | 23 + 15 files changed, 48435 insertions(+), 25 deletions(-) create mode 100644 functional_tests/istio_test.go create mode 100644 functional_tests/testdata_istio/expected_istiod.yaml create mode 100644 functional_tests/testdata_istio/expected_istioingress.yaml create mode 100644 functional_tests/testdata_istio/istio_values.yaml.tmpl create mode 100644 functional_tests/testdata_istio/testobjects/1-serviceaccount.yaml create mode 100644 functional_tests/testdata_istio/testobjects/2-service.yaml create mode 100644 functional_tests/testdata_istio/testobjects/3-deployment.yaml create mode 100644 functional_tests/testdata_istio/testobjects/gateway.yaml create mode 100644 functional_tests/testdata_istio/testobjects/virtualservice.yaml diff --git a/.github/workflows/functional_test_v2.yaml b/.github/workflows/functional_test_v2.yaml index 924a921f8..4ed48c26c 100644 --- a/.github/workflows/functional_test_v2.yaml +++ b/.github/workflows/functional_test_v2.yaml @@ -44,6 +44,7 @@ jobs: - functional - histogram - configuration_switching + - istio runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index bf113d06e..a269c227c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -21,3 +21,4 @@ repos: exclude: "^helm-charts|operator-webhook.yaml" args: [ --allow-multiple-documents ] - id: check-added-large-files + args: [ --maxkb=1500 ] diff --git a/functional_tests/common.go b/functional_tests/common.go index 53d67803c..7941cef9f 100644 --- a/functional_tests/common.go +++ b/functional_tests/common.go @@ -5,10 +5,14 @@ package functional_tests import ( "context" + "fmt" "github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden" + "github.com/open-telemetry/opentelemetry-collector-contrib/receiver/signalfxreceiver" + "go.opentelemetry.io/collector/component/componenttest" "go.opentelemetry.io/collector/consumer/consumertest" "go.opentelemetry.io/collector/pdata/pmetric" "go.opentelemetry.io/collector/pdata/ptrace" + "go.opentelemetry.io/collector/receiver/receivertest" "os" "path/filepath" "runtime" @@ -17,6 +21,7 @@ import ( "github.com/docker/docker/api/types" docker "github.com/docker/docker/client" + "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) @@ -100,3 +105,21 @@ func writeNewExpectedMetricsResult(t *testing.T, file string, metric *pmetric.Me require.NoError(t, os.MkdirAll("results", 0755)) require.NoError(t, golden.WriteMetrics(t, filepath.Join("results", filepath.Base(file)), *metric)) } + +func setupSignalfxReceiver(t *testing.T, port int) *consumertest.MetricsSink { + mc := new(consumertest.MetricsSink) + f := signalfxreceiver.NewFactory() + cfg := f.CreateDefaultConfig().(*signalfxreceiver.Config) + cfg.Endpoint = fmt.Sprintf("0.0.0.0:%d", port) + + rcvr, err := f.CreateMetrics(context.Background(), receivertest.NewNopSettings(), cfg, mc) + require.NoError(t, err) + + require.NoError(t, rcvr.Start(context.Background(), componenttest.NewNopHost())) + require.NoError(t, err, "failed creating metrics receiver") + t.Cleanup(func() { + assert.NoError(t, rcvr.Shutdown(context.Background())) + }) + + return mc +} diff --git a/functional_tests/functional_test.go b/functional_tests/functional_test.go index f33c39259..2a5922365 100644 --- a/functional_tests/functional_test.go +++ b/functional_tests/functional_test.go @@ -21,7 +21,6 @@ import ( "github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden" "github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest/pmetrictest" "github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest/ptracetest" - "github.com/open-telemetry/opentelemetry-collector-contrib/receiver/signalfxreceiver" "github.com/open-telemetry/opentelemetry-collector-contrib/receiver/splunkhecreceiver" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -1473,24 +1472,6 @@ func setupTraces(t *testing.T) *consumertest.TracesSink { return tc } -func setupSignalfxReceiver(t *testing.T, port int) *consumertest.MetricsSink { - mc := new(consumertest.MetricsSink) - f := signalfxreceiver.NewFactory() - cfg := f.CreateDefaultConfig().(*signalfxreceiver.Config) - cfg.Endpoint = fmt.Sprintf("0.0.0.0:%d", port) - - rcvr, err := f.CreateMetrics(context.Background(), receivertest.NewNopSettings(), cfg, mc) - require.NoError(t, err) - - require.NoError(t, rcvr.Start(context.Background(), componenttest.NewNopHost())) - require.NoError(t, err, "failed creating metrics receiver") - t.Cleanup(func() { - assert.NoError(t, rcvr.Shutdown(context.Background())) - }) - - return mc -} - func setupHEC(t *testing.T) (*consumertest.LogsSink, *consumertest.MetricsSink) { // the splunkhecreceiver does poorly at receiving logs and metrics. Use separate ports for now. f := splunkhecreceiver.NewFactory() diff --git a/functional_tests/go.mod b/functional_tests/go.mod index feb0bea3d..864ecfc5b 100644 --- a/functional_tests/go.mod +++ b/functional_tests/go.mod @@ -8,9 +8,10 @@ go 1.22.0 toolchain go1.22.5 require ( - github.com/docker/docker v27.3.1+incompatible + github.com/docker/docker v27.5.1+incompatible github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden v0.117.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest v0.117.0 + github.com/open-telemetry/opentelemetry-collector-contrib/pkg/xk8stest v0.119.0 github.com/open-telemetry/opentelemetry-collector-contrib/receiver/signalfxreceiver v0.117.0 github.com/open-telemetry/opentelemetry-collector-contrib/receiver/splunkhecreceiver v0.115.0 github.com/stretchr/testify v1.10.0 @@ -25,6 +26,7 @@ require ( k8s.io/apiextensions-apiserver v0.31.3 k8s.io/apimachinery v0.31.3 k8s.io/client-go v0.31.3 + sigs.k8s.io/yaml v1.4.0 ) require ( @@ -199,7 +201,7 @@ require ( golang.org/x/sys v0.29.0 // indirect golang.org/x/term v0.28.0 // indirect golang.org/x/text v0.21.0 // indirect - golang.org/x/time v0.3.0 // indirect + golang.org/x/time v0.4.0 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20241104194629-dd2ea8efbc28 // indirect google.golang.org/grpc v1.69.2 // indirect google.golang.org/protobuf v1.36.2 // indirect @@ -218,7 +220,6 @@ require ( sigs.k8s.io/kustomize/api v0.17.2 // indirect sigs.k8s.io/kustomize/kyaml v0.17.1 // indirect sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect - sigs.k8s.io/yaml v1.4.0 // indirect ) // ambiguous import: found package cloud.google.com/go/compute/metadata in multiple modules diff --git a/functional_tests/go.sum b/functional_tests/go.sum index cdcb5f865..e0b1cb6b9 100644 --- a/functional_tests/go.sum +++ b/functional_tests/go.sum @@ -685,8 +685,8 @@ github.com/docker/cli v25.0.1+incompatible h1:mFpqnrS6Hsm3v1k7Wa/BO23oz0k121MTbT github.com/docker/cli v25.0.1+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8= github.com/docker/distribution v2.8.3+incompatible h1:AtKxIZ36LoNK51+Z6RpzLpddBirtxJnzDrHLEKxTAYk= github.com/docker/distribution v2.8.3+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= -github.com/docker/docker v27.3.1+incompatible h1:KttF0XoteNTicmUtBO0L2tP+J7FGRFTjaEF4k6WdhfI= -github.com/docker/docker v27.3.1+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= +github.com/docker/docker v27.5.1+incompatible h1:4PYU5dnBYqRQi0294d1FBECqT9ECWeQAIfE8q4YnPY8= +github.com/docker/docker v27.5.1+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= github.com/docker/docker-credential-helpers v0.7.0 h1:xtCHsjxogADNZcdv1pKUHXryefjlVRqWqIhk/uXJp0A= github.com/docker/docker-credential-helpers v0.7.0/go.mod h1:rETQfLdHNT3foU5kuNkFR1R1V12OJRRO5lzt2D1b5X0= github.com/docker/go-connections v0.5.0 h1:USnMq7hx7gwdVZq1L49hLXaFtUdTADjXGp+uj1Br63c= @@ -1124,6 +1124,8 @@ github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.117.0 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatautil v0.117.0/go.mod h1:OGylX+Bp+urSNNGoI1XG7U6vaRDZk1wN/w6fHP1F7IY= github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/signalfx v0.117.0 h1:vHARTwGkDJV3Y3nVeQuJ4c7N19IkXXAK6aRB8beWJRw= github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/signalfx v0.117.0/go.mod h1:bK0QUJnoCwWoU3Pu+3jSfR6yCqM+WgRNC/MOBEz6aC8= +github.com/open-telemetry/opentelemetry-collector-contrib/pkg/xk8stest v0.119.0 h1:ptDhiLTpUJY+NIq2FoERwipKcZbNW5m62Sd8VXzbt/g= +github.com/open-telemetry/opentelemetry-collector-contrib/pkg/xk8stest v0.119.0/go.mod h1:qAg6wgkUiX8Ue6cLLsZS//d5TvRPmj8j7ieJbtnpHgY= github.com/open-telemetry/opentelemetry-collector-contrib/receiver/signalfxreceiver v0.117.0 h1:ppbkkWk6o1r2Pktr45YOfqPWvQcyC71/9/cAUJ8a7Q4= github.com/open-telemetry/opentelemetry-collector-contrib/receiver/signalfxreceiver v0.117.0/go.mod h1:o0v6sN20f3CQE4cInrC6CKbBs1WH+kNEAnqLoPmpVwY= github.com/open-telemetry/opentelemetry-collector-contrib/receiver/splunkhecreceiver v0.115.0 h1:3BJLq6lX2P+RoJ0vSW7sAeGXFKbUw3m57EQ+g+mYnzQ= @@ -1663,8 +1665,9 @@ golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20220922220347-f3bd1da661af/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.1.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.3.0 h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4= golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.4.0 h1:Z81tqI5ddIoXDPvVQ7/7CC9TnLM7ubaFG2qXYd5BbYY= +golang.org/x/time v0.4.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= golang.org/x/tools v0.0.0-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= diff --git a/functional_tests/istio_test.go b/functional_tests/istio_test.go new file mode 100644 index 000000000..dd988cb29 --- /dev/null +++ b/functional_tests/istio_test.go @@ -0,0 +1,555 @@ +//go:build istio + +package functional_tests + +import ( + "archive/tar" + "bytes" + "compress/gzip" + "context" + "fmt" + "io" + "net" + "net/http" + "os" + "os/exec" + "path/filepath" + "runtime" + "sync" + "testing" + "text/template" + "time" + + "github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden" + "github.com/open-telemetry/opentelemetry-collector-contrib/pkg/pdatatest/pmetrictest" + k8stest "github.com/open-telemetry/opentelemetry-collector-contrib/pkg/xk8stest" + "github.com/stretchr/testify/require" + "go.opentelemetry.io/collector/consumer/consumertest" + "go.opentelemetry.io/collector/pdata/pmetric" + "helm.sh/helm/v3/pkg/action" + "helm.sh/helm/v3/pkg/chart/loader" + "helm.sh/helm/v3/pkg/kube" + "k8s.io/api/core/v1" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" + "k8s.io/apimachinery/pkg/types" + "k8s.io/apimachinery/pkg/util/yaml" + "k8s.io/client-go/kubernetes" + "k8s.io/client-go/tools/clientcmd" + sigsyaml "sigs.k8s.io/yaml" + + "github.com/signalfx/splunk-otel-collector-chart/functional_tests/internal" +) + +const ( + apiPort = 8881 + signalFxReceiverPort = 9943 + istioVersion = "1.24.2" +) + +// Env vars to control the test behavior +// TEARDOWN_BEFORE_SETUP: if set to true, the test will run teardown before setup +// SKIP_SETUP: if set to true, the test will skip setup +// SKIP_TEARDOWN: if set to true, the test will skip teardown +// SKIP_TESTS: if set to true, the test will skip the test +// UPDATE_EXPECTED_RESULTS: if set to true, the test will update the expected results +// KUBECONFIG: the path to the kubeconfig file + +var setupRun = sync.Once{} +var istioMetricsConsumer *consumertest.MetricsSink + +func setupOnce(t *testing.T) *consumertest.MetricsSink { + setupRun.Do(func() { + + if os.Getenv("TEARDOWN_BEFORE_SETUP") == "true" { + t.Log("Running teardown before setup as TEARDOWN_BEFORE_SETUP is set to true") + testKubeConfig, setKubeConfig := os.LookupEnv("KUBECONFIG") + require.True(t, setKubeConfig, "the environment variable KUBECONFIG must be set") + k8sClient, err := k8stest.NewK8sClient(testKubeConfig) + require.NoError(t, err) + istioctlPath := downloadIstio(t, istioVersion) + teardown(t, k8sClient, istioctlPath) + } + + // create an API server + internal.CreateApiServer(t, apiPort) + + istioMetricsConsumer = setupSignalfxReceiver(t, signalFxReceiverPort) + + if os.Getenv("SKIP_SETUP") == "true" { + t.Log("Skipping setup as SKIP_SETUP is set to true") + return + } + deployIstioAndCollector(t) + }) + + return istioMetricsConsumer +} + +func deployIstioAndCollector(t *testing.T) { + testKubeConfig, setKubeConfig := os.LookupEnv("KUBECONFIG") + require.True(t, setKubeConfig, "the environment variable KUBECONFIG must be set") + + config, err := clientcmd.BuildConfigFromFlags("", testKubeConfig) + require.NoError(t, err) + clientset, err := kubernetes.NewForConfig(config) + require.NoError(t, err) + + // Install Istio + istioctlPath := downloadIstio(t, istioVersion) + runCommand(t, fmt.Sprintf("%s install -y", istioctlPath)) + + // Patch ingress gateway to work in kind cluster + patchResource(t, clientset, "istio-system", "istio-ingressgateway", "deployments", `{"spec":{"template":{"spec":{"containers":[{"name":"istio-proxy","ports":[{"containerPort":8080,"hostPort":80},{"containerPort":8443,"hostPort":443}]}]}}}}`) + patchResource(t, clientset, "istio-system", "istio-ingressgateway", "services", `{"spec": {"type": "ClusterIP"}}`) + + createNamespace(t, clientset, "istio-workloads") + labelNamespace(t, clientset, "istio-workloads", "istio-injection", "enabled") + + k8sClient, err := k8stest.NewK8sClient(testKubeConfig) + require.NoError(t, err) + + _, err = k8stest.CreateObjects(k8sClient, "testdata_istio/testobjects") + require.NoError(t, err) + deployment, err := clientset.AppsV1().Deployments("istio-workloads").Get(context.TODO(), "httpbin", metav1.GetOptions{}) + require.NoError(t, err, "failed to get httpbin deployment") + t.Logf("Deployment %s created successfully", deployment.Name) + + checkPodsReady(t, clientset, "istio-system", "app=istio-ingressgateway", 5*time.Minute) + checkPodsReady(t, clientset, "istio-system", "app=istiod", 2*time.Minute) + checkPodsReady(t, clientset, "istio-workloads", "app=httpbin", 3*time.Minute) + + // Send traffic through ingress gateways + sendWorkloadHTTPRequests(t) + + chartPath := filepath.Join("..", "helm-charts", "splunk-otel-collector") + chart, err := loader.Load(chartPath) + require.NoError(t, err) + + valuesBytes, err := os.ReadFile(filepath.Join("testdata_istio", "istio_values.yaml.tmpl")) + require.NoError(t, err) + + hostEp := hostEndpoint(t) + if len(hostEp) == 0 { + require.Fail(t, "Host endpoint not found") + } + + replacements := struct { + IngestURL string + ApiURL string + }{ + fmt.Sprintf("http://%s:%d", hostEp, signalFxReceiverPort), + fmt.Sprintf("http://%s:%d", hostEp, apiPort), + } + tmpl, err := template.New("").Parse(string(valuesBytes)) + require.NoError(t, err) + var buf bytes.Buffer + err = tmpl.Execute(&buf, replacements) + require.NoError(t, err) + var values map[string]interface{} + err = yaml.Unmarshal(buf.Bytes(), &values) + require.NoError(t, err) + + actionConfig := new(action.Configuration) + if err := actionConfig.Init(kube.GetConfig(testKubeConfig, "", "default"), "default", os.Getenv("HELM_DRIVER"), func(format string, v ...interface{}) { + t.Logf(format+"\n", v...) + }); err != nil { + require.NoError(t, err) + } + install := action.NewInstall(actionConfig) + install.Namespace = "default" + install.ReleaseName = "sock" + _, err = install.Run(chart, values) + if err != nil { + t.Logf("error reported during helm install: %v\n", err) + retryUpgrade := action.NewUpgrade(actionConfig) + retryUpgrade.Namespace = "default" + retryUpgrade.Install = true + _, err = retryUpgrade.Run("sock", chart, values) + require.NoError(t, err) + } + + t.Cleanup(func() { + if os.Getenv("SKIP_TEARDOWN") == "true" { + t.Log("Skipping teardown as SKIP_TEARDOWN is set to true") + return + } + teardown(t, k8sClient, istioctlPath) + }) +} + +func teardown(t *testing.T, k8sClient *k8stest.K8sClient, istioctlPath string) { + deleteObject(t, k8sClient, ` +apiVersion: networking.istio.io/v1 +kind: Gateway +metadata: + name: httpbin-gateway + namespace: istio-system +`) + deleteObject(t, k8sClient, ` +apiVersion: networking.istio.io/v1 +kind: VirtualService +metadata: + name: httpbin + namespace: istio-system +`) + deleteObject(t, k8sClient, ` +apiVersion: v1 +kind: Namespace +metadata: + name: istio-workloads +`) + runCommand(t, fmt.Sprintf("%s uninstall --purge -y", istioctlPath)) + + actionConfig := new(action.Configuration) + testKubeConfig, _ := os.LookupEnv("KUBECONFIG") + if err := actionConfig.Init(kube.GetConfig(testKubeConfig, "", "default"), "default", os.Getenv("HELM_DRIVER"), func(format string, v ...interface{}) { + t.Logf(format+"\n", v...) + }); err != nil { + require.NoError(t, err) + } + uninstall := action.NewUninstall(actionConfig) + uninstall.IgnoreNotFound = true + uninstall.Wait = true + _, _ = uninstall.Run("sock") +} + +func downloadIstio(t *testing.T, version string) string { + var url string + if runtime.GOOS == "darwin" { + url = fmt.Sprintf("https://github.com/istio/istio/releases/download/%s/istio-%s-osx.tar.gz", version, version) + } else if runtime.GOOS == "linux" { + url = fmt.Sprintf("https://github.com/istio/istio/releases/download/%s/istio-%s-linux-amd64.tar.gz", version, version) + } else { + t.Fatalf("unsupported operating system: %s", runtime.GOOS) + } + + resp, err := http.Get(url) + require.NoError(t, err) + defer resp.Body.Close() + + gz, err := gzip.NewReader(resp.Body) + require.NoError(t, err) + defer gz.Close() + + tr := tar.NewReader(gz) + var istioDir string + for { + hdr, err := tr.Next() + if err == io.EOF { + break + } + require.NoError(t, err) + + target := filepath.Join(".", hdr.Name) + if hdr.FileInfo().IsDir() && istioDir == "" { + istioDir = target + } + if hdr.FileInfo().IsDir() { + require.NoError(t, os.MkdirAll(target, hdr.FileInfo().Mode())) + } else { + f, err := os.Create(target) + require.NoError(t, err) + defer f.Close() + + _, err = io.Copy(f, tr) + require.NoError(t, err) + } + } + require.NotEmpty(t, istioDir, "istioctl path not found") + + absIstioDir, err := filepath.Abs(istioDir) + require.NoError(t, err, "failed to get absolute path for istioDir") + + istioctlPath := filepath.Join(absIstioDir, "bin", "istioctl") + require.FileExists(t, istioctlPath, "istioctl binary not found") + require.NoError(t, os.Chmod(istioctlPath, 0755), "failed to set executable permission for istioctl") + + t.Cleanup(func() { + os.RemoveAll(absIstioDir) + }) + + return istioctlPath +} + +func checkPodsReady(t *testing.T, clientset *kubernetes.Clientset, namespace, labelSelector string, timeout time.Duration) { + require.Eventually(t, func() bool { + pods, err := clientset.CoreV1().Pods(namespace).List(context.TODO(), metav1.ListOptions{ + LabelSelector: labelSelector, + }) + require.NoError(t, err) + if len(pods.Items) == 0 { + return false + } + for _, pod := range pods.Items { + if pod.Status.Phase != v1.PodRunning { + return false + } + ready := false + for _, condition := range pod.Status.Conditions { + if condition.Type == v1.PodReady && condition.Status == v1.ConditionTrue { + ready = true + break + } + } + if !ready { + return false + } + } + return true + }, timeout, 5*time.Second, "Pods in namespace %s with label %s are not ready", namespace, labelSelector) +} + +func runCommand(t *testing.T, command string) { + cmd := exec.Command("sh", "-c", command) + cmd.Stdout = os.Stdout + cmd.Stderr = os.Stderr + require.NoError(t, cmd.Run(), "failed to run command: %s", command) +} + +func patchResource(t *testing.T, clientset *kubernetes.Clientset, namespace, name, resourceType, patch string) { + var err error + switch resourceType { + case "deployments": + _, err = clientset.AppsV1().Deployments(namespace).Patch(context.TODO(), name, types.StrategicMergePatchType, []byte(patch), metav1.PatchOptions{}) + case "services": + _, err = clientset.CoreV1().Services(namespace).Patch(context.TODO(), name, types.StrategicMergePatchType, []byte(patch), metav1.PatchOptions{}) + } + require.NoError(t, err) +} + +func createObjectFromURL(t *testing.T, config string, url string) { + resp, err := http.Get(url) + require.NoError(t, err, "failed to fetch URL: %s", url) + defer resp.Body.Close() + body, err := io.ReadAll(resp.Body) + require.NoError(t, err, "failed to read response body from URL: %s", url) + t.Logf("Fetched YAML content from URL %s:\n%s", url, string(body)) + k8sClient, err := k8stest.NewK8sClient(config) + require.NoError(t, err, "failed to create Kubernetes client") + + // Use a YAML decoder to parse the content + decoder := yaml.NewYAMLOrJSONDecoder(bytes.NewReader(body), 4096) + for { + var doc map[string]interface{} + err := decoder.Decode(&doc) + if err == io.EOF { + break + } + require.NoError(t, err, "failed to decode YAML document") + if len(doc) == 0 { + continue + } + docBytes, err := sigsyaml.Marshal(doc) + require.NoError(t, err, "failed to marshal YAML document") + t.Logf("Creating object from document:\n%s", string(docBytes)) + _, err = k8stest.CreateObject(k8sClient, docBytes) + require.NoError(t, err, "failed to create object from document") + } +} + +func createNamespace(t *testing.T, clientset *kubernetes.Clientset, name string) { + ns := &v1.Namespace{ + ObjectMeta: metav1.ObjectMeta{ + Name: name, + }, + } + _, err := clientset.CoreV1().Namespaces().Create(context.TODO(), ns, metav1.CreateOptions{}) + require.NoError(t, err, "failed to create namespace %s", name) + + require.Eventually(t, func() bool { + _, err := clientset.CoreV1().Namespaces().Get(context.TODO(), name, metav1.GetOptions{}) + return err == nil + }, 1*time.Minute, 5*time.Second, "namespace %s is not available", name) +} + +func labelNamespace(t *testing.T, clientset *kubernetes.Clientset, name, key, value string) { + ns, err := clientset.CoreV1().Namespaces().Get(context.TODO(), name, metav1.GetOptions{}) + require.NoError(t, err) + if ns.Labels == nil { + ns.Labels = make(map[string]string) + } + ns.Labels[key] = value + _, err = clientset.CoreV1().Namespaces().Update(context.TODO(), ns, metav1.UpdateOptions{}) + require.NoError(t, err) +} + +func sendHTTPRequest(t *testing.T, client *http.Client, url, host, header, path string) { + req, err := http.NewRequest("GET", url, nil) + require.NoError(t, err) + req.Host = host + req.Header.Set("Host", header) + resp, err := client.Do(req) + require.NoError(t, err) + defer resp.Body.Close() + body, err := io.ReadAll(resp.Body) + require.NoError(t, err) + t.Logf("Response for %s: %s", path, string(body)) +} + +func sendWorkloadHTTPRequests(t *testing.T) { + resolveHost := "127.0.0.1" + // resolveHost := hostEndpoint(t) + resolveHeader := "httpbin.example.com:80" + + dialContext := func(ctx context.Context, network, addr string) (net.Conn, error) { + if addr == "httpbin.example.com:80" { + addr = resolveHost + ":80" + } + d := net.Dialer{} + return d.DialContext(ctx, network, addr) + } + + transport := &http.Transport{ + DialContext: dialContext, + } + + client := &http.Client{ + Transport: transport, + } + + requests := []struct { + url string + host string + header string + path string + }{ + {"http://httpbin.example.com/status/200", "httpbin.example.com", resolveHeader, "/status/200"}, + {"http://httpbin.example.com/status/404", "httpbin.example.com", resolveHeader, "/status/404"}, + {"http://httpbin.example.com/delay/1", "httpbin.example.com", resolveHeader, "/delay/0"}, + } + + for _, req := range requests { + sendHTTPRequest(t, client, req.url, req.host, req.header, req.path) + } +} + +func deleteObject(t *testing.T, k8sClient *k8stest.K8sClient, objYAML string) { + obj := &unstructured.Unstructured{} + err := yaml.Unmarshal([]byte(objYAML), obj) + require.NoError(t, err) + k8stest.DeleteObject(k8sClient, obj) +} + +func Test_IstioMetrics(t *testing.T) { + _ = setupOnce(t) + if os.Getenv("SKIP_TESTS") == "true" { + t.Log("Skipping tests as SKIP_TESTS is set to true") + return + } + + flakyMetrics := []string{"galley_validation_config_update_error"} // only shows up when config validation fails - removed if present when comparing + t.Run("istiod metrics captured", func(t *testing.T) { + testIstioMetrics(t, "testdata_istio/expected_istiod.yaml", "pilot_xds_pushes", flakyMetrics, true) + }) + + flakyMetrics = []string{"istio_agent_pilot_xds_expired_nonce"} + t.Run("istio ingress metrics captured", func(t *testing.T) { + testIstioMetrics(t, "testdata_istio/expected_istioingress.yaml", "istio_requests_total", flakyMetrics, true) + }) +} + +func testIstioMetrics(t *testing.T, expectedMetricsFile string, includeMetricName string, flakyMetricNames []string, ignoreLen bool) { + expectedMetrics, err := golden.ReadMetrics(expectedMetricsFile) + require.NoError(t, err) + + waitForMetrics(t, 2, istioMetricsConsumer) + + selectedMetrics := selectMetricSetWithTimeout(t, expectedMetrics, includeMetricName, istioMetricsConsumer, ignoreLen, 5*time.Minute, 30*time.Second) + if selectedMetrics == nil { + t.Error("No metric batch identified with the right metric count, exiting") + return + } + require.NotNil(t, selectedMetrics) + + if flakyMetricNames != nil { + removeFlakyMetrics(selectedMetrics, flakyMetricNames) + } + + var metricNames []string + for i := 0; i < expectedMetrics.ResourceMetrics().Len(); i++ { + for j := 0; j < expectedMetrics.ResourceMetrics().At(i).ScopeMetrics().Len(); j++ { + for k := 0; k < expectedMetrics.ResourceMetrics().At(i).ScopeMetrics().At(j).Metrics().Len(); k++ { + metric := expectedMetrics.ResourceMetrics().At(i).ScopeMetrics().At(j).Metrics().At(k) + metricNames = append(metricNames, metric.Name()) + } + } + } + + err = pmetrictest.CompareMetrics(expectedMetrics, *selectedMetrics, + pmetrictest.IgnoreTimestamp(), + pmetrictest.IgnoreStartTimestamp(), + pmetrictest.IgnoreScopeVersion(), + pmetrictest.IgnoreMetricValues(metricNames...), + pmetrictest.IgnoreMetricAttributeValue("host.name"), + pmetrictest.IgnoreMetricAttributeValue("http.scheme"), + pmetrictest.IgnoreMetricAttributeValue("k8s.pod.name"), + pmetrictest.IgnoreMetricAttributeValue("k8s.pod.uid"), + pmetrictest.IgnoreMetricAttributeValue("net.host.name"), + pmetrictest.IgnoreMetricAttributeValue("net.host.port"), + pmetrictest.IgnoreMetricAttributeValue("os.type"), + pmetrictest.IgnoreMetricAttributeValue("server.address"), + pmetrictest.IgnoreMetricAttributeValue("service.instance.id"), + pmetrictest.IgnoreMetricAttributeValue("service.name"), + pmetrictest.IgnoreMetricAttributeValue("url.scheme"), + pmetrictest.IgnoreResourceMetricsOrder(), + pmetrictest.IgnoreMetricsOrder(), + pmetrictest.IgnoreScopeMetricsOrder(), + pmetrictest.IgnoreMetricDataPointsOrder(), + pmetrictest.IgnoreMetricAttributeValue("event"), + pmetrictest.IgnoreSubsequentDataPoints(metricNames...), + ) + if err != nil && os.Getenv("UPDATE_EXPECTED_RESULTS") == "true" { + writeNewExpectedMetricsResult(t, expectedMetricsFile, selectedMetrics) + } + require.NoError(t, err) +} + +func selectMetricSetWithTimeout(t *testing.T, expected pmetric.Metrics, metricName string, metricSink *consumertest.MetricsSink, ignoreLen bool, timeout time.Duration, interval time.Duration) *pmetric.Metrics { + var selectedMetrics *pmetric.Metrics + require.Eventuallyf(t, func() bool { + for h := len(metricSink.AllMetrics()) - 1; h >= 0; h-- { + m := metricSink.AllMetrics()[h] + foundCorrectSet := false + OUTER: + for i := 0; i < m.ResourceMetrics().Len(); i++ { + 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() == metricName { + foundCorrectSet = true + break OUTER + } + } + } + } + if !foundCorrectSet { + continue + } + if ignoreLen || (m.ResourceMetrics().Len() == expected.ResourceMetrics().Len() && m.MetricCount() == expected.MetricCount()) { + selectedMetrics = &m + return true + } + } + return false + }, timeout, interval, "Failed to find the expected metric %s within the timeout period", metricName) + return selectedMetrics +} + +func removeFlakyMetrics(metrics *pmetric.Metrics, flakyMetrics []string) { + for i := 0; i < metrics.ResourceMetrics().Len(); i++ { + resourceMetrics := metrics.ResourceMetrics().At(i) + for j := 0; j < resourceMetrics.ScopeMetrics().Len(); j++ { + scopeMetrics := resourceMetrics.ScopeMetrics().At(j) + metricSlice := scopeMetrics.Metrics() + metricSlice.RemoveIf(func(metric pmetric.Metric) bool { + for _, flakyMetric := range flakyMetrics { + if metric.Name() == flakyMetric { + return true + } + } + return false + }) + } + } +} diff --git a/functional_tests/testdata_istio/expected_istiod.yaml b/functional_tests/testdata_istio/expected_istiod.yaml new file mode 100644 index 000000000..468b554af --- /dev/null +++ b/functional_tests/testdata_istio/expected_istiod.yaml @@ -0,0 +1,14332 @@ +resourceMetrics: + - resource: {} + scopeMetrics: + - metrics: + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_gc_gogc_percent + - gauge: + dataPoints: + - asDouble: 2.9842944e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_next_gc_bytes + - gauge: + dataPoints: + - asDouble: 2.94912e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_stack_sys_bytes + - gauge: + dataPoints: + - asDouble: 6.0183816e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_sys_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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: pilot_destrule_subsets + - name: pilot_pushcontext_init_seconds_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "9" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: pilot_pushcontext_init_seconds_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.0008269089999999999 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: pilot_pushcontext_init_seconds_bucket + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "9" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "9" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.01" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "9" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "9" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.5" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "9" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "9" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "3" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "9" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "5" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: pilot_virt_services + - name: pilot_xds_config_size_bytes_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.cluster.v3.Cluster + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "20" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.listener.v3.Listener + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "10" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.route.v3.RouteConfiguration + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: pilot_xds_config_size_bytes_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 195600 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.cluster.v3.Cluster + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 18567 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 168764 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.listener.v3.Listener + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 36069 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.route.v3.RouteConfiguration + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: pilot_xds_config_size_bytes_bucket + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.cluster.v3.Cluster + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "20" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.listener.v3.Listener + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "10" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.route.v3.RouteConfiguration + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.cluster.v3.Cluster + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "6" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.listener.v3.Listener + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.route.v3.RouteConfiguration + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "10000" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.cluster.v3.Cluster + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "20" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "10000" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "10" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "10000" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.listener.v3.Listener + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "10" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "10000" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.route.v3.RouteConfiguration + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "1e+06" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.cluster.v3.Cluster + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "20" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "1e+06" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "1e+06" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.listener.v3.Listener + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "10" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "1e+06" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.route.v3.RouteConfiguration + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "1e+07" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.cluster.v3.Cluster + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "20" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "1e+07" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "1e+07" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.listener.v3.Listener + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "10" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "1e+07" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.route.v3.RouteConfiguration + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "4e+06" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.cluster.v3.Cluster + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "20" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "4e+06" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "4e+06" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.listener.v3.Listener + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "10" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "4e+06" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.route.v3.RouteConfiguration + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "4e+07" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.cluster.v3.Cluster + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "20" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "4e+07" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "4e+07" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.listener.v3.Listener + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "10" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "4e+07" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: type.googleapis.com/envoy.config.route.v3.RouteConfiguration + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.35069696e+09 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: process_virtual_memory_bytes + - gauge: + dataPoints: + - asDouble: 403 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_goroutines + - gauge: + dataPoints: + - asDouble: 603840 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_mspan_sys_bytes + - name: grpc_server_handled_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 3 + attributes: + - key: grpc_code + value: + stringValue: OK + - key: grpc_method + value: + stringValue: CreateCertificate + - key: grpc_service + value: + stringValue: istio.v1.auth.IstioCertificateService + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: grpc_server_msg_received_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 3 + attributes: + - key: grpc_method + value: + stringValue: CreateCertificate + - key: grpc_service + value: + stringValue: istio.v1.auth.IstioCertificateService + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: pilot_proxy_convergence_time_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "19" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: pilot_proxy_convergence_time_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.017909348000000002 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: pilot_proxy_convergence_time_bucket + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "19" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "19" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "19" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.5" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "19" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "19" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "10" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "19" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "20" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "19" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "3" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "19" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "30" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "19" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "5" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: process_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1.88 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: endpoint_no_pod + - name: go_gc_duration_seconds_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "11" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_gc_duration_seconds_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.007345343 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 5.805e-05 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0" + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 8.7403e-05 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0.25" + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0.000390564 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0.5" + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0.000813624 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0.75" + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0.002663713 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "1" + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_gc_duration_seconds_quantile + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + - key: version + value: + stringValue: go1.23.2 + timeUnixNano: "1000000" + name: go_info + - gauge: + dataPoints: + - asDouble: 2.14726e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_alloc_bytes + - name: go_memstats_alloc_bytes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 8.290768e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.7395011557282062e+09 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_last_gc_time_seconds + - gauge: + dataPoints: + - asDouble: 2.94912e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_stack_inuse_bytes + - gauge: + dataPoints: + - asDouble: 16 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_sched_gomaxprocs_threads + - name: process_network_receive_bytes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 4.310034e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.542547e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_buck_hash_sys_bytes + - gauge: + dataPoints: + - asDouble: 18 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_threads + - name: grpc_server_started_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 3 + attributes: + - key: grpc_method + value: + stringValue: CreateCertificate + - key: grpc_service + value: + stringValue: istio.v1.auth.IstioCertificateService + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: pilot_endpoint_not_ready + - name: pilot_xds_pushes + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 14 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: cds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 20 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: eds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 14 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: lds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 10 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: rds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: sidecar_injection_success_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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 4.7382528e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_heap_sys_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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: pilot_conflict_outbound_listener_tcp_over_current_tcp + - name: sidecar_injection_requests_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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 264 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: scrape_samples_scraped + - name: citadel_server_csr_count + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 3 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 4.08016e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_gc_sys_bytes + - gauge: + dataPoints: + - asDouble: 3.594421e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_other_sys_bytes + - name: grpc_server_handling_seconds_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "3" + attributes: + - key: grpc_method + value: + stringValue: CreateCertificate + - key: grpc_service + value: + stringValue: istio.v1.auth.IstioCertificateService + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: grpc_server_handling_seconds_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.010504088 + attributes: + - key: grpc_method + value: + stringValue: CreateCertificate + - key: grpc_service + value: + stringValue: istio.v1.auth.IstioCertificateService + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: grpc_server_handling_seconds_bucket + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "3" + attributes: + - key: grpc_method + value: + stringValue: CreateCertificate + - key: grpc_service + value: + stringValue: istio.v1.auth.IstioCertificateService + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "3" + attributes: + - key: grpc_method + value: + stringValue: CreateCertificate + - key: grpc_service + value: + stringValue: istio.v1.auth.IstioCertificateService + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.005" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "3" + attributes: + - key: grpc_method + value: + stringValue: CreateCertificate + - key: grpc_service + value: + stringValue: istio.v1.auth.IstioCertificateService + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.01" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "3" + attributes: + - key: grpc_method + value: + stringValue: CreateCertificate + - key: grpc_service + value: + stringValue: istio.v1.auth.IstioCertificateService + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.025" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "3" + attributes: + - key: grpc_method + value: + stringValue: CreateCertificate + - key: grpc_service + value: + stringValue: istio.v1.auth.IstioCertificateService + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.05" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "3" + attributes: + - key: grpc_method + value: + stringValue: CreateCertificate + - key: grpc_service + value: + stringValue: istio.v1.auth.IstioCertificateService + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "3" + attributes: + - key: grpc_method + value: + stringValue: CreateCertificate + - key: grpc_service + value: + stringValue: istio.v1.auth.IstioCertificateService + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.25" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "3" + attributes: + - key: grpc_method + value: + stringValue: CreateCertificate + - key: grpc_service + value: + stringValue: istio.v1.auth.IstioCertificateService + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.5" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "3" + attributes: + - key: grpc_method + value: + stringValue: CreateCertificate + - key: grpc_service + value: + stringValue: istio.v1.auth.IstioCertificateService + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "3" + attributes: + - key: grpc_method + value: + stringValue: CreateCertificate + - key: grpc_service + value: + stringValue: istio.v1.auth.IstioCertificateService + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "10" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "3" + attributes: + - key: grpc_method + value: + stringValue: CreateCertificate + - key: grpc_service + value: + stringValue: istio.v1.auth.IstioCertificateService + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "2.5" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "3" + attributes: + - key: grpc_method + value: + stringValue: CreateCertificate + - key: grpc_service + value: + stringValue: istio.v1.auth.IstioCertificateService + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "5" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: pilot_eds_no_instances + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + - key: version + value: + stringValue: 1.24.2-7754674f65d38523e49b692cbb95a5bb1e2a93b8-Clean + timeUnixNano: "1000000" + name: pilot_info + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: pilot_no_ip + - name: pilot_proxy_queue_time_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "19" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: pilot_proxy_queue_time_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.0012341019999999997 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: pilot_proxy_queue_time_bucket + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "19" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "19" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "19" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.5" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "19" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "19" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "10" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "19" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "20" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "19" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "3" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "19" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "30" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "19" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "5" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: pilot_push_triggers + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: config + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 17 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: endpoint + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 3 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: proxy + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 2 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: secret + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: service + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 6 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: pilot_services + - name: pilot_xds_send_time_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "58" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: pilot_xds_send_time_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.002523044 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: pilot_xds_send_time_bucket + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "58" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "58" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.01" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "58" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "58" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "58" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "10" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "58" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "20" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "58" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "3" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "58" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "30" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "58" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "5" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 18 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: process_open_fds + - gauge: + dataPoints: + - asDouble: 1.0438656e+08 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: process_resident_memory_bytes + - name: sidecar_injection_time_seconds_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: sidecar_injection_time_seconds_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.011083862 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: sidecar_injection_time_seconds_bucket + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "10" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "20" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "3" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "30" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "5" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "60" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: galley_validation_passed + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 2 + attributes: + - key: group + value: + stringValue: networking.istio.io + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: resource + value: + stringValue: gateways + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + - key: version + value: + stringValue: v1 + timeUnixNano: "1000000" + - asDouble: 2 + attributes: + - key: group + value: + stringValue: networking.istio.io + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: resource + value: + stringValue: virtualservices + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + - key: version + value: + stringValue: v1 + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.9726336e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_heap_idle_bytes + - gauge: + dataPoints: + - asDouble: 494080 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_mspan_inuse_bytes + - gauge: + dataPoints: + - asDouble: 0.004737016 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: scrape_duration_seconds + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: cluster_type + value: + stringValue: local + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0 + attributes: + - key: cluster_type + value: + stringValue: remote + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istiod_managed_clusters + - name: pilot_inbound_updates + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 32 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: config + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 19 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: eds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 7 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: svc + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.73950088194e+09 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: process_start_time_seconds + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: process_virtual_memory_max_bytes + - name: webhook_patch_attempts_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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: name + value: + stringValue: sidecar-injector.istio.io + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 264 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: scrape_series_added + - name: galley_validation_config_updates + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: pilot_duplicate_envoy_clusters + - name: pilot_debounce_time_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: pilot_debounce_time_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1.6119405470000001 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: pilot_debounce_time_bucket + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.01" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "10" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "20" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "3" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "30" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "5" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: process_network_transmit_bytes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1.789884e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: grpc_server_msg_sent_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 3 + attributes: + - key: grpc_method + value: + stringValue: CreateCertificate + - key: grpc_service + value: + stringValue: istio.v1.auth.IstioCertificateService + - key: grpc_type + value: + stringValue: unary + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: process_max_fds + - gauge: + dataPoints: + - asDouble: 264 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: scrape_samples_post_metric_relabeling + - gauge: + dataPoints: + - asDouble: 2.7656192e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_heap_inuse_bytes + - gauge: + dataPoints: + - asDouble: 139140 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_heap_objects + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: pilot_dns_cluster_without_endpoints + - name: pilot_xds_expired_nonce + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: rds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: pilot_xds_push_time_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: cds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "20" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: eds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: lds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "10" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: rds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: pilot_xds_push_time_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.006902678999999998 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: cds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0.004398164 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: eds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0.006623958999999999 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: lds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0.002195599 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: rds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: pilot_xds_push_time_bucket + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: cds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "20" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: eds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: lds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "10" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: rds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.01" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: cds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "20" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.01" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: eds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.01" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: lds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "10" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.01" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: rds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: cds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "20" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: eds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: lds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "10" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "0.1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: rds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: cds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "20" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: eds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: lds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "10" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: rds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "10" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: cds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "20" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "10" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: eds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "10" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: lds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "10" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "10" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: rds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "20" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: cds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "20" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "20" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: eds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "20" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: lds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "10" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "20" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: rds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "3" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: cds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "20" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "3" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: eds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "3" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: lds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "10" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "3" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: rds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "30" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: cds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "20" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "30" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: eds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "30" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: lds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "10" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "30" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: rds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "5" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: cds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "20" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "5" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: eds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "14" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "5" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: lds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "10" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: le + value: + stringValue: "5" + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: rds + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 3.1531996383243966e+08 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: citadel_server_root_cert_expiry_seconds + - name: go_memstats_mallocs_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 652045 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: pilot_k8s_cfg_events + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: event + value: + stringValue: add + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: Gateway + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: event + value: + stringValue: add + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: VirtualService + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: event + value: + stringValue: delete + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: Gateway + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: event + value: + stringValue: delete + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: VirtualService + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: event + value: + stringValue: update + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: Gateway + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: event + value: + stringValue: update + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: VirtualService + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: pilot_vservice_dup_domain + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: up + - gauge: + dataPoints: + - asDouble: 8.32299008e+09 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_gc_gomemlimit_bytes + - gauge: + dataPoints: + - asDouble: 1.9718144e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_heap_released_bytes + - gauge: + dataPoints: + - asDouble: 2.054821214e+09 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: citadel_server_root_cert_expiry_timestamp + - name: citadel_server_success_cert_issuance_count + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 3 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: go_memstats_frees_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 512905 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 19200 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_mcache_inuse_bytes + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: component + value: + stringValue: pilot + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: tag + value: + stringValue: 1.24.2 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_build + - gauge: + dataPoints: + - asDouble: 367.066660025 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istiod_uptime_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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: pilot_conflict_inbound_listener + - gauge: + dataPoints: + - asDouble: 2.14726e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_heap_alloc_bytes + - gauge: + dataPoints: + - asDouble: 31200 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: go_memstats_mcache_sys_bytes + - name: pilot_k8s_reg_events + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 6 + attributes: + - key: event + value: + stringValue: add + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: EndpointSlice + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 7 + attributes: + - key: event + value: + stringValue: add + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: Namespaces + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: event + value: + stringValue: add + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: Nodes + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 15 + attributes: + - key: event + value: + stringValue: add + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: Pods + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 6 + attributes: + - key: event + value: + stringValue: add + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: Services + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 2 + attributes: + - key: event + value: + stringValue: delete + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: Pods + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 12 + attributes: + - key: event + value: + stringValue: update + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: EndpointSlice + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 3 + attributes: + - key: event + value: + stringValue: update + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: Namespaces + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: event + value: + stringValue: update + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: Nodes + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 26 + attributes: + - key: event + value: + stringValue: update + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: Pods + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: event + value: + stringValue: update + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: type + value: + stringValue: Services + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 2 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istiod-7b94d88c87-wxcxh + - key: k8s.pod.uid + value: + stringValue: 20d4551a-79ac-429a-b67d-6acf32eca2f8 + - key: net.host.name + value: + stringValue: 10.244.0.127 + - key: net.host.port + value: + stringValue: "15014" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.127 + - key: server.port + value: + stringValue: "15014" + - key: service.instance.id + value: + stringValue: 10.244.0.127:15014 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.127:15014 + - key: url.scheme + value: + stringValue: http + - key: version + value: + stringValue: 1.24.2 + timeUnixNano: "1000000" + name: pilot_xds + scope: {} diff --git a/functional_tests/testdata_istio/expected_istioingress.yaml b/functional_tests/testdata_istio/expected_istioingress.yaml new file mode 100644 index 000000000..9c44ddb64 --- /dev/null +++ b/functional_tests/testdata_istio/expected_istioingress.yaml @@ -0,0 +1,33394 @@ +resourceMetrics: + - resource: {} + scopeMetrics: + - metrics: + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + - key: version + value: + stringValue: go1.23.2 + timeUnixNano: "1000000" + name: istio_agent_go_info + - gauge: + dataPoints: + - asDouble: 3.2331016e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_memstats_sys_bytes + - name: envoy_cluster_update_no_rebuild + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_internal_redirect_failed_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_manager_cluster_updated_via_merge + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_listener_manager_listener_in_place_updated + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: istio_response_bytes_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: istio_response_bytes_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1395 + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 255 + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: istio_response_bytes_bucket + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "0.5" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "0.5" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1.8e+06" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1.8e+06" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "10" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "10" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "100" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "100" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "10000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "10000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "25" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "25" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "250" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "250" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "2500" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "2500" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "3.6e+06" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "3.6e+06" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "30000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "30000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "300000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "300000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "5" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "5" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "50" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "50" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "500" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "500" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "5000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "5000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "60000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "60000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "600000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "600000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_server_dynamic_unknown_fields + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_membership_degraded + - name: envoy_cluster_lb_subsets_removed + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_cx_max_duration_reached + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_rq_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_manager_cds_init_fetch_timeout + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_manager_cds_update_failure + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_manager_cluster_added + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 23 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_circuit_breakers_default_rq_retry_open + - name: istio_agent_go_memstats_alloc_bytes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 2.4758856e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: istio_agent_go_gc_duration_seconds_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "8" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: istio_agent_go_gc_duration_seconds_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.002773407 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0.000105178 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0" + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0.000236424 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0.25" + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0.000280435 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0.5" + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0.000487778 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "0.75" + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 0.000718342 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: quantile + value: + stringValue: "1" + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_gc_duration_seconds_quantile + - name: envoy_cluster_upstream_cx_destroy_local + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_rq_tx_reset + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_warming_state + - name: envoy_listener_manager_lds_update_duration_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_listener_manager_lds_update_duration_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1.05 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_listener_manager_lds_update_duration_bucket + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "4" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "0.5" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "4" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1.8e+06" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "10" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "100" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "10000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "25" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "250" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "2500" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "3.6e+06" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "30000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "300000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "5" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "50" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "500" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "5000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "60000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "600000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: istio_agent_go_memstats_frees_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 131417 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: istio_agent_process_cpu_seconds_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.45 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 23 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_manager_active_clusters + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_server_parent_connections + - name: envoy_cluster_lb_healthy_panic + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_membership_change + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_manager_cluster_modified + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: istio_requests_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 2 + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_http2_requests_rejected_with_underscores_in_headers + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_lb_local_cluster_not_ok + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_original_dst_host_invalid + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_cx_idle_timeout + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_rq_completed + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_rq_retry + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_server_envoy_bug_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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 31200 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_memstats_mcache_sys_bytes + - gauge: + dataPoints: + - asDouble: 3.9714816e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_process_resident_memory_bytes + - name: envoy_cluster_http2_dropped_headers_with_underscores + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_http2_tx_reset + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_update_failure + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_manager_cds_update_success + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 5 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 2 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_server_concurrency + - gauge: + dataPoints: + - asDouble: 2.3494656e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_memstats_heap_sys_bytes + - name: envoy_cluster_upstream_cx_destroy_remote + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_listener_manager_workers_started + - name: envoy_cluster_lb_zone_routing_sampled + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 7.782832e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_memstats_next_gc_bytes + - name: envoy_cluster_upstream_rq_maintenance_mode + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_server_live + - name: envoy_cluster_assignment_stale + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_http2_header_overflow + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 2.021332e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_server_version + - name: envoy_cluster_retry_or_shadow_abandoned + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_listener_manager_listener_removed + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_server_static_unknown_fields + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_http2_stream_refused_errors + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_lb_recalculate_zone_structures + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_cx_max_requests + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_cx_overflow + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_circuit_breakers_high_rq_open + - gauge: + dataPoints: + - asDouble: 1.671168e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_memstats_stack_sys_bytes + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_circuit_breakers_default_cx_open + - gauge: + dataPoints: + - asDouble: 3 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_listener_manager_total_listeners_active + - name: envoy_cluster_bind_errors + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_http2_rx_messaging_error + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_cx_http2_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_server_total_connections + - gauge: + dataPoints: + - asDouble: 19200 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_memstats_mcache_inuse_bytes + - name: istio_agent_xds_proxy_responses + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 22 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_assignment_use_cached + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_flow_control_drained_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_max_host_weight + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_upstream_cx_active + - gauge: + dataPoints: + - asDouble: 4741 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_server_stats_recent_lookups + - gauge: + dataPoints: + - asDouble: 4.15464e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_memstats_alloc_bytes + - gauge: + dataPoints: + - asDouble: 1.28210944e+09 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_process_virtual_memory_bytes + - name: envoy_cluster_upstream_rq_max_duration_reached + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_http2_outbound_frames_active + - name: envoy_cluster_http2_rx_reset + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_rq_per_try_timeout + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: up + - name: envoy_cluster_lb_subsets_fallback_panic + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_lb_zone_routing_cross_zone + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_cx_destroy_local_with_active_rq + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_listener_manager_lds_update_rejected + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: istio_agent_go_memstats_mallocs_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 149313 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 195840 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_memstats_mspan_sys_bytes + - name: envoy_cluster_update_empty + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.739503769364e+12 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_manager_cds_update_time + - gauge: + dataPoints: + - asDouble: 1.2582912e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_server_memory_heap_size + - name: envoy_cluster_http2_goaway_sent + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_http2_trailers + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_circuit_breakers_default_rq_open + - name: envoy_cluster_upstream_cx_http3_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.453341e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_memstats_buck_hash_sys_bytes + - name: envoy_cluster_upstream_cx_connect_fail + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_version + - gauge: + dataPoints: + - asDouble: 17896 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_memstats_heap_objects + - name: istio_agent_process_network_transmit_bytes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1.5174309e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_lb_zone_number_differs + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_update_success + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_cx_rx_bytes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 97656 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_rq_cancelled + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_listener_manager_listener_create_failure + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_server_debug_assertion_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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 4.171600156811157e+18 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_listener_manager_lds_version + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_server_state + - gauge: + dataPoints: + - asDouble: 498 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: scrape_samples_scraped + - gauge: + dataPoints: + - asDouble: 1.1681792e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_memstats_heap_released_bytes + - name: envoy_cluster_upstream_cx_close_notify + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_circuit_breakers_high_cx_open + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_membership_healthy + - name: envoy_cluster_upstream_rq_pending_failure_eject + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_circuit_breakers_high_cx_pool_open + - name: envoy_server_initialization_time_ms_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_server_initialization_time_ms_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 80.5 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_server_initialization_time_ms_bucket + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "0.5" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1.8e+06" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "10" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "100" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "10000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "25" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "250" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "2500" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "3.6e+06" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "30000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "300000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "5" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "50" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "500" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "5000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "60000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "600000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 4.15464e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_memstats_heap_alloc_bytes + - name: envoy_cluster_http2_metadata_empty_frames + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_rq_retry_limit_exceeded + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_server_dropped_stat_flushes + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_circuit_breakers_default_cx_pool_open + - name: envoy_listener_manager_lds_init_fetch_timeout + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_listener_manager_lds_update_attempt + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_server_watchdog_mega_miss + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: thread_name + value: + stringValue: main_thread + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: thread_name + value: + stringValue: worker_0 + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: thread_name + value: + stringValue: worker_1 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_upstream_cx_tx_bytes_buffered + - name: envoy_cluster_upstream_cx_destroy + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_cx_protocol_error + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_manager_cds_update_attempt + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 4.171600156811157e+18 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_manager_cds_version + - gauge: + dataPoints: + - asDouble: 59 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_goroutines + - name: envoy_cluster_upstream_flow_control_paused_reading_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_cx_length_ms_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_cx_length_ms_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_cx_length_ms_bucket + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "0.5" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1.8e+06" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "10" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "100" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "10000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "25" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "250" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "2500" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "3.6e+06" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "30000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "300000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "5" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "50" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "500" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "5000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "60000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "600000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_lb_zone_routing_all_directly + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_cx_connect_with_0_rtt + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_rq_pending_overflow + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_rq_retry_backoff_exponential + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_manager_cluster_updated + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 11 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_listener_manager_listener_modified + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_circuit_breakers_high_rq_pending_open + - gauge: + dataPoints: + - asDouble: 86094.617626789 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: resource_name + value: + stringValue: default + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_cert_expiry_seconds + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_gc_gomemlimit_bytes + - gauge: + dataPoints: + - asDouble: 0.744114454 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_startup_duration_seconds + - name: envoy_cluster_assignment_timeout_received + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.671168e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_memstats_stack_inuse_bytes + - gauge: + dataPoints: + - asDouble: 16 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_sched_gomaxprocs_threads + - name: istio_agent_outgoing_latency + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 8.732842 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: request_type + value: + stringValue: csr + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_default_total_match_count + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_lb_zone_no_capacity_left + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_cx_http1_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_listener_manager_lds_update_success + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 5 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_upstream_rq_active + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_listener_manager_total_listeners_draining + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_server_compilation_settings_fips_mode + - name: envoy_cluster_update_attempt + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_circuit_breakers_high_rq_retry_open + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_membership_excluded + - gauge: + dataPoints: + - asDouble: 1.739503769365e+12 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_listener_manager_lds_update_time + - gauge: + dataPoints: + - asDouble: 1.5671296e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_memstats_heap_idle_bytes + - name: envoy_cluster_upstream_cx_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_listener_manager_listener_create_success + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_http2_deferred_stream_close + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: component + value: + stringValue: proxy + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: tag + value: + stringValue: 1.24.2 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_build + - gauge: + dataPoints: + - asDouble: 1.7395039989916127e+09 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_memstats_last_gc_time_seconds + - gauge: + dataPoints: + - asDouble: 20 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_process_open_fds + - name: istio_agent_xds_proxy_requests + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 28 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_http2_inbound_empty_frames_flood + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_lb_subsets_selected + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_rq_retry_overflow + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_rq_rx_reset + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_listener_manager_lds_update_failure + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_process_max_fds + - name: envoy_cluster_upstream_cx_connect_timeout + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_rq_per_try_idle_timeout + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_rq_retry_success + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_listener_manager_total_listeners_warming + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_http2_streams_active + - name: istio_agent_process_network_receive_bytes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 9.441015e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_http2_inbound_priority_frames_flood + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.854307e+07 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_server_memory_physical_size + - name: istio_request_bytes_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: istio_request_bytes_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 220 + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 115.00000000000001 + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: istio_request_bytes_bucket + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "0.5" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "0.5" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1.8e+06" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1.8e+06" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "10" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "10" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "100" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "100" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "10000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "10000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "25" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "25" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "250" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "250" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "2500" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "2500" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "3.6e+06" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "3.6e+06" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "30000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "30000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "300000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "300000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "5" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "5" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "50" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "50" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "500" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "500" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "5000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "5000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "60000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "60000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "600000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "600000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_cx_destroy_remote_with_active_rq + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_listener_manager_listener_added + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 3 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_upstream_rq_pending_active + - gauge: + dataPoints: + - asDouble: 7.82336e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_memstats_heap_inuse_bytes + - gauge: + dataPoints: + - asDouble: 14 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_threads + - name: envoy_cluster_upstream_internal_redirect_succeeded_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 498 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: scrape_samples_post_metric_relabeling + - name: envoy_cluster_upstream_rq_pending_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_flow_control_resumed_reading_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_manager_update_out_of_merge_window + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.7395037492e+09 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_process_start_time_seconds + - name: envoy_cluster_http2_tx_flush_timeout + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_cx_tx_bytes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1.130914e+06 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_http2_outbound_control_frames_active + - gauge: + dataPoints: + - asDouble: 178240 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_memstats_mspan_inuse_bytes + - name: envoy_cluster_lb_subsets_created + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 300 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_server_uptime + - name: istio_agent_pilot_xds_send_time_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "2" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: istio_agent_pilot_xds_send_time_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0.000167632 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: istio_agent_pilot_xds_send_time_bucket + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "2" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "0.01" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "0.1" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "10" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "20" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "3" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "30" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "5" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 498 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: scrape_series_added + - name: envoy_cluster_http2_inbound_window_update_frames_flood + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_cx_connect_attempts_exceeded + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_cx_pool_overflow + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_membership_total + - gauge: + dataPoints: + - asDouble: 3.519184e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_memstats_gc_sys_bytes + - name: envoy_cluster_upstream_rq_timeout + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 17 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_upstream_cx_rx_bytes_buffered + - name: envoy_cluster_http2_headers_cb_no_stream + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_manager_update_merge_cancelled + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_circuit_breakers_default_rq_pending_open + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_server_days_until_first_cert_expiring + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_gc_gogc_percent + - name: envoy_cluster_manager_cluster_removed + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_rq_0rtt + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_server_seconds_until_first_ocsp_response_expiring + - name: istio_agent_scrapes_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 28 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_http2_outbound_control_flood + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: istio_request_duration_milliseconds_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: istio_request_duration_milliseconds_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 11.55 + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 7.05 + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: istio_request_duration_milliseconds_bucket + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "0.5" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "0.5" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1.8e+06" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1.8e+06" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "10" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "10" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "100" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "100" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "10000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "10000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "25" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "25" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "250" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "250" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "2500" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "2500" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "3.6e+06" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "3.6e+06" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "30000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "30000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "300000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "300000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "5" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "5" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "50" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "50" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "500" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "500" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "5000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "5000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "60000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "60000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "2" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "600000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "200" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: connection_security_policy + value: + stringValue: unknown + - key: destination_app + value: + stringValue: httpbin + - key: destination_principal + value: + stringValue: spiffe://cluster.local/ns/istio-workloads/sa/httpbin + - key: destination_service + value: + stringValue: httpbin.istio-workloads.svc.cluster.local + - key: destination_service_name + value: + stringValue: httpbin + - key: destination_service_namespace + value: + stringValue: istio-workloads + - key: destination_version + value: + stringValue: v1 + - key: destination_workload + value: + stringValue: httpbin + - key: destination_workload_namespace + value: + stringValue: istio-workloads + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "600000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: reporter + value: + stringValue: source + - key: request_protocol + value: + stringValue: http + - key: response_code + value: + stringValue: "404" + - key: response_flags + value: + stringValue: '-' + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: source_app + value: + stringValue: istio-ingressgateway + - key: source_principal + value: + stringValue: spiffe://cluster.local/ns/istio-system/sa/istio-ingressgateway-service-account + - key: source_workload + value: + stringValue: istio-ingressgateway + - key: source_workload_namespace + value: + stringValue: istio-system + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 1.965627e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_go_memstats_other_sys_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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: istio_agent_process_virtual_memory_max_bytes + - name: envoy_cluster_upstream_rq + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: response_code + value: + stringValue: "200" + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: response_code_class + value: + stringValue: 2xx + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_server_watchdog_miss + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: thread_name + value: + stringValue: main_thread + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: thread_name + value: + stringValue: worker_0 + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: thread_name + value: + stringValue: worker_1 + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_listener_manager_total_filter_chains_draining + - name: envoy_cluster_manager_cds_update_duration_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_manager_cds_update_duration_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 17.65 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_manager_cds_update_duration_bucket + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "0.5" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1.8e+06" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "4" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "10" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "100" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "10000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "25" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "250" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "2500" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "3.6e+06" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "30000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "300000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "3" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "5" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "50" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "500" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "5000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "60000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "5" + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "600000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_lb_zone_cluster_too_small + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_cx_destroy_with_active_rq + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_cx_none_healthy + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_http2_keepalive_timeout + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_internal_upstream_rq_completed + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_listener_manager_listener_stopped + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_manager_warming_clusters + - gauge: + dataPoints: + - asDouble: 0.005662 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: scrape_duration_seconds + - name: envoy_cluster_internal_upstream_rq + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 1 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: response_code + value: + stringValue: "200" + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asDouble: 1 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: response_code_class + value: + stringValue: 2xx + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_lb_subsets_fallback + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_flow_control_backed_up_total + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_http3_broken + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_lb_subsets_active + - name: envoy_cluster_upstream_cx_connect_ms_count + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_cx_connect_ms_sum + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 6.05 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_cx_connect_ms_bucket + sum: + aggregationTemporality: 2 + dataPoints: + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: +Inf + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "0.5" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1.8e+06" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "10" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "100" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "1000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "10000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "25" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "250" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "2500" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "3.6e+06" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "30000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "300000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "0" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "5" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "50" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "500" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "5000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "60000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + - asInt: "1" + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: le + value: + stringValue: "600000" + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_manager_cds_update_rejected + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_server_hot_restart_epoch + - gauge: + dataPoints: + - asDouble: 7.208384e+06 + attributes: + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_server_memory_allocated + - name: istio_agent_num_outgoing_requests + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: request_type + value: + stringValue: csr + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_http2_outbound_flood + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_cluster_upstream_rq_retry_backoff_ratelimited + sum: + aggregationTemporality: 2 + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - name: envoy_server_wip_protos + 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: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + isMonotonic: true + - gauge: + dataPoints: + - asDouble: 0 + attributes: + - key: cluster_name + value: + stringValue: xds-grpc + - key: host.name + value: + stringValue: kind-control-plane + - key: http.scheme + value: + stringValue: http + - key: k8s.cluster.name + value: + stringValue: dev-operator + - key: k8s.namespace.name + value: + stringValue: istio-system + - key: k8s.node.name + value: + stringValue: kind-control-plane + - key: k8s.pod.name + value: + stringValue: istio-ingressgateway-7fdf6cbb7b-g958p + - key: k8s.pod.uid + value: + stringValue: aef961e4-8928-448a-b330-dd8166ed51ec + - key: net.host.name + value: + stringValue: 10.244.0.145 + - key: net.host.port + value: + stringValue: "15020" + - key: os.type + value: + stringValue: linux + - key: server.address + value: + stringValue: 10.244.0.145 + - key: server.port + value: + stringValue: "15020" + - key: service.instance.id + value: + stringValue: 10.244.0.145:15020 + - key: service.name + value: + stringValue: prometheus_simple/10.244.0.145:15020 + - key: url.scheme + value: + stringValue: http + timeUnixNano: "1000000" + name: envoy_cluster_http2_pending_send_bytes + scope: {} diff --git a/functional_tests/testdata_istio/istio_values.yaml.tmpl b/functional_tests/testdata_istio/istio_values.yaml.tmpl new file mode 100644 index 000000000..084dfd0b1 --- /dev/null +++ b/functional_tests/testdata_istio/istio_values.yaml.tmpl @@ -0,0 +1,37 @@ +splunkObservability: + realm: CHANGEME + accessToken: CHANGEME + ingestUrl: {{ .IngestURL }} + apiUrl: {{ .ApiURL }} + +autodetect: + istio: true + +agent: + config: + service: + pipelines: + metrics: + receivers: + - receiver_creator + + controlPlaneMetrics: + apiserver: + enabled: false + controllerManager: + enabled: false + coredns: + enabled: false + etcd: + enabled: false + proxy: + enabled: false + scheduler: + enabled: false + + +clusterReceiver: + enabled: false + +environment: dev +clusterName: dev-operator diff --git a/functional_tests/testdata_istio/testobjects/1-serviceaccount.yaml b/functional_tests/testdata_istio/testobjects/1-serviceaccount.yaml new file mode 100644 index 000000000..19b70f282 --- /dev/null +++ b/functional_tests/testdata_istio/testobjects/1-serviceaccount.yaml @@ -0,0 +1,5 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + name: httpbin + namespace: istio-workloads diff --git a/functional_tests/testdata_istio/testobjects/2-service.yaml b/functional_tests/testdata_istio/testobjects/2-service.yaml new file mode 100644 index 000000000..8e1e28257 --- /dev/null +++ b/functional_tests/testdata_istio/testobjects/2-service.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Service +metadata: + name: httpbin + namespace: istio-workloads + labels: + app: httpbin + service: httpbin +spec: + ports: + - name: http + port: 8000 + targetPort: 8080 + selector: + app: httpbin diff --git a/functional_tests/testdata_istio/testobjects/3-deployment.yaml b/functional_tests/testdata_istio/testobjects/3-deployment.yaml new file mode 100644 index 000000000..3a9b54278 --- /dev/null +++ b/functional_tests/testdata_istio/testobjects/3-deployment.yaml @@ -0,0 +1,24 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: httpbin + namespace: istio-workloads +spec: + replicas: 1 + selector: + matchLabels: + app: httpbin + version: v1 + template: + metadata: + labels: + app: httpbin + version: v1 + spec: + serviceAccountName: httpbin + containers: + - image: docker.io/mccutchen/go-httpbin:v2.15.0 + imagePullPolicy: IfNotPresent + name: httpbin + ports: + - containerPort: 8080 diff --git a/functional_tests/testdata_istio/testobjects/gateway.yaml b/functional_tests/testdata_istio/testobjects/gateway.yaml new file mode 100644 index 000000000..66141bf9e --- /dev/null +++ b/functional_tests/testdata_istio/testobjects/gateway.yaml @@ -0,0 +1,15 @@ +apiVersion: networking.istio.io/v1 +kind: Gateway +metadata: + name: httpbin-gateway + namespace: istio-system +spec: + selector: + istio: ingressgateway + servers: + - port: + number: 80 + name: http + protocol: HTTP + hosts: + - "httpbin.example.com" diff --git a/functional_tests/testdata_istio/testobjects/virtualservice.yaml b/functional_tests/testdata_istio/testobjects/virtualservice.yaml new file mode 100644 index 000000000..9b1f8ccac --- /dev/null +++ b/functional_tests/testdata_istio/testobjects/virtualservice.yaml @@ -0,0 +1,23 @@ +apiVersion: networking.istio.io/v1 +kind: VirtualService +metadata: + name: httpbin + namespace: istio-system +spec: + hosts: + - "httpbin.example.com" + - "httpbin.istio-workloads.svc.cluster.local" + gateways: + - httpbin-gateway + - mesh + http: + - match: + - uri: + prefix: /status + - uri: + prefix: /delay + route: + - destination: + port: + number: 8000 + host: httpbin.istio-workloads.svc.cluster.local