Forum Discussion

jassmakhija's avatar
jassmakhija
Copper Contributor
Apr 03, 2020
Solved

Azure Log Analytics - HTTRequest traffic on Azure App Gateway

Hi,   I am very new to Azure Log Analytics. We have Azure App Gateway set up and an application deployed which is using that App gateway.   I am trying to find the http traffic logs in Azure Logs...
  • CliveWatson's avatar
    Apr 03, 2020

    jassmakhija 

     

     

    If you have told the Gateway to send its logs to Log Analytics?

    Then you should see the data in AzureDiagnostics table

     

    AzureDiagnostics
    | where ResourceProvider == "MICROSOFT.NETWORK" 
    | where ResourceType == "APPLICATIONGATEWAYS" 

     

    You may need to add a line (at the end), like 

    | search "http"

     

    to help filter into the results?

Resources