You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(traces): add list_traces and get_trace endpoints
Expose trace listing with full filter/pagination support and
single-trace fetch via the public API, with corresponding Client
delegation, tests, and API reference docs.
|`session_id`| String | No | Filter by session ID |
538
+
|`from_timestamp`| Time | No | Filter traces after this time |
539
+
|`to_timestamp`| Time | No | Filter traces before this time |
540
+
|`order_by`| String | No | Order by field |
541
+
|`tags`| Array<String> | No | Filter by tags |
542
+
|`version`| String | No | Filter by version |
543
+
|`release`| String | No | Filter by release |
544
+
|`environment`| String | No | Filter by environment |
545
+
|`fields`| String | No | Comma-separated field groups to include (e.g. `"core,scores,metrics"`). Available: `core`, `io`, `scores`, `observations`, `metrics`. All fields returned if omitted. |
546
+
|`filter`| String | No | JSON string for advanced filtering |
0 commit comments