Server IP : 66.29.132.122 / Your IP : 3.133.155.163 Web Server : LiteSpeed System : Linux business142.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : admazpex ( 531) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/proc/self/root/proc/thread-self/root/opt/hc_python/lib64/python3.8/site-packages/sentry_sdk/integrations/ |
Upload File : |
import functools import sys import sentry_sdk from sentry_sdk.utils import capture_internal_exceptions, event_from_exception from sentry_sdk.integrations import Integration from sentry_sdk._types import TYPE_CHECKING if TYPE_CHECKING: from collections.abc import Callable from typing import NoReturn, Union class SysExitIntegration(Integration): """Captures sys.exit calls and sends them as events to Sentry. By default, SystemExit exceptions are not captured by the SDK. Enabling this integration will capture SystemExit exceptions generated by sys.exit calls and send them to Sentry. This integration, in its default configuration, only captures the sys.exit call if the exit code is a non-zero and non-None value (unsuccessful exits). Pass `capture_successful_exits=True` to capture successful exits as well. Note that the integration does not capture SystemExit exceptions raised outside a call to sys.exit. """ identifier = "sys_exit" def __init__(self, *, capture_successful_exits=False): # type: (bool) -> None self._capture_successful_exits = capture_successful_exits @staticmethod def setup_once(): # type: () -> None SysExitIntegration._patch_sys_exit() @staticmethod def _patch_sys_exit(): # type: () -> None old_exit = sys.exit # type: Callable[[Union[str, int, None]], NoReturn] @functools.wraps(old_exit) def sentry_patched_exit(__status=0): # type: (Union[str, int, None]) -> NoReturn # @ensure_integration_enabled ensures that this is non-None integration = sentry_sdk.get_client().get_integration(SysExitIntegration) if integration is None: old_exit(__status) try: old_exit(__status) except SystemExit as e: with capture_internal_exceptions(): if integration._capture_successful_exits or __status not in ( 0, None, ): _capture_exception(e) raise e sys.exit = sentry_patched_exit def _capture_exception(exc): # type: (SystemExit) -> None event, hint = event_from_exception( exc, client_options=sentry_sdk.get_client().options, mechanism={"type": SysExitIntegration.identifier, "handled": False}, ) sentry_sdk.capture_event(event, hint=hint)