Luca Forstner

Results 720 comments of Luca Forstner

@samuelgoldenbaum can you try set up the SDK like it is recommended here: https://docs.sentry.io/platforms/javascript/guides/fastify/#configure It might be the case that `Sentry.init()` is running too late and isn't able to patch...

@enjoyjeremy-bc looking at this issue again I am not sure whether we should ignore it out of the box because it indeed highlights an issue with your application. If you...

@Bruno-DaSilva Thanks for the reports. We'll consider those before doing anything in the direction of enabling (or suggesting) by default.

> [open-telemetry/opentelemetry-js#4174](https://github.com/open-telemetry/opentelemetry-js/issues/4174) [DataDog/dd-trace-js@`master`/packages/datadog-esbuild/index.js](https://github.com/DataDog/dd-trace-js/blob/master/packages/datadog-esbuild/index.js?rgh-link-date=2024-03-14T16%3A42%3A22Z) I can imagine so many scenarios where this esbuild plugin will break.

@drewcorlin1 huh neat. Thanks for sharing. We'll definitely investigate also creating a plugin ourselves.

@Michsior14 you'll see it here! We haven't started working on anything.

Hi, there was a Chrome but some time ago that reported errors from the dev tools console to the global `onerror` causing them to be reported. They fixed it but...

I honestly can't think of a way to associate the two from just JS. We have CSP reporting but I don't think you can detect CSP issues with JS (?)....

@bitttttten this can happen if you throw a non-error (like an `Event` in this case) object inside an async context so that it bubbles up as unhandled promise rejection. The...

@bitttttten you could try adding logging statements to your code or `Sentry.addBreadcrumb()` to figure out what is going on before such events are used to reject. Unfortunately this is not...