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:
Windows security event sets that can be sent to Microsoft Sentinel | Microsoft Learn
Is there a way to see which computers are sending which event IDs as part of a wider SecurityEvents query? It's easy enough to pull back Event IDs being collected:
SecurityEvent
| summarize count() by Activity
Any pointers would be appreciated!
An alternative method
SecurityEvent | summarize count_=dcount(EventID), Ids_=make_set(EventID) by Computer
- Thomas CoxCopper ContributorThis might be the answer:
Security Event
| distinct Computer, EventID- Clive_WatsonBronze Contributor
An alternative method
SecurityEvent | summarize count_=dcount(EventID), Ids_=make_set(EventID) by Computer
- Thomas CoxCopper ContributorThat is much neater than having to stitch the data together! Thank you.