Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Telemetries (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/config/analysis/msg/messages.yaml

      - name: "ConflictingTelemetryWorkloadSelectors"
        code: IST0159
        level: Error
        description: "A Telemetry resource selects the same workloads as another Telemetry resource"
        template: "The Telemetries %v in namespace %q select the same workload pod %q, which can lead to undefined behavior."
        args:
          - name: conflictingTelemetries
            type: "[]string"
          - name: namespace
            type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/crdclient/types.gen.go

    			ObjectMeta: objMeta,
    			Spec:       *(cfg.Spec.(*sigsk8siogatewayapiapisv1alpha2.TLSRouteSpec)),
    		}, metav1.CreateOptions{})
    	case gvk.Telemetry:
    		return c.Istio().TelemetryV1alpha1().Telemetries(cfg.Namespace).Create(context.TODO(), &apiistioioapitelemetryv1alpha1.Telemetry{
    			ObjectMeta: objMeta,
    			Spec:       *(cfg.Spec.(*istioioapitelemetryv1alpha1.Telemetry)),
    		}, metav1.CreateOptions{})
    	case gvk.UDPRoute:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
Back to top