Event Results |
Displays a chart of audited event results.
Hide Query Show Query log_source = "audit"
| timeChart(audit.msg.res)
| Time Chart |
Top 5 Users (Events) |
Displays a table of the top 5 system users and events using
audited event data.
Hide Query Show Query log_source = "audit"
| top(["audit.msg.acct"], limit=5, as=Events)
| rename("audit.msg.acct",as="Users")
| Table |
Event Types Descriptions |
Displays a table of event type descriptions using audit data.
Hide Query Show Query log_source = "audit"
| match(file="linux/system-logs/message-dictionary.csv", field=audit_type, column="MACRO NAME", include=[DESCRIPTION])
| groupBy(["audit_type",DESCRIPTION])
| rename("audit_type",as="Event Types")
| sort("Event Types")
| drop(["_count"])
| Table |
Top 10 Exec Commands |
Displays a list of the top ten audited executive commands.
Hide Query Show Query log_source = "audit"
| top(["audit.msg.exe"], as=Count, limit=10)
| rename("audit.msg.exe",as="Command")
| Table |
Event Types Breakdown |
Provides a pie chart of event types using audit data.
Hide Query Show Query log_source = "audit"
| top(["audit_type"])
| Pie Chart |
Number of Events (by host) |
Displays a chart of the number of events by host and limits
results to the first 10 entries.
Hide Query Show Query log_source = "audit"
| timeChart(series=@collect.host, limit=10)
| Time Chart |