Forum Discussion
sagarsetia2225
Jul 06, 2020Copper Contributor
Agent Health Status
Hello Team, What's the best way to check if MMA Agent on the host is able to communicate to Azure. Can I setup a query in Advanced Hunting to check if a server in a Device Group is not able to co...
Thijs Lecomte
Jul 06, 2020Bronze Contributor
You could check what the latest events are that were imported into MDATP.
DeviceEvents
| summarize max(Timestamp) by DeviceName
| where max_Timestamp < (now() - 5h)
DeviceEvents
| summarize max(Timestamp) by DeviceName
| where max_Timestamp < (now() - 5h)
- sagarsetia2225Jul 07, 2020Copper ContributorThanks Thijs, It worked.