()
| 24 | type Engine struct{} |
| 25 | |
| 26 | func NewEngine() *Engine { |
| 27 | return &Engine{} |
| 28 | } |
| 29 | |
| 30 | // Compile parses and compiles a TraceQL query. Options specific to metrics queries are ignored. |
| 31 | func Compile(query string, opts ...CompileOption) (*RootExpr, SpansetFilterFunc, firstStageElement, secondStageElement, *FetchSpansRequest, error) { |
no outgoing calls