-
-
Notifications
You must be signed in to change notification settings - Fork 210
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
Azure Functions (Isolated Worker/Out-of-Process) support #2346
Conversation
src/Sentry.AzureFunctions.Worker/Sentry.AzureFunctions.Worker.csproj
Outdated
Show resolved
Hide resolved
src/Sentry.AzureFunctions.Worker/Sentry.AzureFunctions.Worker.csproj
Outdated
Show resolved
Hide resolved
src/Sentry.AzureFunctions.Worker/SentryFunctionsWorkerMiddleware.cs
Outdated
Show resolved
Hide resolved
samples/Sentry.Samples.AzureFunctions.Worker/Sentry.Samples.AzureFunctions.Worker.csproj
Show resolved
Hide resolved
Discussed. Outcome:
|
@mattjohnsonpint, keeping it as a draft, but you can start tearing this apart 🙂 |
src/Sentry.AzureFunctions.Worker/SentryFunctionsWorkerMiddleware.cs
Outdated
Show resolved
Hide resolved
src/Sentry.AzureFunctions.Worker/SentryFunctionsWorkerMiddleware.cs
Outdated
Show resolved
Hide resolved
src/Sentry.AzureFunctions.Worker/SentryFunctionsWorkerMiddleware.cs
Outdated
Show resolved
Hide resolved
samples/Sentry.Samples.AzureFunctions.Worker/local.settings.json
Outdated
Show resolved
Hide resolved
src/Sentry.AzureFunctions.Worker/Sentry.AzureFunctions.Worker.csproj
Outdated
Show resolved
Hide resolved
This comment was marked as outdated.
This comment was marked as outdated.
5a8094b
to
f788fcd
Compare
CHANGELOG.md
Outdated
@@ -10,6 +10,7 @@ | |||
- Build .NET Standard 2.1 for Unity ([#2328](https://github.com/getsentry/sentry-dotnet/pull/2328)) | |||
- Add `RemoveExceptionFilter`, `RemoveEventProcessor` and `RemoveTransactionProcessor` extension methods on `SentryOptions` ([#2331](https://github.com/getsentry/sentry-dotnet/pull/2331)) | |||
- Include Dynamic Sampling Context with error events, when there's a transaction ([#2332](https://github.com/getsentry/sentry-dotnet/pull/2332)) | |||
- Azure Functions (Isolated Worker/Out-of-Process) support ([#2346](https://github.com/getsentry/sentry-dotnet/pull/2346)) |
This comment was marked as outdated.
This comment was marked as outdated.
Sorry, something went wrong.
src/Sentry.AzureFunctions.Worker/SentryFunctionsWorkerApplicationBuilderExtensions.cs
Outdated
Show resolved
Hide resolved
src/Sentry.AzureFunctions.Worker/Sentry.AzureFunctions.Worker.csproj
Outdated
Show resolved
Hide resolved
src/Sentry.AzureFunctions.Worker/SentryFunctionsWorkerApplicationBuilderExtensions.cs
Outdated
Show resolved
Hide resolved
Add API approval tests please. |
…ionBuilderExtensions.cs
939e9bc
to
74ca2c7
Compare
Adds support for Azure Functions (Isolated Worker/Out-of-Process SDK)
Closes #373