Monday morning — what changed over the weekend
Nobody called you, but that doesn't mean things stayed quiet. Drift, ad-hoc fixes, EAT executions — you want a 30-second overview.
- Sidebar → Audit-log
- Filter: last 72h, grouped by event_type
- Click any drift_event row to see operator + reason
- Unexplained drift? → agent → Inventory → Restore
↳ Next month's Audit Pack contains the same overview, Ed25519-signed.
Same via API (sql) — for automation
SELECT a.hostname, l.event_type,
l.event_data->>'reason' AS reason,
u.email AS actor, l.created_at
FROM audit_log l
LEFT JOIN agents a ON a.id = l.agent_id
LEFT JOIN users u ON u.id = l.user_id
WHERE l.tenant_id = $1::UUID
AND l.created_at >= NOW() - INTERVAL '72 hours'
ORDER BY l.created_at DESC;