Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for Telemetries (0.31 sec)

  1. pkg/config/analysis/analyzers/testdata/telemetry-selector.yaml

              disabled: false
    ---
    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: dupe-1
      namespace: default
    spec:
      selector:
        matchLabels:
          app: reviews # Multiple telemetries have the same selector, should generate errors for both
      metrics:
        - providers:
            - name: prometheus
          overrides:
            - match:
                metric: ALL_METRICS
              disabled: false
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 06:56:06 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/telemetry/selector.go

    // Metadata implements Analyzer
    func (a *SelectorAnalyzer) Metadata() analysis.Metadata {
    	return analysis.Metadata{
    		Name: "telemetry.SelectorAnalyzer",
    		Description: "Validates that telemetries that define a selector " +
    			"match at least one pod, and that there aren't multiple telemetry resources that select overlapping pods",
    		Inputs: []config.GroupVersionKind{
    			gvk.Telemetry,
    			gvk.Pod,
    		},
    	}
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/telemetry-default-selector.yaml

        - name: prometheus
        overrides:
        - match:
            metric: ALL_METRICS
          disabled: false
    ---
    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: has-conflict-1 # Both Telemetries in this namespace omit workload selector, so they are in conflict
      namespace: ns2
    spec:
      metrics:
      - providers:
        - name: prometheus
        overrides:
        - match:
            metric: ALL_METRICS
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 06:56:06 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. pilot/pkg/model/telemetry.go

    	// its class and protocol. This is protected by mu.
    	// Currently, this only applies to metrics, but a similar concept can likely be applied to logging and
    	// tracing for performance.
    	// The computedMetricsFilters lifetime is bound to the Telemetries object. During a push context
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. pilot/pkg/model/telemetry_test.go

    	environment := &Environment{
    		ConfigStore: store,
    		Watcher:     mesh.NewFixedWatcher(m),
    	}
    	telemetries := getTelemetries(environment)
    
    	ctx := NewPushContext()
    	ctx.Mesh = m
    	return telemetries, ctx
    }
    
    func newTelemetry(ns string, spec config.Spec) config.Config {
    	return config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.Telemetry,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  6. pkg/config/schema/gvr/resources.gen.go

    	Telemetry                      = schema.GroupVersionResource{Group: "telemetry.istio.io", Version: "v1alpha1", Resource: "telemetries"}
    	Telemetry_v1                   = schema.GroupVersionResource{Group: "telemetry.istio.io", Version: "v1", Resource: "telemetries"}
    	UDPRoute                       = schema.GroupVersionResource{Group: "gateway.networking.k8s.io", Version: "v1alpha2", Resource: "udproutes"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. tests/integration/helm/install_test.go

    			if err == nil {
    				t.Error("Did not receive an error while applying extended Telemetry resource with stable admission policy")
    			} else {
    				msg := fmt.Sprintf(expectedErrorPrefix, "telemetries.telemetry.istio.io")
    				if !strings.Contains(err.Error(), msg) {
    					t.Errorf("Expected error %q to contain %q", err.Error(), msg)
    				}
    			}
    		}, ""))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. pkg/config/schema/kubeclient/resources.gen.go

    		}
    	case gvr.Telemetry:
    		l = func(options metav1.ListOptions) (runtime.Object, error) {
    			return c.Istio().TelemetryV1alpha1().Telemetries(opts.Namespace).List(context.Background(), options)
    		}
    		w = func(options metav1.ListOptions) (watch.Interface, error) {
    			return c.Istio().TelemetryV1alpha1().Telemetries(opts.Namespace).Watch(context.Background(), options)
    		}
    	case gvr.UDPRoute:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. pilot/pkg/xds/debug.go

    	}
    	writeJSON(w, info, req)
    }
    
    // AuthorizationDebug holds debug information for authorization policy.
    type TelemetryDebug struct {
    	Telemetries *model.Telemetries `json:"telemetries"`
    }
    
    func (s *DiscoveryServer) telemetryz(w http.ResponseWriter, req *http.Request) {
    	proxyID, con := s.getDebugConnection(req)
    	if proxyID != "" && con == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  10. pkg/config/schema/collections/collections.agent.gen.go

    		ValidateProto: validation.ValidateSidecar,
    	}.MustBuild()
    
    	Telemetry = resource.Builder{
    		Identifier: "Telemetry",
    		Group:      "telemetry.istio.io",
    		Kind:       "Telemetry",
    		Plural:     "telemetries",
    		Version:    "v1alpha1",
    		VersionAliases: []string{
    			"v1",
    		},
    		Proto: "istio.telemetry.v1alpha1.Telemetry", StatusProto: "istio.meta.v1alpha1.IstioStatus",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top