Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for telemetry (0.46 sec)

  1. pilot/pkg/model/telemetry_logging_test.go

    					},
    				},
    			},
    		},
    	}
    	empty := &tpb.Telemetry{
    		AccessLogging: []*tpb.AccessLogging{{}},
    	}
    	defaultJSON := &tpb.Telemetry{
    		AccessLogging: []*tpb.AccessLogging{
    			{
    				Providers: []*tpb.ProviderRef{
    					{
    						Name: "envoy-json",
    					},
    				},
    			},
    		},
    	}
    	disabled := &tpb.Telemetry{
    		AccessLogging: []*tpb.AccessLogging{
    			{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crdclient/types.gen.go

    	case gvk.Telemetry:
    		oldRes := &apiistioioapitelemetryv1alpha1.Telemetry{
    			ObjectMeta: origMeta,
    			Spec:       *(orig.Spec.(*istioioapitelemetryv1alpha1.Telemetry)),
    		}
    		modRes := &apiistioioapitelemetryv1alpha1.Telemetry{
    			ObjectMeta: modMeta,
    			Spec:       *(mod.Spec.(*istioioapitelemetryv1alpha1.Telemetry)),
    		}
    		patchBytes, err := genPatchBytes(oldRes, modRes, typ)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.BoolValue enabled = 1;
    }
    
    // Controls telemetry configuration
    message TelemetryConfig {
      // Controls whether telemetry is exported for Pilot.
      google.protobuf.BoolValue enabled = 1;
    
      // Configuration for Telemetry v2.
      TelemetryV2Config v2 = 3;
    }
    
    // Controls whether pilot will configure telemetry v2.
    message TelemetryV2Config {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/sidecar_simulation_test.go

    					t.Errorf("%v: expected endpoints %v, got %v", cname, tt.clusters[cname], got)
    				}
    				gotTelemetry := extractClusterMetadataServices(t, c)
    				if !reflect.DeepEqual(tt.telemetry[cname], gotTelemetry) {
    					t.Errorf("%v: expected telemetry services %v, got %v", cname, tt.telemetry[cname], gotTelemetry)
    				}
    
    				// simulate an actual call, this ensures we are aligned with the inbound listener configuration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_test.go

    		},
    	},
    	{
    		Meta: config.Meta{Name: uuid.NewString(), Namespace: "istio-system", GroupVersionKind: gvk.Telemetry},
    		Spec: &telemetry.Telemetry{
    			Metrics: []*telemetry.Metrics{{Providers: []*telemetry.ProviderRef{{Name: "prometheus"}}}},
    		},
    	},
    }
    
    func TestOutboundFilters(t *testing.T) {
    	mc := mesh.DefaultMeshConfig()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context.go

    	// are no authorization policies in the cluster.
    	AuthzPolicies *AuthorizationPolicies `json:"-"`
    
    	// Telemetry stores the existing Telemetry resources for the cluster.
    	Telemetry *Telemetries `json:"-"`
    
    	// ProxyConfig stores the existing ProxyConfig resources for the cluster.
    	ProxyConfigs *ProxyConfigs `json:"-"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  7. tests/integration/ambient/baseline_test.go

    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/pkg/util/sets"
    	"istio.io/istio/tests/common/jwt"
    	"istio.io/istio/tests/integration/security/util/reachability"
    	util "istio.io/istio/tests/integration/telemetry"
    )
    
    const (
    	templateFile = "manifests/charts/istio-control/istio-discovery/files/waypoint.yaml"
    )
    
    func IsL7() echo.Checker {
    	return check.Each(func(r echot.Response) error {
    		// TODO: response headers?
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  8. pkg/workloadapi/workload.pb.go

    	Node string `protobuf:"bytes,9,opt,name=node,proto3" json:"node,omitempty"`
    	// CanonicalName for the workload. Used for telemetry.
    	CanonicalName string `protobuf:"bytes,10,opt,name=canonical_name,json=canonicalName,proto3" json:"canonical_name,omitempty"`
    	// CanonicalRevision for the workload. Used for telemetry.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  9. istioctl/pkg/describe/describe.go

    	if !labels.HasCanonicalServiceName(pod.Labels) {
    		fmt.Fprintf(writer, "Suggestion: add required service name label for Istio telemetry. "+
    			"See %s.\n", url.DeploymentRequirements)
    	}
    	if !labels.HasCanonicalServiceRevision(pod.Labels) {
    		fmt.Fprintf(writer, "Suggestion: add required service revision label for Istio telemetry. "+
    			"See %s.\n", url.DeploymentRequirements)
    	}
    }
    
    func kname(meta metav1.ObjectMeta) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/route/route.go

    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/core/route/retry"
    	"istio.io/istio/pilot/pkg/networking/telemetry"
    	"istio.io/istio/pilot/pkg/networking/util"
    	authz "istio.io/istio/pilot/pkg/security/authz/model"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
Back to top