SOLVED

Azure Log Analytics - HTTRequest traffic on Azure App Gateway

Copper Contributor

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

2 Replies
best response confirmed by jassmakhija (Copper Contributor)
Solution

@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?

Hi @CliveWatson ,

 

Thanks a lot for your answer. You are correct, App gateway is streaming logs to event hub.

 

Appreciate your help...

 

Thanks

Jas

1 best response

Accepted Solutions
best response confirmed by jassmakhija (Copper Contributor)
Solution

@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?

View solution in original post