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
@@ -153,19 +153,29 @@ The following table shows the values logged for each request:
153
153
| Property | Description |
154
154
| ------------- | ------------- |
155
155
| Action |Action taken on the request. Logs include requests with all actions. Metrics include requests with all actions except *Log*.|
156
-
|ClientIp| The IP address of the client that made the request. If there was an `X-Forwarded-For` header in the request, the client IP address is taken from that header field instead. |
156
+
|ClientIP| The IP address of the client that made the request. If there was an `X-Forwarded-For` header in the request, the client IP address is taken from that header field instead. |
157
157
| ClientPort | The IP port of the client that made the request. |
158
158
| Details | Additional details on the request, including any threats that were detected. <br />matchVariableName: HTTP parameter name of the request matched, for example, header names (up to 100 characters maximum).<br /> matchVariableValue: Values that triggered the match (up to 100 characters maximum). |
159
159
| Host | The `Host` header of the request. |
160
160
| Policy | The name of the WAF policy that processed the request. |
161
161
| PolicyMode | Operations mode of the WAF policy. Possible values are `Prevention` and `Detection`. |
162
162
| RequestUri | Full URI of the request. |
163
163
| RuleName | The name of the WAF rule that the request matched. |
164
-
|SocketIp| The source IP address seen by WAF. This IP address is based on the TCP session, and does not consider any request headers. |
164
+
|SocketIP| The source IP address seen by WAF. This IP address is based on the TCP session, and does not consider any request headers. |
165
165
| TrackingReference | The unique reference string that identifies a request served by Front Door. This value is sent to the client in the `X-Azure-Ref` response header. Use this field when searching for a specific request in the log. |
166
166
167
167
The following example query shows the requests that were blocked by the Front Door WAF:
168
168
169
+
::: zone pivot="front-door-standard-premium"
170
+
171
+
```kusto
172
+
AzureDiagnostics
173
+
| where ResourceProvider == "MICROSOFT.CDN" and Category == "FrontDoorWebApplicationFirewallLog"
174
+
| where action_s == "Block"
175
+
```
176
+
177
+
::: zone-end
178
+
169
179
::: zone pivot="front-door-classic"
170
180
171
181
```kusto
@@ -176,17 +186,41 @@ AzureDiagnostics
176
186
177
187
::: zone-end
178
188
189
+
The following shows an example log entry, including the reason that the request was blocked:
190
+
179
191
::: zone pivot="front-door-standard-premium"
180
192
181
-
```kusto
182
-
AzureDiagnostics
183
-
| where ResourceProvider == "MICROSOFT.CDN" and Category == "FrontDoorWebApplicationFirewallLog"
0 commit comments