Tim Fish
Tim Fish
I've opened a PR to add rate limiting for capturing caught exceptions. This should make it safe to enable for all: https://github.com/getsentry/sentry-javascript/pull/9102
You shouldn't need to manually set integrations since `captureAllExceptions` now defaults to true. You want to enable the `includeLocalVariables` init option: ```ts Sentry.init({ dsn: "https://[email protected]/0", includeLocalVariables: true, }); ```
There is rate-limiting for capturing of local variables for caught exceptions because each throw in your code causes the debugger to pause. The default limit is is 50 captures per...
`debug: true` simply enables console logging from the Sentry SDK.
Hi @ruohola, Can you open a new issue detailing which SDKs you're using and the details to reproduce!
We have integration tests that validate that local variables are correctly attached but they are only basic use cases and these might not cover everything. We're fetching the local variables...
> then they will get the correct stack trace Unless you attach a debugger, wont you only get stack traces for Rust panics? I've used the `crash-handler`, `minidumper` and `minidump-processor`...
v5.0.0 of the Electron SDK has now been released which uses v8 of the JavaScript SDKs with improved ESM support and no use of `dynamicRequire`. Feel free to open a...
My understanding was that tracing is not currently supported: https://github.com/robertcepa/toucan-js/issues/66
We capture local variables for the top 5 frames only for now: https://github.com/getsentry/sentry-javascript/blob/12a4fce26a3ae38741dae9c5c0f7e2290f40133e/packages/node/src/integrations/localvariables.ts#L430-L432 It might be worth us trying the inspector [experimental promises API](https://nodejs.org/api/inspector.html#promises-api) (Node v19+) where available to negate...