Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add troubleshooting information to the overview doc #871

Merged
merged 4 commits into from
Jun 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion docs/BindingsOverview.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
- [Broken connection retries](#broken-connection-retries)
- [Function exception retries](#function-exception-retries)
- [Lease Tables clean up](#lease-tables-clean-up)
- [Troubleshooting](#troubleshooting)

## Input Binding

Expand Down Expand Up @@ -266,4 +267,10 @@ END;
CLOSE LeaseTable_Cursor;

DEALLOCATE LeaseTable_Cursor;
```
```

## Troubleshooting

- When you’re running a function app, you want to be prepared for any issues that may arise, from 4xx errors to trigger failures. Azure Functions diagnostics is an intelligent and interactive experience to help you troubleshoot your function app with no configuration or extra cost. Follow the link for information on how to enable and use these [diagnostic capabilities](https://learn.microsoft.com/azure/azure-functions/functions-diagnostics).

- If you run into any performance related issues on your SQL Server, you can use the steps described in [Troubleshooting high CPU usage issues](https://learn.microsoft.com/troubleshoot/sql/database-engine/performance/troubleshoot-high-cpu-usage-issues) to troubleshoot.