MSDN Docs

Azure App Service Troubleshooting

This guide helps you diagnose and resolve common issues you might encounter while running web apps, API apps, or mobile back‑ends on Azure App Service.

Common Issues

HTTP 502/503 Errors
Slow Startup

Diagnostic Tools

Azure provides a set of built‑in tools you can access from the portal or via CLI.

Sample Script – Retrieve Recent Logs

#!/bin/bash
RESOURCE_GROUP="MyRG"
APP_NAME="MyApp"
az webapp log tail --resource-group $RESOURCE_GROUP --name $APP_NAME
        

Further Reading