Forum Discussion
Thomas Cox
Mar 01, 2023Copper Contributor
Microsoft Sentinel - See collected Event IDs per Computer
Hey! Whilst the Common Security Events (via AMA) collects a set number of Windows Security Event IDs: https://learn.microsoft.com/en-us/azure/sentinel/windows-security-event-id-reference I...
- Mar 02, 2023
An alternative method
SecurityEvent | summarize count_=dcount(EventID), Ids_=make_set(EventID) by Computer
Thomas Cox
Mar 01, 2023Copper Contributor
This might be the answer:
Security Event
| distinct Computer, EventID
Security Event
| distinct Computer, EventID
Clive_Watson
Mar 02, 2023Bronze Contributor
An alternative method
SecurityEvent
| summarize count_=dcount(EventID), Ids_=make_set(EventID) by Computer
- Thomas CoxMar 02, 2023Copper ContributorThat is much neater than having to stitch the data together! Thank you.