azureazure-container-apps

How can I troubleshoot requests to an Azure Container App?


I have a Container App which I want to scale down when unused. The Container App receives one request every five minutes, meaning that it is never scaled down. I want to find out where the request is coming from.

Sources I have ruled out:

I have checked the following log sources, none have any relevant events at the expected timestamps:

I have managed to figure out where the request came from. It was from an internal service that, due to a recent private DNS zone reconfiguration, hit the Container App from within the virtual network instead of going through the Application Gateway. Thinking of that was mainly luck, and I would still like to know where to find the tools for proper troubleshooting.


Solution

  • Diagnosing Unexpected Requests Keeping an Azure Container App Scaled Up

    Continuing from the comments mentioned, glad to know the solution approach shared was works for you.

    In order to make a track and diagnose the requests, keeping an Azure container app scaled up while enabled diagnostics in Azure Monitor is an important step. With this, the collections of system logs can be allowed.

    Refer: https://learn.microsoft.com/en-us/azure/azure-monitor/essentials/diagnostic-settings

    If the Container app is deployed in a VNET and NSG Flow logs in Azure Network Watcher can help you capture network traffic, Application Insights Request Telemetry gives deeper insights into incoming requests, capturing details such as IP addresses, request paths, and dependencies.

    Refer:

    https://learn.microsoft.com/en-us/azure/azure-monitor/app/app-insights-overview

    https://learn.microsoft.com/en-us/azure/network-watcher/nsg-flow-logs-overview

    So ContainerAppIngressLogs_CL and ContainerAppSystemLogs_CL in Log Analytics Workspace helps to pinpoint request origins, whether from an internal service, an external probe.

    By leveraging a combination of Azure Monitor, Network Watcher, and Application Insights, it becomes possible to systematically track request patterns and optimize scaling behavior.