File tree 1 file changed +15
-0
lines changed
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -294,6 +294,8 @@ happens immediately that may result in a different response code (and message).
294
294
295
295
## Handling Errors
296
296
297
+ ### Server Errors
298
+
297
299
We ** highly encourage** that your SDK handle failures from the Sentry server
298
300
gracefully. Specifically, SDKs must honor the ` 429 ` status code and not attempt
299
301
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
328
330
server.
329
331
</Alert >
330
332
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
+
331
346
## Concurrency (Scope and Hubs)
332
347
333
348
SDKs are supposed to provide standardized concurrency handling through the
You can’t perform that action at this time.
0 commit comments