Hello,
I am creating a canvas where I would like to show some anomalies in my cluster, and I wanna create something that show me if a new user in my AD has been created between midnight and 7am for example.
I have this SQL which allow me to see the number of users created, but I don't know how to add the timestamp condition:
SELECT COUNT(*) as user_added
FROM "winlogbeat-*"
WHERE "event.code" = 4720
Could you please help me ?
Thanks