Skip to content

adding shouldHandleError to setupExpressErrorHandler in @sentry/node v8 #12715

Closed Answered by xmunoz
xmunoz asked this question in Q&A
Discussion options

You must be logged in to vote

Here is what I implemented in v8 to get this working the same way:

const sentry = Sentry.expressErrorHandler({
  shouldHandleError(error) {
    // Capture errors without HTTP status, >=400 errors
    if (!error.status || error.status >= 400) {
      return true;
    }

    return false;
  },
});
app.use(sentry);

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
1 reply
@mydea
Comment options

Answer selected by AbhiPrasad
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants