Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for enableTracing (0.35 sec)

  1. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

        "global.certificates" "meshConfig.certificates"
        "global.localityLbSetting" "meshConfig.localityLbSetting"
        "global.policyCheckFailOpen" "meshConfig.policyCheckFailOpen"
        "global.enableTracing" "meshConfig.enableTracing"
        "global.proxy.accessLogFormat" "meshConfig.accessLogFormat"
        "global.proxy.accessLogFile" "meshConfig.accessLogFile"
        "global.proxy.concurrency" "meshConfig.defaultConfig.concurrency"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/tracing_test.go

    		XdsNode: &core.Node{
    			Cluster: "fake-cluster",
    		},
    	}
    
    	return opts
    }
    
    func fakeOptsMeshAndTelemetryAPI(enableTracing bool) gatewayListenerOpts {
    	var opts gatewayListenerOpts
    	opts.push = &model.PushContext{
    		Mesh: &meshconfig.MeshConfig{
    			EnableTracing: enableTracing,
    			ExtensionProviders: []*meshconfig.MeshConfig_ExtensionProvider{
    				{
    					Name: "foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 20:47:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    		{"Values.global.localityLbSetting", "meshConfig.localityLbSetting", nil},
    		{"Values.global.policyCheckFailOpen", "meshConfig.policyCheckFailOpen", false},
    		{"Values.global.enableTracing", "meshConfig.enableTracing", false},
    		{"Values.global.proxy.accessLogFormat", "meshConfig.accessLogFormat", ""},
    		{"Values.global.proxy.accessLogFile", "meshConfig.accessLogFile", ""},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. tests/integration/telemetry/tracing/otelcollector/tracing_test.go

    }
    
    // TODO: convert test to Telemetry API for both scenarios
    func setupConfig(_ resource.Context, cfg *istio.Config) {
    	if cfg == nil {
    		return
    	}
    	cfg.ControlPlaneValues = `
    meshConfig:
      enableTracing: true
      extensionProviders:
      - name: test-otel
        opentelemetry:
          service: opentelemetry-collector.istio-system.svc.cluster.local
          port: 4317
      - name: test-otel-http
        opentelemetry:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:30 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. pkg/config/mesh/mesh.go

    func DefaultMeshConfig() *meshconfig.MeshConfig {
    	proxyConfig := DefaultProxyConfig()
    
    	// Defaults matching the standard install
    	// order matches the generated mesh config.
    	return &meshconfig.MeshConfig{
    		EnableTracing:               true,
    		AccessLogFile:               "",
    		AccessLogEncoding:           meshconfig.MeshConfig_TEXT,
    		AccessLogFormat:             "",
    		EnableEnvoyAccessLogService: false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. pkg/config/mesh/mesh_test.go

    	// Verify overrides
    	got, err = mesh.ApplyMeshConfigDefaults(`
    serviceSettings: 
      - settings:
          clusterLocal: true
        host:
          - "*.myns.svc.cluster.local"
    ingressClass: foo
    enableTracing: false
    trustDomainAliases: ["default", "both"]
    defaultServiceExportTo: 
    - "foo"
    outboundTrafficPolicy:
      mode: REGISTRY_ONLY
    clusterLocalNamespaces: 
    - "foons"
    defaultProviders:
      tracing: [foo]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. operator/cmd/mesh/install.go

    		Aliases: []string{"apply"},
    		// nolint: lll
    		Example: `  # Apply a default Istio installation
      istioctl install
    
      # Enable Tracing
      istioctl install --set meshConfig.enableTracing=true
    
      # Generate the demo profile and don't wait for confirmation
      istioctl install --set profile=demo --skip-confirmation
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/tracing.go

    	proxyCfg := proxy.Metadata.ProxyConfigOrDefault(push.Mesh.DefaultConfig)
    	// If there is no telemetry config defined, fallback to legacy mesh config.
    	if tracing == nil {
    		meshCfg := push.Mesh
    		if !meshCfg.EnableTracing {
    			log.Debug("No valid tracing configuration found")
    			return nil
    		}
    		// use the prior configuration bits of sampling and custom tags
    		h.Tracing = &hcm.HttpConnectionManager_Tracing{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/server.go

    	watchDebounceDelay = 100 * time.Millisecond
    )
    
    func init() {
    	// Disable gRPC tracing. It has performance impacts (See https://github.com/grpc/grpc-go/issues/695)
    	grpc.EnableTracing = false
    }
    
    // readinessProbe defines a function that will be used indicate whether a server is ready.
    type readinessProbe func() bool
    
    // Server contains the runtime configuration for the Pilot discovery service.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_test.go

    			if tc.envPilotSampling != 0.0 {
    				test.SetForTest(t, &features.TraceSampling, tc.envPilotSampling)
    			}
    
    			m := mesh.DefaultMeshConfig()
    			m.ProxyHttpPort = 15007
    			m.EnableTracing = true
    			m.DefaultConfig = &meshconfig.ProxyConfig{
    				Tracing: &meshconfig.Tracing{
    					CustomTags:       tc.in.CustomTags,
    					MaxPathTagLength: tc.in.MaxPathTagLength,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top