Audit Logs
The Audit Logs screen (/audit-logs) is the forensic view: every tool call and every important system event.
Columns
| Column | Content |
|---|---|
| Timestamp | ISO 8601 in the user’s timezone. |
| Instance | Instance slug as a clickable badge. |
| Tool | Tool name in monospace. |
| Action | What the tool did (create, update, delete, read). |
| Details | First 200 chars of the input or summary; click to expand. |
| Duration | Tool execution time in ms. |
| Status | success or error, with a check or X icon. |
Filters
- Instance dropdown — filter to one instance.
- Tool dropdown — populated from the actual tools that have produced log entries (so the list is always relevant).
- Search — free-text search over the details column, debounced.
- Date range — last 24 h, 7 days, 30 days, custom.
Stats cards
Three stats cards at the top:
- Total entries in the current filter set.
- Error count — entries with
status = error. - Error rate — derived percentage.
Expandable rows
Click any row to expand it. The expanded view shows:
- Full input JSON.
- Full output JSON (or error message).
- Conversation id (clickable, jumps to Conversations).
- Trace id (if LangSmith is enabled).
Pagination
30 entries per page. Use the prev/next buttons at the bottom or jump pages with the input.
Export
The audit-logs page does not ship an Export CSV button today. To extract entries, query the audit_logs table directly or use the /api/audit-logs endpoint with your filter parameters.
Last updated on