Forum Discussion
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 for App gateway but I couldnt find it.
Any help would be appreciated.
Thanks
Jas
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?
2 Replies
- CliveWatsonFormer 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?
- jassmakhijaCopper 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