Skip to content

Commit 01d43e5

Browse files
committed
feat(develop): Add clarification for capturing internal exceptions in SDKs
1 parent 2417118 commit 01d43e5

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

develop-docs/sdk/overview.mdx

+15
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,8 @@ happens immediately that may result in a different response code (and message).
294294

295295
## Handling Errors
296296

297+
### Server Errors
298+
297299
We **highly encourage** that your SDK handle failures from the Sentry server
298300
gracefully. Specifically, SDKs must honor the `429` status code and not attempt
299301
sending until the `Retry-After` kicks in. SDKs should drop events if Sentry is
@@ -328,6 +330,19 @@ Retrying too often may cause further rate limiting or blocking by the Sentry
328330
server.
329331
</Alert>
330332

333+
### SDK Errors
334+
335+
We try our best to make our SDKs error-free. We are an exception monitoring service after all
336+
and throwing our own exceptions is awkward. However, if our SDKs do throw exceptions, we have to make
337+
sure we swallow them gracefully and emit an error level log describing the failure.
338+
339+
As a **design principle**, we never capture Sentry events for exceptions happening within our SDKs.
340+
This includes user-defined callbacks and hooks such as `before_send`, `traces_sampler` and so on.
341+
342+
The main justification for this is that we are already in an event capturing flow where the scope has been applied
343+
and capturing another event at that point in the lifecycle would lead to undefined behavior. In the worst case,
344+
we could create a busy loop of creating and sending events repeatedly till the system crashes.
345+
331346
## Concurrency (Scope and Hubs)
332347

333348
SDKs are supposed to provide standardized concurrency handling through the

0 commit comments

Comments
 (0)