Skip to main content
Tracing supports a subset of the TraceQL query language by Grafana®. Currently, only basic filters are supported.

Examples

{ resource.service.name="<service_name>" && span.http.status_code >= 200 && span.http.status_code < 300 }
{ resource.service.name="<service_name>" && duration > 1s }
{ resource.service.name="<service_name>" && span.<attribute_name>=~"<string>.+" }

Limitations

The following features are not supported:
  • Pseudo-filters like span:childCount
  • Pipe operators and functions like select(), count()
  • Structural operators like >>, !<