Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for tracestate (0.12 sec)

  1. samples/bookinfo/src/details/details.rb

          'x-datadog-parent-id',
          'x-datadog-sampling-priority',
    
          # W3C Trace Context. Compatible with OpenCensusAgent and Stackdriver Istio
          # configurations.
          'traceparent',
          'tracestate',
    
          # Cloud trace context. Compatible with OpenCensusAgent and Stackdriver Istio
          # configurations.
          'x-cloud-trace-context',
    
          # Grpc binary trace context. Compatible with OpenCensusAgent nad
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. samples/bookinfo/src/reviews/reviews-application/src/main/java/application/rest/LibertyRestEndpoint.java

            "x-datadog-parent-id",
            "x-datadog-sampling-priority",
    
            // W3C Trace Context. Compatible with OpenCensusAgent and Stackdriver Istio
            // configurations.
            "traceparent",
            "tracestate",
    
            // Cloud trace context. Compatible with OpenCensusAgent and Stackdriver Istio
            // configurations.
            "x-cloud-trace-context",
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 15 22:25:32 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. samples/bookinfo/src/productpage/productpage.py

            'x-datadog-parent-id',
            'x-datadog-sampling-priority',
    
            # W3C Trace Context. Compatible with OpenCensusAgent and Stackdriver Istio
            # configurations.
            'traceparent',
            'tracestate',
    
            # Cloud trace context. Compatible with OpenCensusAgent and Stackdriver Istio
            # configurations.
            'x-cloud-trace-context',
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. src/runtime/tracestack.go

    	// pcBuf[1:] after inline expansion.
    	logicalStackSentinel = ^uintptr(0)
    )
    
    // traceStack captures a stack trace from a goroutine and registers it in the trace
    // stack table. It then returns its unique ID. If gp == nil, then traceStack will
    // attempt to use the current execution context.
    //
    // skip controls the number of leaf frames to omit in order to hide tracer internals
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/runtime/traceruntime.go

    	_ "unsafe" // for go:linkname
    )
    
    // gTraceState is per-G state for the tracer.
    type gTraceState struct {
    	traceSchedResourceState
    }
    
    // reset resets the gTraceState for a new goroutine.
    func (s *gTraceState) reset() {
    	s.seq = [2]uint64{}
    	// N.B. s.statusTraced is managed and cleared separately.
    }
    
    // mTraceState is per-M state for the tracer.
    type mTraceState struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  6. src/runtime/tracestatus.go

    Carlos Amedee <******@****.***> 1712158572 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/trace/trace.go

    const (
    	phaseDurationBegin = "B"
    	phaseDurationEnd   = "E"
    	phaseFlowStart     = "s"
    	phaseFlowEnd       = "f"
    
    	bindEnclosingSlice = "e"
    )
    
    var traceStarted atomic.Bool
    
    func getTraceContext(ctx context.Context) (traceContext, bool) {
    	if !traceStarted.Load() {
    		return traceContext{}, false
    	}
    	v := ctx.Value(traceKey{})
    	if v == nil {
    		return traceContext{}, false
    	}
    	return v.(traceContext), true
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. src/runtime/traceevent.go

    // stack takes a stack trace skipping the provided number of frames.
    // It then returns a traceArg representing that stack which may be
    // passed to write.
    func (tl traceLocker) stack(skip int) traceArg {
    	return traceArg(traceStack(skip, nil, tl.gen))
    }
    
    // startPC takes a start PC for a goroutine and produces a unique
    // stack ID for it.
    //
    // It then returns a traceArg representing that stack which may be
    // passed to write.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. src/runtime/runtime2.go

    	// current in-progress goroutine profile
    	goroutineProfiled goroutineProfileStateHolder
    
    	coroarg *coro // argument during coroutine transfers
    
    	// Per-G tracer state.
    	trace gTraceState
    
    	// Per-G GC state
    
    	// gcAssistBytes is this G's GC assist credit in terms of
    	// bytes allocated. If this is positive, then the G has credit
    	// to allocate gcAssistBytes bytes without assisting. If this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  10. src/runtime/trace.go

    				if s.g.m != nil {
    					ug.mid = int64(s.g.m.procid)
    				}
    				ug.status = readgstatus(s.g) &^ _Gscan
    				ug.waitreason = s.g.waitreason
    				ug.inMarkAssist = s.g.inMarkAssist
    				ug.stackID = traceStack(0, gp, gen)
    			}
    			resumeG(s)
    			casgstatus(me, _Gwaiting, _Grunning)
    		})
    		if ug.goid != 0 {
    			untracedGs = append(untracedGs, ug)
    		}
    	})
    
    	if !stopTrace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top