trace_query_events

[analysis]

Queries normalized GliderTrace evidence events by session, kind, text, severity, and cursor.

Why this tool exists

Stored runtime sessions need query, comparison, and export tools so agents can work from bounded evidence.

How it helps the agent

The model can inspect, compare, and package evidence without rereading raw logs or artifacts.

Try it locally in the GliderTrace playground

Parameters

NameTypeRequiredDescription
sessionIdstringYesTrace session id, for example trc_20260507_123044_ab12cd34.
kindsjsonNoOptional evidence kinds such as testFailure, exception, log, counter, process, artifact, or warning.
textstringNoOptional case-insensitive text search across summary, message, test case, and stack frames.
minSeveritystringNoOptional minimum severity: 'info', 'warning', 'error', or 'critical'.
limitnumberNoMaximum number of matching items to return.
cursorstringNoPagination cursor returned by a previous query.

Examples

Find exception events in a session

Request
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "trace_query_events",
    "arguments": {
      "sessionId": "trc_20260507_123044_ab12cd34",
      "kinds": [
        "exception"
      ]
    }
  }
}

Response Notes

Returns matching normalized events, pagination cursor, severity counts, and artifact context.

↑/↓ NavigateEnter OpenSpace Expand