Kusto Query LanguageMicrosoft SentinelSECURE

Detect Azure Monitor Agent Connector Failures In CommonSecurityLog

Description

This KQL query detects latest failure events per AMA connector failures in CommonSecurityLog in the last three days.

Risk

Failures in AMA connectors mean that no data is being ingested thus no potential alerts will be triggered.

Query

Microsoft Sentinel
Kusto
CommonSecurityLog
| where TimeGenerated > ago(3d)
| extend sent_by_ama = column_ifexists('CollectorHostName','')
| where isnotempty(sent_by_ama)
| where isnotempty(DeviceVendor)
| summarize LastLogReceived = max(TimeGenerated) by DeviceVendor, DeviceProduct
| project IsConnected = LastLogReceived > ago(3d), DeviceVendor, DeviceProduct
| where IsConnected == "false"

Leave a Reply

Your email address will not be published. Required fields are marked *