Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pilot_k8s_reg_events (0.24 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. 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)
Back to top