You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Query Azure DDOS Protection logs in log analytics workspace
54
+
55
+
For more information on log schemas, see [Monitoring Azure DDoS Protection](monitor-ddos-protection-reference.md#diagnostic-logs).
56
+
#### DDoSProtectionNotifications logs
57
+
58
+
1. Under the **Log analytics workspaces** blade, select your log analytics workspace.
59
+
60
+
1. Under **General**, select on **Logs**
61
+
62
+
1. In Query explorer, type in the following Kusto Query and change the time range to Custom and change the time range to last three months. Then hit Run.
63
+
64
+
```kusto
65
+
AzureDiagnostics
66
+
| where Category == "DDoSProtectionNotifications"
67
+
```
68
+
69
+
1. To view **DDoSMitigationFlowLogs** change the query to the following and keep the same time range and hit Run.
70
+
71
+
```kusto
72
+
AzureDiagnostics
73
+
| where Category == "DDoSMitigationFlowLogs"
74
+
```
75
+
76
+
1. To view **DDoSMitigationReports** change the query to the following and keep the same time range and hit Run.
77
+
78
+
```kusto
79
+
AzureDiagnostics
80
+
| where Category == "DDoSMitigationReports"
81
+
```
82
+
53
83
## Validate
54
84
55
85
1. In the search box at the top of the portal, enter **Monitor**. Select **Monitor** in the search results.
@@ -71,4 +101,4 @@ In this guide, you learned how to configure Azure DDoS Protection diagnostic log
71
101
To learn how to configure attack alerts, continue to the next guide.
0 commit comments