/opt/alt/python38/lib/python3.8/site-packages/sentry_sdk/integrations
NameSizeModeActions
django/-0755rm
__pycache__/-0755rm
aiohttp.py38890644editdlrm
argv.py8940644editdlrm
atexit.py14900644editdlrm
aws_lambda.py67580644editdlrm
bottle.py55270644editdlrm
celery.py44230644editdlrm
dedupe.py10850644editdlrm
excepthook.py13350644editdlrm
flask.py72720644editdlrm
gnu_backtrace.py30080644editdlrm
logging.py60190644editdlrm
modules.py12390644editdlrm
pyramid.py59140644editdlrm
rq.py32730644editdlrm
sanic.py70650644editdlrm
serverless.py12380644editdlrm
stdlib.py18690644editdlrm
threading.py15970644editdlrm
tornado.py63870644editdlrm
wsgi.py72990644editdlrm
_wsgi_common.py36660644editdlrm
__init__.py42360644editdlrm
Edit: /opt/alt/python38/lib/python3.8/site-packages/sentry_sdk/integrations/gnu_backtrace.py (3008B)
import re from sentry_sdk.hub import Hub from sentry_sdk.integrations import Integration from sentry_sdk.scope import add_global_event_processor from sentry_sdk.utils import capture_internal_exceptions if False: from typing import Any from typing import Dict MODULE_RE = r"[a-zA-Z0-9/._:\\-]+" TYPE_RE = r"[a-zA-Z0-9._:<>,-]+" HEXVAL_RE = r"[A-Fa-f0-9]+" FRAME_RE = r""" ^(?P\d+)\.\s (?P{MODULE_RE})\( (?P{TYPE_RE}\ )? ((?P{TYPE_RE}) (?P\([^)]*\))? )? ((?P\ const)?\+0x(?P{HEXVAL_RE}))? \)\s \[0x(?P{HEXVAL_RE})\]$ """.format( MODULE_RE=MODULE_RE, HEXVAL_RE=HEXVAL_RE, TYPE_RE=TYPE_RE ) FRAME_RE = re.compile(FRAME_RE, re.MULTILINE | re.VERBOSE) class GnuBacktraceIntegration(Integration): identifier = "gnu_backtrace" @staticmethod def setup_once(): @add_global_event_processor def process_gnu_backtrace(event, hint): with capture_internal_exceptions(): return _process_gnu_backtrace(event, hint) def _process_gnu_backtrace(event, hint): # type: (Dict[str, Any], Dict[str, Any]) -> Dict[str, Any] if Hub.current.get_integration(GnuBacktraceIntegration) is None: return event exc_info = hint.get("exc_info", None) if exc_info is None: return event exception = event.get("exception", None) if exception is None: return event values = exception.get("values", None) if values is None: return event for exception in values: frames = exception.get("stacktrace", {}).get("frames", []) if not frames: continue msg = exception.get("value", None) if not msg: continue additional_frames = [] new_msg = [] for line in msg.splitlines(): match = FRAME_RE.match(line) if match: additional_frames.append( ( int(match.group("index")), { "package": match.group("package") or None, "function": match.group("function") or None, "platform": "native", }, ) ) elif additional_frames and line.strip(): # If we already started parsing a stacktrace, it must be at the # end of the message and must not contain random garbage lines # between the frames del additional_frames[:] break else: new_msg.append(line) if additional_frames: additional_frames.sort(key=lambda x: -x[0]) for _, frame in additional_frames: frames.append(frame) new_msg.append("") exception["value"] = "\n".join(new_msg) return event