Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 203 for Tracer (0.14 sec)

  1. cmd/http-tracer.go

    	op = strings.Replace(op, "ReadinessCheckHandler", "health.Readiness", 1)
    	op = strings.Replace(op, "-fm", "", 1)
    	return op
    }
    
    // If trace is enabled, execute the request if it is traced by other handlers
    // otherwise, generate a trace event with request information but no response.
    func httpTracerMiddleware(h http.Handler) http.Handler {
    	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

        "global.tracer.lightstep.address" "meshConfig.defaultConfig.tracing.lightstep.address"
        "global.tracer.lightstep.accessToken" "meshConfig.defaultConfig.tracing.lightstep.accessToken"
        "global.tracer.zipkin.address" "meshConfig.defaultConfig.tracing.zipkin.address"
        "global.tracer.stackdriver.debug" "meshConfig.defaultConfig.tracing.stackdriver.debug"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/templates/configmap.yaml

          {{- end }}
          {{- if not (eq .Values.global.proxy.tracer "none") }}
          tracing:
          {{- if eq .Values.global.proxy.tracer "lightstep" }}
            lightstep:
              # Address of the LightStep Satellite pool
              address: {{ .Values.global.tracer.lightstep.address }}
              # Access Token used to communicate with the Satellite pool
              accessToken: {{ .Values.global.tracer.lightstep.accessToken }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. internal/grid/trace.go

    func (c *Connection) traceRequests(p *pubsub.PubSub[madmin.TraceInfo, madmin.TraceType]) {
    	c.trace = &tracer{
    		Publisher: p,
    		TraceType: madmin.TraceInternal,
    		Prefix:    "grid",
    		Local:     c.Local,
    		Remote:    c.Remote,
    		Subroute:  "",
    	}
    }
    
    // subroute adds a specific subroute to the request.
    func (c *tracer) subroute(subroute string) *tracer {
    	if c == nil {
    		return nil
    	}
    	c2 := *c
    	c2.Subroute = subroute
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/templates/configmap.yaml

          {{- end }}
          {{- if not (eq .Values.global.proxy.tracer "none") }}
          tracing:
          {{- if eq .Values.global.proxy.tracer "lightstep" }}
            lightstep:
              # Address of the LightStep Satellite pool
              address: {{ .Values.global.tracer.lightstep.address }}
              # Access Token used to communicate with the Satellite pool
              accessToken: {{ .Values.global.tracer.lightstep.accessToken }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/defaultCodeResolver.kt

            val tracer = ResolutionTracer(
                ExpressionResolverImpl(this, functionCallResolver),
                StatementResolverImpl(propertyAccessResolver, this, this),
                ErrorCollectorImpl()
            )
            statementResolver = tracer
            expressionResolver = tracer
            errorCollector = tracer
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Logging.kt

        val tracer = this.tracer
        return if (tracer == null) {
            writeAction()
        } else {
            val frameName = name()
            try {
                tracer.open(frameName)
                writeAction()
            } finally {
                tracer.close(frameName)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/helpers_test.go

    				match := verdictRegexp.FindStringSubmatch(rule)
    				verdict := match[1]
    
    				tracer.matches = append(tracer.matches, ruleObj.Rule)
    				tracer.outputs = append(tracer.outputs, strings.ToUpper(verdict))
    				return true
    
    			case returnRegexp.MatchString(rule):
    				// `^return$`
    				// Returns to the calling chain.
    				tracer.matches = append(tracer.matches, ruleObj.Rule)
    				return false
    
    			case dnatRegexp.MatchString(rule):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top