Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 309 for Tracer (0.2 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheIO.kt

        private
        fun writeContextFor(
            encoder: Encoder,
            tracer: Tracer?,
            codecs: Codecs
        ) = writeContextFor(
            encoder,
            tracer,
            codecs.userTypesCodec()
        )
    
        private
        fun writeContextFor(
            encoder: Encoder,
            tracer: Tracer?,
            codec: Codec<Any?>
        ) = DefaultWriteContext(
            codec,
            encoder,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. src/runtime/trace/trace.go

    // file (trace.out).
    //
    //	go test -trace=trace.out
    //
    // This runtime/trace package provides APIs to add equivalent tracing
    // support to a standalone program. See the Example that demonstrates
    // how to use this API to enable tracing.
    //
    // There is also a standard HTTP interface to trace data. Adding the
    // following line will install a handler under the /debug/pprof/trace URL
    // to download a live trace:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. pkg/tracing/tracing.go

    const (
    	// instrumentationScope is the name of OpenTelemetry instrumentation scope
    	instrumentationScope = "istio.io/istio"
    )
    
    func tracer() traceapi.Tracer {
    	return otel.Tracer(instrumentationScope)
    }
    
    // Initialize starts the tracing provider. This must be called before any traces are created or traces will be discarded.
    // Returned is a shutdown function that should be called to ensure graceful shutdown.
    func Initialize() (func(), error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/filterlatency/filterlatency.go

    			httplog.AddKeyValue(ctx, fmt.Sprintf("fl_%s", fr.name), latency.String())
    		}
    	})
    }
    
    func trackStarted(handler http.Handler, tp trace.TracerProvider, name string, clock clock.PassiveClock) http.Handler {
    	// This is a noop if the tracing is disabled, since tp will be a NoopTracerProvider
    	tracer := tp.Tracer("k8s.op/apiserver/pkg/endpoints/filterlatency")
    	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		ctx := r.Context()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 04 01:19:55 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.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. pkg/bootstrap/config.go

    				option.StackDriverMaxEvents(getInt64ValueOrDefault(tracer.Stackdriver.MaxNumberOfMessageEvents, 200)))
    		case *meshAPI.Tracing_OpenCensusAgent_:
    			c := tracer.OpenCensusAgent.Context
    			opts = append(opts, option.OpenCensusAgentAddress(tracer.OpenCensusAgent.Address),
    				option.OpenCensusAgentContexts(c))
    		}
    
    		opts = append(opts, option.TracingTLS(config.Tracing.TlsSettings, metadata, isH2))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/fake_kuberuntime_manager.go

    	ctx := context.Background()
    	recorder := &record.FakeRecorder{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top