Forum Discussion
PedroNL
Aug 24, 2023Brass Contributor
Query for App Service and outbound IP Query
Right now I need help writing a Query that shows this: AzureDiagnostics | where ResourceProvider == "MICROSOFT.CDN" and Category == "FrontDoorAccessLog" clientIp, backendHostname This qu...
andersbe
Aug 24, 2023Copper Contributor
Hi,
I think you need to add "project infront of clientIp, backendHostname
AzureDiagnostics
| where ResourceProvider == "MICROSOFT.CDN" and Category == "FrontDoorAccessLog"
| project clientIp, backendHostname
I think you need to add "project infront of clientIp, backendHostname
AzureDiagnostics
| where ResourceProvider == "MICROSOFT.CDN" and Category == "FrontDoorAccessLog"
| project clientIp, backendHostname
- PedroNLAug 24, 2023Brass ContributorIs there a way to show egress traffic through frontdoor or do you need another Azure Product for that?