Hi @KE1980,
I think what you may be looking for is | where RequestUri_s !in('<not>'.'<this>','<word'>)
. See https://learn.microsoft.com/en-us/azure/data-explorer/kusto/query/inoperator for more info.
Regards,
Ryan
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi there,
I want to make a Query, on the Application Gateway and Front Door, shwoing 500 errors - but excluding 500 pages and certain pages/paths containing specific words.
Any good takes on how to do this?
Script that is being used on the AFD
AzureDiagnostics
| where ResourceProvider == "MICROSOFT.NETWORK" and Category == "FrontdoorAccessLog"
| where isReceivedFromClient_b == true
| where toint(httpStatusCode_s) >= 500
| extend ParsedUrl = parseurl(requestUri_s)
| summarize RequestCount = count() by Host = tostring(ParsedUrl.Host), Path = tostring(ParsedUrl.Path), StatusCode = httpStatusCode_s
| order by RequestCount desc
Thanks for help.
Hi @KE1980,
I think what you may be looking for is | where RequestUri_s !in('<not>'.'<this>','<word'>)
. See https://learn.microsoft.com/en-us/azure/data-explorer/kusto/query/inoperator for more info.
Regards,
Ryan