Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 80 for telemetry (0.17 sec)

  1. istioctl/pkg/precheck/precheck.go

    		"meshConfig.defaultConfig.tracer", "1.21",
    		"tracing is no longer by default enabled to send to 'zipkin.istio-system.svc'; "+
    			"follow https://istio.io/latest/docs/tasks/observability/distributed-tracing/telemetry-api/",
    		"1.21"))
    	return nil
    }
    
    func checkPassthroughTargetPorts(cli kube.CLIClient, messages *diag.Messages) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. pilot/pkg/xds/bench_test.go

    	},
    	{
    		Name:        "disabled",
    		OnlyRunType: v3.ListenerType,
    	},
    
    	{
    		Name:     "externalname",
    		Services: 100,
    	},
    
    	// Test usage of various APIs
    	{
    		Name:     "telemetry-api",
    		Services: 100,
    	},
    	{
    		Name:     "virtualservice",
    		Services: 100,
    	},
    	{
    		Name:        "authorizationpolicy",
    		Services:    100,
    		OnlyRunType: v3.ListenerType,
    	},
    	{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. pkg/model/proxy.go

    // that are consumed by Pilot from the parameters used only as part of the bootstrap. Fields used by bootstrap only
    // are consumed by Envoy itself, such as the telemetry filters.
    type BootstrapNodeMetadata struct {
    	NodeMetadata
    
    	// InstanceName is the short name for the workload instance (ex: pod name)
    	// replaces POD_NAME
    	InstanceName string `json:"NAME,omitempty"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/istio-performance-dashboard.json

    ...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  5. pkg/bootstrap/config.go

    	// Support multiple network interfaces, removing duplicates.
    	meta.InstanceIPs = removeDuplicates(options.InstanceIPs)
    
    	// Add STS port into node metadata if it is not 0. This is read by envoy telemetry filters
    	if options.StsPort != 0 {
    		meta.StsPort = strconv.Itoa(options.StsPort)
    	}
    	meta.EnvoyStatusPort = options.EnvoyStatusPort
    	meta.EnvoyPrometheusPort = options.EnvoyPrometheusPort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. Makefile.core.mk

    	# copy istio-discovery values, but apply some local customizations
    	cp manifests/charts/istio-control/istio-discovery/values.yaml manifests/charts/istiod-remote/
    	yq -i '.defaults.telemetry.enabled=false | .defaults.global.externalIstiod=true | .defaults.global.omitSidecarInjectorConfigMap=true | .defaults.pilot.configMap=false' manifests/charts/istiod-remote/values.yaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. pilot/pkg/xds/endpoints/endpoint_builder.go

    		},
    		HostIdentifier: &endpoint.LbEndpoint_Endpoint{
    			Endpoint: &endpoint.Endpoint{
    				Address: addr,
    			},
    		},
    		Metadata: &corev3.Metadata{},
    	}
    
    	// Istio telemetry depends on the metadata value being set for endpoints in the mesh.
    	// Istio endpoint level tls transport socket configuration depends on this logic
    	// Do not remove
    	var meta *model.EndpointMetadata
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. tests/integration/README.md

    [TestGrid](https://k8s-testgrid.appspot.com/istio-release) | A Kubernetes dashboard used for visualizing the status of the Prow jobs.
    
    Test suites are defined for each toplevel directory (such as `pilot` and `telemetry`), so any tests added to these directories will automatically be run in CI.
    
    If you need to add a new test suite, it can be added to the [job configuration](https://github.com/istio/test-infra/blob/master/prow/config/jobs/istio.yaml).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster.go

    	}
    	for _, instance := range instances {
    		// For service instances with the same port,
    		// we still need to capture all the instances on this port, as its required to populate telemetry metadata
    		// The first instance will be used as the "primary" instance; this means if we have an conflicts between
    		// Services the first one wins
    		port := int(instance.Port.TargetPort)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. pkg/kube/client.go

    	clientnetworkingbeta "istio.io/client-go/pkg/apis/networking/v1beta1"
    	clientsecurity "istio.io/client-go/pkg/apis/security/v1beta1"
    	clienttelemetry "istio.io/client-go/pkg/apis/telemetry/v1alpha1"
    	istioclient "istio.io/client-go/pkg/clientset/versioned"
    	istiofake "istio.io/client-go/pkg/clientset/versioned/fake"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/cluster"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
Back to top