Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for pilot_k8s_reg_events (0.47 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
Back to top