Skip to content

Commit f8cbaec

Browse files
Merge pull request #231042 from AbdullahBell/patch-60
DDoS Protection query metrics update
2 parents f4196ab + d540786 commit f8cbaec

File tree

1 file changed

+31
-1
lines changed

1 file changed

+31
-1
lines changed

articles/ddos-protection/diagnostic-logging.md

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,36 @@ In this guide, you'll learn how to configure Azure DDoS Protection diagnostic lo
5050
| Log Analytics Workspace | Select **myLogAnalyticsWorkspace**. |
5151

5252

53+
### 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+
5383
## Validate
5484
5585
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
71101
To learn how to configure attack alerts, continue to the next guide.
72102
73103
> [!div class="nextstepaction"]
74-
> [Configure DDoS protection alerts](alerts.md)
104+
> [Configure DDoS protection alerts](alerts.md)

0 commit comments

Comments
 (0)