Description
Is there an existing issue for this?
- I have checked for existing issues https://github.com/getsentry/sentry-javascript/issues
- I have reviewed the documentation https://docs.sentry.io/
- I am using the latest SDK release https://github.com/getsentry/sentry-javascript/releases
How do you use Sentry?
Sentry Saas (sentry.io)
Which SDK are you using?
@sentry/node
SDK Version
8.7.0
Framework Version
10.0.0
Link to Sentry event
No response
SDK Setup
import * as Sentry from '@sentry/node';
import { nodeProfilingIntegration } from '@sentry/profiling-node';
// Ensure to call this before importing any other modules!
Sentry.init({
dsn: 'https://examplePublicKey@o0.ingest.sentry.io/0',
integrations: [
// Add our Profiling integration
nodeProfilingIntegration(),
],
// Add Performance Monitoring by setting tracesSampleRate
// We recommend adjusting this value in production
tracesSampleRate: 1.0,
// Set sampling rate for profiling
// This is relative to tracesSampleRate
profilesSampleRate: 1.0,
});
Steps to Reproduce
- Add 2 separate modules with each having their own exception filter
- Integrate sentry as said in the docs (https://docs.sentry.io/platforms/javascript/guides/nestjs/)
- Old exceptions are not being handled
Reproducable github code: https://github.com/CSenshi/nest-sentry-exception-filter-bug
Expected Result
After integration exceptions should be handled/filtered as they were before
Actual Result
Errors are not being handled and return
{"statusCode":500,"message":"Internal server error"}
Metadata
Metadata
Assignees
Type
Projects
Status
No status