[analysis]
Queries normalized GliderTrace evidence events by session, kind, text, severity, and cursor.
Stored runtime sessions need query, comparison, and export tools so agents can work from bounded evidence.
The model can inspect, compare, and package evidence without rereading raw logs or artifacts.
Try it locally in the GliderTrace playground
| Name | Type | Required | Description |
|---|---|---|---|
| sessionId | string | Yes | Trace session id, for example trc_20260507_123044_ab12cd34. |
| kinds | json | No | Optional evidence kinds such as testFailure, exception, log, counter, process, artifact, or warning. |
| text | string | No | Optional case-insensitive text search across summary, message, test case, and stack frames. |
| minSeverity | string | No | Optional minimum severity: 'info', 'warning', 'error', or 'critical'. |
| limit | number | No | Maximum number of matching items to return. |
| cursor | string | No | Pagination cursor returned by a previous query. |
Find exception events in a session
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "trace_query_events",
"arguments": {
"sessionId": "trc_20260507_123044_ab12cd34",
"kinds": [
"exception"
]
}
}
}Returns matching normalized events, pagination cursor, severity counts, and artifact context.