Replies: 1 comment 9 replies
-
Hey, to make sure that breadcrumbs are isolated, the use of the express request handler is required: const app = express();
Sentry.init({ dsn: "https://[email protected]/0" });
// The request handler must be the first middleware on the app
app.use(Sentry.Handlers.requestHandler()); To filter out breadcrumbs, you can use the
|
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, in my Node.js http server app i use
express
and@sentry/node
In Sentry, the error that relates to the processing of a specific incoming request contains a lot of breadcrumbs that relate to other incoming requests
How can i group breadcrumbs by incoming request to use the "Filter By" option in web view?
Beta Was this translation helpful? Give feedback.
All reactions