MCPcopy
hub / github.com/grafana/tempo / NeedsFullTrace

Method NeedsFullTrace

pkg/traceql/ast.go:67–74  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

65}
66
67func (r *RootExpr) NeedsFullTrace() bool {
68 for _, e := range r.Pipeline.Elements {
69 if NeedsFullTrace(e) {
70 return true
71 }
72 }
73 return false
74}
75
76func newRootExpr(e PipelineElement) *RootExpr {
77 p, ok := e.(Pipeline)

Callers 3

setTraceQLWeightMethod · 0.80
TestNeedsFullTraceFunction · 0.80

Calls 1

NeedsFullTraceFunction · 0.85

Tested by 1

TestNeedsFullTraceFunction · 0.64