You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I now have a thorough understanding of the STACKIT audit log data. Let me compile the comprehensive alert recommendations based on the actual data patterns observed.
Based on my thorough analysis of your STACKIT audit logs in logs-generic.otel-default from the last 24 hours (527 events, 10 users, 16 initiators, 14 distinct actions across 5 services), here are the alerts I recommend, organized by category:
π 1. Authentication & Identity Alerts
Alert
Rationale
Suggested Condition
Login without MFA
All 10 logins in the last 24h had mfa_performed: false. Alert if this is not expected.
stackit.action == "user.login-success" AND mfa_performed == "false"
Unusual Token Volume Spike
296 token issuances seen. Alert on sudden spikes above baseline.
Count of stackit.action == "user.token-success" per 15-min window exceeds 2Γ the rolling average
Login from New/Unexpected IP
20+ distinct IPs observed. Alert on logins from previously unseen IPs.
stackit.action == "user.login-success" from client.address not in a known allowlist
External IDP Logins
10 events used external_idp: true. Alert if external IDP usage is unexpected or should be monitored.
external_idp == "true" β any occurrence or above threshold
New User Login
Alert when a previously unseen email appears in login events.
stackit.action == "user.login-success" with email not seen in prior 30 days