Skip to content

Commit d1bd6d0

Browse files
authored
Merge pull request #53133 from piotrgradzinski/patch-1
Condition fix in WAFlogQuery
2 parents 4b5a98c + 1fde711 commit d1bd6d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/web-application-firewall/afds/waf-front-door-monitor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The following example query obtains WAF logs on blocked requests:
3434
``` WAFlogQuery
3535
AzureDiagnostics
3636
| where ResourceType == "FRONTDOORS" and Category == "FrontdoorWebApplicationFirewallLog"
37-
| where action_name_s == "Block"
37+
| where action_s == "Block"
3838
3939
```
4040

0 commit comments

Comments
 (0)