tail()
Returns
Examples
# Get the 10 most recent GuardDuty findings (default n)
%ingest.source_type: "aws:guardduty"
| tail
# Get the last 50 login events and count them by user
eventName: "ConsoleLogin"
| tail 50
| groupbycount userIdentity.arn
# Get the 3 least frequent users by login count
eventName: "ConsoleLogin"
| groupbycount userIdentity.arn
| tail 3Last updated
Was this helpful?