diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index d65a1c64f9..0bc224065e 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -27,6 +27,22 @@ If applicable, add screenshots to help explain your problem. - Azure OpenAI model name and version (e.g. 'gpt-35-turbo-16k, version 0613') - Is chat history enabled? - Are you using data? If so, what data source? (e.g. Azure AI Search, Azure CosmosDB Mongo vCore, etc) +- Verify the startup command and runtime configuration by showing the output of the following az CLI command: +``` +az webapp show --name --resource-group --query "{startupCommand: siteConfig.appCommandLine, runtime: siteConfig.linuxFxVersion}" +``` + +**Logs** + +1. If the application deployment is failing, please share the deployment logs using the following az CLI command: +``` +az webapp log deployment show --name --resource-group +``` + +2. If the application is crashing after deployment, please share the application logs using the following az CLI command: +``` +az webapp log tail --name --resource-group +``` **Additional context** Add any other context about the problem here.