Audit Logs
View OAuth event history and system activity
Audit Logs Coming Soon
Audit logs are being collected in the database. The viewer interface will be added in a future update.
View Logs Manually (Database Query)
-- View recent OAuth events SELECT tenant_id, event_type, status, error_message, created_at FROM oauth_audit_log ORDER BY created_at DESC LIMIT 50; -- Filter by tenant SELECT * FROM oauth_audit_log WHERE tenant_id = 'YOUR-TENANT-ID' ORDER BY created_at DESC; -- Filter by event type SELECT * FROM oauth_audit_log WHERE event_type = 'token_refresh' AND status = 'failure' ORDER BY created_at DESC;