Preview: unraisablehook.py
Size: 1.65 KB
/proc/self/root/opt/hc_python/lib/python3.12/site-packages/sentry_sdk/integrations/unraisablehook.py
import sys
from typing import TYPE_CHECKING
import sentry_sdk
from sentry_sdk.integrations import Integration
from sentry_sdk.utils import (
capture_internal_exceptions,
event_from_exception,
)
if TYPE_CHECKING:
from typing import Any, Callable
class UnraisablehookIntegration(Integration):
identifier = "unraisablehook"
@staticmethod
def setup_once() -> None:
sys.unraisablehook = _make_unraisable(sys.unraisablehook)
def _make_unraisable(
old_unraisablehook: "Callable[[sys.UnraisableHookArgs], Any]",
) -> "Callable[[sys.UnraisableHookArgs], Any]":
def sentry_sdk_unraisablehook(unraisable: "sys.UnraisableHookArgs") -> None:
integration = sentry_sdk.get_client().get_integration(UnraisablehookIntegration)
# Note: If we replace this with ensure_integration_enabled then
# we break the exceptiongroup backport;
# See: https://github.com/getsentry/sentry-python/issues/3097
if integration is None:
return old_unraisablehook(unraisable)
if unraisable.exc_value and unraisable.exc_traceback:
with capture_internal_exceptions():
event, hint = event_from_exception(
(
unraisable.exc_type,
unraisable.exc_value,
unraisable.exc_traceback,
),
client_options=sentry_sdk.get_client().options,
mechanism={"type": "unraisablehook", "handled": False},
)
sentry_sdk.capture_event(event, hint=hint)
return old_unraisablehook(unraisable)
return sentry_sdk_unraisablehook
Directory Contents
Dirs: 10 × Files: 73