From 04a29eea8fe64c3db4643c8ea1cb69a02054f077 Mon Sep 17 00:00:00 2001 From: Abigail Hartman Date: Fri, 21 Jun 2024 16:25:56 -0700 Subject: [PATCH] Update issue templates Added a few more pieces of useful information to request in the issue template. --- .github/ISSUE_TEMPLATE/bug_report.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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.