Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 341 for tracers (0.18 sec)

  1. src/runtime/trace/annotation.go

    	// can be used across trace enable/disable boundaries,
    	// which complicates the problem.
    	//
    	// For example, consider the following scenario:
    	//   - trace is enabled.
    	//   - trace.WithRegion is called, so a new context ctx
    	//     with a new region is created.
    	//   - trace is disabled.
    	//   - trace is enabled again.
    	//   - trace APIs with the ctx is called. Is the ID in the task
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. tests/integration/telemetry/tracing/zipkin/client_tracing_test.go

    						if err != nil {
    							return fmt.Errorf("cannot get traces from zipkin: %v", err)
    						}
    						if !tracing.VerifyEchoTraces(ctx, appNsInst.Name(), cluster.Name(), traces) {
    							return errors.New("cannot find expected traces")
    						}
    						return nil
    					}, retry.Delay(3*time.Second), retry.Timeout(80*time.Second))
    				})
    
    			}
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. samples/open-telemetry/tracing/README.md

    ```yaml
    spec:
      ports:
        - name: grpc-otlp
          port: 4317
          protocol: TCP
          targetPort: 4317
    ```
    
    Otherwise the traces may not be reported.
    
    ## Update mesh config
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLogging.java

         *
         * @return the set of filters to be used for sanitizing test stack traces
         */
        Set<TestStackTraceFilter> getStackTraceFilters();
    
        /**
         * Sets the set of filters to be used for sanitizing test stack traces.
         *
         * @param stackTraces the set of filters to be used for sanitizing test stack traces
         * @since 4.0
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. releasenotes/notes/drop-default-tracing.yaml

    upgradeNotes:
      - title: Default tracing to `zipkin.istio-system.svc` removed
        content: |
          In previous versions of Istio, tracing was automatically configured to send traces to `zipkin.istio-system.svc`.
          This default setting has been removed; users will need to explicitly configure where to send traces moving forward.
    
          `istioctl x precheck --from-version=1.21` can automatically detect if you may be impacted by this change.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 07 16:59:18 UTC 2024
    - 934 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    	Admission                  *AdmissionOptions
    	// API Server Egress Selector is used to control outbound traffic from the API Server
    	EgressSelector *EgressSelectorOptions
    	// Traces contains options to control distributed request tracing.
    	Traces *TracingOptions
    }
    
    func NewRecommendedOptions(prefix string, codec runtime.Codec) *RecommendedOptions {
    	sso := NewSecureServingOptions()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

            - --lightstepCacertPath
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetCacertPath }}"
          {{- else if eq .Values.global.proxy.tracer "zipkin" }}
            - --zipkinAddress
            - "{{ .ProxyConfig.GetTracing.GetZipkin.GetAddress }}"
          {{- else if eq .Values.global.proxy.tracer "datadog" }}
            - --datadogAgentAddress
            - "{{ .ProxyConfig.GetTracing.GetDatadog.GetAddress }}"
          {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.yaml

            - --lightstepCacertPath
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetCacertPath }}"
          {{- else if eq .Values.global.proxy.tracer "zipkin" }}
            - --zipkinAddress
            - "{{ .ProxyConfig.GetTracing.GetZipkin.GetAddress }}"
          {{- else if eq .Values.global.proxy.tracer "datadog" }}
            - --datadogAgentAddress
            - "{{ .ProxyConfig.GetTracing.GetDatadog.GetAddress }}"
          {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  9. src/internal/trace/version/version.go

    const headerFmt = "go 1.%d trace\x00\x00\x00"
    
    // ReadHeader reads the version of the trace out of the trace file's
    // header, whose prefix must be present in v.
    func ReadHeader(r io.Reader) (Version, error) {
    	var v Version
    	_, err := fmt.Fscanf(r, headerFmt, &v)
    	if err != nil {
    		return v, fmt.Errorf("bad file format: not a Go execution trace?")
    	}
    	if !v.Valid() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

            - --lightstepCacertPath
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetCacertPath }}"
          {{- else if eq .Values.global.proxy.tracer "zipkin" }}
            - --zipkinAddress
            - "{{ .ProxyConfig.GetTracing.GetZipkin.GetAddress }}"
          {{- else if eq .Values.global.proxy.tracer "datadog" }}
            - --datadogAgentAddress
            - "{{ .ProxyConfig.GetTracing.GetDatadog.GetAddress }}"
          {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top