Skip to Content
Polyant is open source under AGPL-3.0 — star us on GitHub.
Admin PanelAudit Logs

Audit Logs

The Audit Logs screen (/audit-logs) is the forensic view: every tool call and every important system event.

Columns

ColumnContent
TimestampISO 8601 in the user’s timezone.
InstanceInstance slug as a clickable badge.
ToolTool name in monospace.
ActionWhat the tool did (create, update, delete, read).
DetailsFirst 200 chars of the input or summary; click to expand.
DurationTool execution time in ms.
Statussuccess 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