Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for randomSamplingPercentage (0.34 sec)

  1. pilot/pkg/model/telemetry.go

    		if m.CustomTags != nil {
    			for _, spec := range specs {
    				spec.CustomTags = m.CustomTags
    			}
    		}
    		if m.RandomSamplingPercentage != nil {
    			for _, spec := range specs {
    				spec.RandomSamplingPercentage = ptr.Of(m.RandomSamplingPercentage.GetValue())
    			}
    		}
    		if m.UseRequestIdForTraceSampling != nil {
    			for _, spec := range specs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    			v = AppendWarningf(v, "multiple providers is not currently supported")
    		}
    		v = AppendValidation(v, validateTelemetryProviders(l.Providers))
    		if l.RandomSamplingPercentage.GetValue() < 0 || l.RandomSamplingPercentage.GetValue() > 100 {
    			v = appendErrorf(v, "randomSamplingPercentage must be in range [0.0, 100.0]")
    		}
    		for name, tag := range l.CustomTags {
    			if name == "" {
    				v = appendErrorf(v, "tag name may not be empty")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    				Tracing: []*telemetry.Tracing{{}, {}},
    			},
    			"", "multiple tracing",
    		},
    		{
    			"bad randomSamplingPercentage",
    			&telemetry.Telemetry{
    				Tracing: []*telemetry.Tracing{{
    					RandomSamplingPercentage: &wrapperspb.DoubleValue{Value: 101},
    				}},
    			},
    			"randomSamplingPercentage", "",
    		},
    		{
    			"tracing with a good custom tag",
    			&telemetry.Telemetry{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                type: string
                            required:
                            - name
                            type: object
                          type: array
                        randomSamplingPercentage:
                          description: Controls the rate at which traffic will be selected
                            for tracing if no prior sampling decision has been made.
                          format: double
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  5. manifests/charts/base/crds/crd-all.gen.yaml

                                type: string
                            required:
                            - name
                            type: object
                          type: array
                        randomSamplingPercentage:
                          description: Controls the rate at which traffic will be selected
                            for tracing if no prior sampling decision has been made.
                          format: double
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                type: string
                            required:
                            - name
                            type: object
                          type: array
                        randomSamplingPercentage:
                          description: Controls the rate at which traffic will be selected
                            for tracing if no prior sampling decision has been made.
                          maximum: 100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
Back to top