File tree Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ services: firewall
5
5
author : vhorne
6
6
ms.service : firewall
7
7
ms.topic : conceptual
8
- ms.date : 07/25 /2022
8
+ ms.date : 08/04 /2022
9
9
ms.author : victorh
10
10
---
11
11
@@ -93,7 +93,22 @@ New resource specific tables are now available in Diagnostic setting that allows
93
93
- [ Network rule aggregation log] ( /azure/azure-monitor/reference/tables/azfwnetworkruleaggregation ) - Contains aggregated Network rule log data for Policy Analytics.
94
94
- [ NAT rule aggregation log] ( /azure/azure-monitor/reference/tables/azfwnatruleaggregation ) - Contains aggregated NAT rule log data for Policy Analytics.
95
95
96
- By default, the new resource specific tables are disabled. Open a support ticket to enable the functionality in your environment.
96
+ By default, the new resource specific tables are disabled.
97
+
98
+ Run the following Azure PowerShell commands to enable Azure Firewall Structured logs:
99
+
100
+ ``` azurepowershell
101
+ Connect-AzAccount
102
+ Select-AzSubscription -Subscription "subscription_id or subscription_name"
103
+ Register-AzProviderFeature -FeatureName AFWEnableStructuredLogs -ProviderNamespace Microsoft.Network
104
+ Register-AzResourceProvider -ProviderNamespace Microsoft.Network
105
+ ```
106
+
107
+ Run the following Azure PowerShell command to turn off this feature:
108
+
109
+ ``` azurepowershell
110
+ Unregister-AzProviderFeature -FeatureName AFWEnableStructuredLogs -ProviderNamespace Microsoft.Network
111
+ ```
97
112
98
113
In addition, when setting up your log analytics workspace, you must select whether you want to work with the AzureDiagnostics table (default) or with Resource Specific Tables.
99
114
You can’t perform that action at this time.
0 commit comments