콘텐츠로 이동

GlobalHandlers | Next.js용 Sentry

원본 URL: https://docs.sentry.io/platforms/javascript/guides/nextjs/configuration/integrations/globalhandlers

이 통합은 Browser 및 Deno 런타임에서만 작동합니다.

가져오기 이름: Sentry.globalHandlersIntegration

이 통합은 기본적으로 활성화되어 있습니다. 기본 통합을 수정하려면 이 문서를 읽어보세요.

이 통합은 전역 핸들러를 연결해 포착되지 않은 예외와 처리되지 않은 거부를 수집합니다. 기본적으로 오류와 처리되지 않은 promise 거부를 수집합니다.

Sentry.init({
integrations: [Sentry.globalHandlersIntegration({ onerror: true, onunhandledrejection: true })],
});

유형: boolean

onerror로 전파된 오류를 수집합니다.

유형: boolean

처리되지 않은 promise 거부를 수집합니다.