Francesco Gringl-Novy
Francesco Gringl-Novy
> We also call server.use(Sentry.Handlers.requestHandler({ user: [ 'id', 'permissions' ] })); when creating the server. I removed this, and ensured we passed integrations: [ Sentry.requestDataIntegration({ include: { user: { id:...
Actually, we just figured out that we are not setting the transaction name correctly in http-only mode without performance instrumentation. See https://github.com/getsentry/sentry-javascript/pull/12071, this should be fixed in the next version!
Hey folks, We have since shipped some updates to this: 1. Transaction name (culprit) should be set correctly with just http integration now. 2. Performance integrations are correctly skipped if...
Hello, are you running your application in CJS or ESM? Meaning, what is it you do like `node src/my-app.js`? Or do you have a build step? If you are running...
Just to note these here too (this was figured out in https://github.com/getsentry/sentry-javascript/issues/12056), the warning will be incorrectly logged today if tracing is not enabled. We will fix this in an...
Could you share your `instrument.js` file - what do you have in there?
Could you share the gist of `src/config/index.js`? Is this importing other modules, or just exporting some static config stuff?
Ah, I see, we've seen this before, there seems to be a problem with date-fns: https://github.com/date-fns/date-fns/pull/3770 This is related/a "duplicate" of https://github.com/getsentry/sentry-javascript/issues/12154 then, which runs into the same problem. We'll...
If you use express 4x, and have top-level import, and you are still getting this warning: The most probable cause is that your app is running in ESM mode. When...
Generally, for now you do need to still add it manually in v8 (see: https://docs.sentry.io/platforms/javascript/guides/node/performance/database/#supported-platforms). Can you show your `Sentry.init()`, as well as the relevant parts from your `package.json`?