Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for telemetries (0.26 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. 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)
Back to top