UNPKG

@sentry/nextjs

Version:
52 lines (49 loc) 2.04 kB
import { getIsolationScope, winterCGHeadersToDict, handleCallbackErrors, getActiveSpan, SPAN_STATUS_ERROR, SPAN_STATUS_OK, captureException } from '@sentry/core'; import { isNotFoundNavigationError, isRedirectNavigationError } from './nextNavigationErrorUtils.js'; import { waitUntil, flushSafelyWithTimeout } from './utils/responseEnd.js'; function wrapServerComponentWithSentry(appDirComponent, context) { return new Proxy(appDirComponent, { apply: (originalFunction, thisArg, args) => { const isolationScope = getIsolationScope(); const headersDict = context.headers ? winterCGHeadersToDict(context.headers) : void 0; isolationScope.setSDKProcessingMetadata({ normalizedRequest: { headers: headersDict } }); return handleCallbackErrors( () => originalFunction.apply(thisArg, args), (error) => { const span = getActiveSpan(); const { componentRoute, componentType } = context; let shouldCapture = true; isolationScope.setTransactionName(`${componentType} Server Component (${componentRoute})`); if (span) { if (isNotFoundNavigationError(error)) { shouldCapture = false; span.setStatus({ code: SPAN_STATUS_ERROR, message: "not_found" }); } else if (isRedirectNavigationError(error)) { shouldCapture = false; span.setStatus({ code: SPAN_STATUS_OK }); } else { span.setStatus({ code: SPAN_STATUS_ERROR, message: "internal_error" }); } } if (shouldCapture) { captureException(error, { mechanism: { handled: false, type: "auto.function.nextjs.server_component" } }); } }, () => { waitUntil(flushSafelyWithTimeout()); } ); } }); } export { wrapServerComponentWithSentry }; //# sourceMappingURL=wrapServerComponentWithSentry.js.map