Forum Discussion
Anthony11
Mar 16, 2020Copper Contributor
Azure Logs - Group query result by last event by computer
Hello, I try to build a query that find the last state of a Windows service, for example 'WMI Performance Adapter' (See attached image). I would like to get only the last event/service state ...
- Mar 16, 2020
This would be an example using arg_max
Event | where EventID == 7036 | summarize count(), last_record = arg_max(TimeGenerated, *) by Computer
CliveWatson
Mar 16, 2020Former Employee
This would be an example using arg_max
Event
| where EventID == 7036
| summarize count(), last_record = arg_max(TimeGenerated, *) by Computer
- Anthony11Mar 16, 2020Copper Contributor
Many thanks, it works like a charm 🙂