Hi @schluckie you can check using a query like the one below and just change the ip address to match your conventions, or remove it entirely.
SELECT event_time, user_identity.email, source_ip_address, action_name, response.status_code
FROM system.access.audit
WHERE action_name IN ('login', 'logout', 'createToken', 'deleteToken')
AND (response.status_code >= 400 OR source_ip_address NOT LIKE 'xx.%')
AND event_date >= current_date() - INTERVAL 7 DAYS
ORDER BY event_time DESC