Description
Hey @nicohrubec - we are using GraphQL/NestJS and it looks like the newest version of the Sentry SDK for NestJS doesn't work for this. Specifically - I think it is somewhat related to this change regressing from #12128, or this comment #12128 (comment)
It doesn't look like there is a way to specify a different base filter in the new version of the NestJS/Sentry SDK like in
setupNestErrorHandler
- which btw, should that be considered deprecated?I'm wondering if
SentryGlobalFilter
needs to allow configuring a custom base filter here https://github.com/getsentry/sentry-javascript/blob/develop/packages/nestjs/src/setup.ts#L63 as you are able to do hereWith the current impl - we are consistently getting
{ "query": "query {\n triggerError\n}", "variables": {}, "errors": [ { "message": "response.status is not a function", "locations": [ { "line": 2, "column": 3 } ], "path": [ "triggerError" ] } ] }
Let me know if you'd like me to open a new issue for this!
Edit - I confirmed monkey-patching the
BaseExceptionFilter
toExternalExceptionFilter
fixed the issue on GraphQL requests for usdiff --git a/build/cjs/setup.js b/build/cjs/setup.js index 119735398bb49a01b1c941045a809edd45b32fdc..b06228c7d71288ef53f140de1890e9e4fefe7477 100644 --- a/build/cjs/setup.js +++ b/build/cjs/setup.js @@ -6,6 +6,7 @@ Object.defineProperty(exports, '__esModule', { value: true }); const common = require('@nestjs/common'); const core = require('@nestjs/core'); +const filter = require('@nestjs/core/exceptions/external-exception-filter'); const microservices = require('@nestjs/microservices'); const core$1 = require('@sentry/core'); const utils = require('@sentry/utils'); @@ -47,7 +48,7 @@ common.Injectable()(SentryTracingInterceptor); /** * Global filter to handle exceptions and report them to Sentry. */ -class SentryGlobalFilter extends core.BaseExceptionFilter { +class SentryGlobalFilter extends filter.ExternalExceptionFilter { static __initStatic2() {this.__SENTRY_INTERNAL__ = true;} /**
Metadata
Metadata
Assignees
Type
Projects
Status