Skip to content

Commit

Permalink
Update issue templates (#947)
Browse files Browse the repository at this point in the history
  • Loading branch information
abhahn committed Jun 22, 2024
1 parent e9c8954 commit f8c2a1a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <app name> --resource-group <resource group name> --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 <app name> --resource-group <rg name>
```

2. If the application is crashing after deployment, please share the application logs using the following az CLI command:
```
az webapp log tail --name <app name> --resource-group <resource group name>
```

**Additional context**
Add any other context about the problem here.

0 comments on commit f8c2a1a

Please sign in to comment.