Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for traceSampling (0.41 sec)

  1. pilot/pkg/networking/core/tracing.go

    	hcmTracing.RandomSampling = &xdstype.Percent{
    		Value: providerPercentage,
    	}
    }
    
    func proxyConfigSamplingValue(config *meshconfig.ProxyConfig) float64 {
    	// PILOT_TRACE_SAMPLING
    	sampling := features.TraceSampling
    
    	// Tracing from default_config
    	if config.Tracing != nil && config.Tracing.Sampling != 0.0 {
    		sampling = config.Tracing.Sampling
    
    		if sampling > 100.0 {
    			sampling = 1.0
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/values.yaml

        autoscaleBehavior: {}
        replicaCount: 1
        rollingMaxSurge: 100%
        rollingMaxUnavailable: 25%
        hub: ""
        tag: ""
        variant: ""
        # Can be a full hub/image:tag
        image: pilot
        traceSampling: 1.0
        # Resources for a small pilot install
        resources:
          requests:
            cpu: 500m
            memory: 2048Mi
        # Set to `type: RuntimeDefault` to use the default profile if available.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/values.yaml

        replicaCount: 1
        rollingMaxSurge: 100%
        rollingMaxUnavailable: 25%
    
        hub: ""
        tag: ""
        variant: ""
    
        # Can be a full hub/image:tag
        image: pilot
        traceSampling: 1.0
    
        # Resources for a small pilot install
        resources:
          requests:
            cpu: 500m
            memory: 2048Mi
    
        # Set to `type: RuntimeDefault` to use the default profile if available.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top