Audit Log
The audit log records changes made by members of your organization: project creation, member invitations, settings changes, and more.
Viewing the audit log
Go to Settings > Audit Log. The log shows:
- Timestamp: when the action occurred
- Actor: which user performed the action
- Action: what was done
- Target: which resource was affected
What is logged
| Category | Events |
|---|---|
| Members | Invite sent, invite accepted, member removed, role changed |
| Projects | Project created, project deleted, DSN created, DSN revoked |
| Settings | Organization settings changed, PII rules updated, alert rules created or deleted |
| Auth | Login success, login failure, password changed, OAuth provider connected |
Retention
Audit log entries are retained for 90 days by default. This is separate from event retention and is not configurable via RETENTION_DAYS.
Filtering
Use the filter controls to narrow by actor, action type, or date range. The audit log is read-only. Entries cannot be deleted.
Exporting
There is no built-in export. To export audit log data, query the Postgres database directly:
SELECT * FROM audit_log
WHERE created_at > NOW() - INTERVAL '30 days'
ORDER BY created_at DESC;