Forum Discussion
MatRock345
Oct 05, 2021Copper Contributor
Specific query - question
Hi, I need assistance please. Given the following query: F5_CL | where TimeGenerated >= ago(3m) //change to required time | extend RawData=split(RawData, '##') //split all raw data to specific ...
CliveWatson
Oct 05, 2021Former Employee
Can you move this line BEFORE the summarize
| where responseStatus != "403" and responseStatus != "404" and responseStatus != "503" and remote_address != ""
then have this line afterwards the summarize?>
| where count_ > 150
| where responseStatus != "403" and responseStatus != "404" and responseStatus != "503" and remote_address != ""
then have this line afterwards the summarize?>
| where count_ > 150
- MatRock345Oct 06, 2021Copper Contributor
CliveWatson
Wow!
It works, Thanks!!