Forum Discussion

PedroNL's avatar
PedroNL
Brass Contributor
Aug 24, 2023

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 query isn't working.  I have a server that is using SSH and the logs there show stuff but I have a Front Door Globally and I need to see the logs there also.  What is the best method.

  • andersbe's avatar
    andersbe
    Copper Contributor
    Hi,
    I think you need to add "project infront of clientIp, backendHostname

    AzureDiagnostics
    | where ResourceProvider == "MICROSOFT.CDN" and Category == "FrontDoorAccessLog"
    | project clientIp, backendHostname
    • PedroNL's avatar
      PedroNL
      Brass Contributor
      Is there a way to show egress traffic through frontdoor or do you need another Azure Product for that?

Resources