Forum Discussion
jassmakhija
Apr 03, 2020Copper Contributor
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...
- Apr 03, 2020
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?
CliveWatson
Apr 03, 2020Former Employee
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?
- jassmakhijaApr 03, 2020Copper Contributor
Hi CliveWatson ,
Thanks a lot for your answer. You are correct, App gateway is streaming logs to event hub.
Appreciate your help...
Thanks
Jas