With the 8.10.0 release of our Remix SDK includes improvements to our tracing experience, gives better auto instrumentation for HTTP spans and improved SSR span parent child relationships. So you can get more data and more meaningful insights into your Remix applicaiton.
You can now simplify your server-side remix instrumentation by opting-in like this in your instrument.server.mjs
:
const Sentry = require('@sentry/remix');
Sentry.init({
dsn: YOUR_DSN
// opt-in to new auto instrumentation
autoInstrumentRemix: true,
});
With this setup, you do not need to add e.g. wrapExpressCreateRequestHandler
anymore. Additionally, the quality of the
captured data improves. The old way to use @sentry/remix
continues to work, but it is encouraged to use the new setup.
Express server adapter:
wrapExpressCreateRequestHandler
anymore even if you don't opt-in to autoInstrumentRemix
. wrapExpressCreateRequestHandler
is kept exported as a no-op function.requestHandler
spans as the root http.server spans
.When autoInstrumentRemix
is set to true
, this update replaces:
Fixed Backlogged Issues:
@sentry/remix
fails to propagate trace headers on error boundaries #9737