Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for pilot_k8s_reg_events (0.39 sec)

  1. manifests/addons/dashboards/lib/queries.libsonnet

                sum by (type, event) (
                  rate(
                    pilot_k8s_reg_events{}
                  [$__rate_interval])
                )
              |||
            ),
            self.query(
              '{{event}} {{type}}',
              |||
                sum by (type, event) (
                  rate(
                    pilot_k8s_cfg_events{}
                  [$__rate_interval])
                )
              |||
            ),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/pilot-dashboard.gen.json

                   "legendFormat": "{{event}} {{type}}"
                },
                {
                   "datasource": {
                      "type": "prometheus",
                      "uid": "$datasource"
                   },
                   "expr": "sum by (type, event) (\n  rate(\n    pilot_k8s_cfg_events{}\n  [$__rate_interval])\n)",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/controller.go

    var log = istiolog.RegisterScope("kube", "kubernetes service registry controller")
    
    var (
    	typeTag  = monitoring.CreateLabel("type")
    	eventTag = monitoring.CreateLabel("event")
    
    	k8sEvents = monitoring.NewSum(
    		"pilot_k8s_reg_events",
    		"Events from k8s registry.",
    	)
    
    	// nolint: gocritic
    	// This is deprecated in favor of `pilot_k8s_endpoints_pending_pod`, which is a gauge indicating the number of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  4. samples/addons/grafana.yaml

    able"}},"pluginVersion":"v11.0.0","targets":[{"datasource":{"type":"prometheus","uid":"$datasource"},"expr":"sum by (type, event) (\n  rate(\n    pilot_k8s_reg_events{}\n  [$__rate_interval])\n)","legendFormat":"{{event}} {{type}}"},{"datasource":{"type":"prometheus","uid":"$datasource"},"expr":"sum by (type, event) (\n  rate(\n    pilot_k8s_cfg_events{}\n  [$__rate_interval])\n)","legendFormat":"{{event}} {{type}}"},{"datasource":{"type":"prometheus","uid":"$datasource"},"expr":"sum by (type) (\n...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/istio-mesh-dashboard.json

          "targets": [
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${datasource}"
              },
              "expr": "max(pilot_k8s_cfg_events{type=\"VirtualService\", event=\"add\"}) - (max(pilot_k8s_cfg_events{type=\"VirtualService\", event=\"delete\"}) or max(up * 0))",
              "format": "time_series",
              "intervalFactor": 1,
              "refId": "A"
            }
          ],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 02:28:01 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/crdclient/metrics.go

    package crdclient
    
    import (
    	"istio.io/istio/pkg/monitoring"
    )
    
    var (
    	typeTag  = monitoring.CreateLabel("type")
    	eventTag = monitoring.CreateLabel("event")
    
    	k8sEvents = monitoring.NewSum(
    		"pilot_k8s_cfg_events",
    		"Events from k8s config.",
    	)
    )
    
    func incrementEvent(kind, event string) {
    	k8sEvents.With(typeTag.Value(kind), eventTag.Value(event)).Increment()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 953 bytes
    - Viewed (0)
  7. tests/integration/telemetry/api/dashboard_test.go

    		true,
    	},
    	{
    		"istio-services-grafana-dashboards",
    		"istio-mesh-dashboard.json",
    		[]string{
    			"galley_",
    			"istio_tcp_",
    			"max(pilot_k8s_cfg_events{",
    		},
    		false,
    	},
    	{
    		"istio-services-grafana-dashboards",
    		"istio-service-dashboard.json",
    		[]string{
    			"istio_tcp_",
    		},
    		false,
    	},
    	{
    		"istio-services-grafana-dashboards",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    "null", "text": "N/A", "to": "null" } ], "sparkline": { "fillColor": "rgba(31, 118, 189, 0.18)", "full": false, "lineColor": "rgb(31, 120, 193)", "show": true }, "tableColumn": "", "targets": [ { "expr": "max(pilot_k8s_cfg_events{type=\"VirtualService\", event=\"add\"}) - (max(pilot_k8s_cfg_events{type=\"VirtualService\", event=\"delete\"}) or max(up * 0))", "format": "time_series", "intervalFactor": 1, "refId": "A" } ], "thresholds": "", "timeFrom": null, "timeShift": null, "title": "Virtual Services",...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top