@sentry/nextjs
Version:
Official Sentry SDK for Next.js
50 lines (41 loc) • 1.8 kB
JavaScript
import { browserTracingIntegration as browserTracingIntegration$1 } from '@sentry/react';
import { nextRouterInstrumentNavigation, nextRouterInstrumentPageLoad } from './routing/nextRoutingInstrumentation.js';
/**
* A custom browser tracing integration for Next.js.
*/
function browserTracingIntegration(
options = {},
) {
const browserTracingIntegrationInstance = browserTracingIntegration$1({
...options,
instrumentNavigation: false,
instrumentPageLoad: false,
onRequestSpanStart(...args) {
const [span, { headers }] = args;
// Next.js prefetch requests have a `next-router-prefetch` header
if (headers?.get('next-router-prefetch')) {
span?.setAttribute('http.request.prefetch', true);
}
return options.onRequestSpanStart?.(...args);
},
});
const { instrumentPageLoad = true, instrumentNavigation = true } = options;
return {
...browserTracingIntegrationInstance,
afterAllSetup(client) {
// We need to run the navigation span instrumentation before the `afterAllSetup` hook on the normal browser
// tracing integration because we need to ensure the order of execution is as follows:
// Instrumentation to start span on RSC fetch request runs -> Instrumentation to put tracing headers from active span on fetch runs
// If it were the other way around, the RSC fetch request would not receive the tracing headers from the navigation transaction.
if (instrumentNavigation) {
nextRouterInstrumentNavigation(client);
}
browserTracingIntegrationInstance.afterAllSetup(client);
if (instrumentPageLoad) {
nextRouterInstrumentPageLoad(client);
}
},
};
}
export { browserTracingIntegration };
//# sourceMappingURL=browserTracingIntegration.js.map