get_trace
Return every span in a single trace (up to 10000), plus a trace summary.
Prefer correlate when investigating a trace — it returns the same spans plus correlated logs and metric exemplars in one call. Use get_trace only when you need the span tree alone and want to skip the log/exemplar lookup.
Spans come ordered by (timestamp, spanId) ascending; each carries parentSpanId so you can rebuild the tree. The summary gives root operation, span count, error count, total duration, and start time at a glance.
Returns spans' core fields by default; pass verbose=true to include their
attributes (flattened in, plus a resource object). Long string values are capped.
For raw columns or custom selection use run_sql.
Returns: traceId, traceUrl, rootOperation, spanCount, errorCount, totalDurationNanos, startTime, spans[], queryStats. traceUrl is a shareable Fixter UI link for this trace — attach it when citing the trace as evidence to the user.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| traceId | Yes | Lowercase hex trace id | |
| verbose | No | Return full spans incl. attributes and resource. Default false. |