PHP 8.2.30
Preview: rq.py Size: 5.18 KB
//opt/hc_python/lib/python3.12/site-packages/sentry_sdk/integrations/rq.py

import weakref

import sentry_sdk
from sentry_sdk.consts import OP
from sentry_sdk.api import continue_trace
from sentry_sdk.integrations import _check_minimum_version, DidNotEnable, Integration
from sentry_sdk.integrations.logging import ignore_logger
from sentry_sdk.tracing import TransactionSource
from sentry_sdk.utils import (
    capture_internal_exceptions,
    ensure_integration_enabled,
    event_from_exception,
    format_timestamp,
    parse_version,
)

try:
    from rq.queue import Queue
    from rq.timeouts import JobTimeoutException
    from rq.version import VERSION as RQ_VERSION
    from rq.worker import Worker
    from rq.job import JobStatus
except ImportError:
    raise DidNotEnable("RQ not installed")

from typing import TYPE_CHECKING

if TYPE_CHECKING:
    from typing import Any, Callable

    from sentry_sdk._types import Event, EventProcessor
    from sentry_sdk.utils import ExcInfo

    from rq.job import Job


class RqIntegration(Integration):
    identifier = "rq"
    origin = f"auto.queue.{identifier}"

    @staticmethod
    def setup_once():
        # type: () -> None
        version = parse_version(RQ_VERSION)
        _check_minimum_version(RqIntegration, version)

        old_perform_job = Worker.perform_job

        @ensure_integration_enabled(RqIntegration, old_perform_job)
        def sentry_patched_perform_job(self, job, *args, **kwargs):
            # type: (Any, Job, *Queue, **Any) -> bool
            with sentry_sdk.new_scope() as scope:
                scope.clear_breadcrumbs()
                scope.add_event_processor(_make_event_processor(weakref.ref(job)))

                transaction = continue_trace(
                    job.meta.get("_sentry_trace_headers") or {},
                    op=OP.QUEUE_TASK_RQ,
                    name="unknown RQ task",
                    source=TransactionSource.TASK,
                    origin=RqIntegration.origin,
                )

                with capture_internal_exceptions():
                    transaction.name = job.func_name

                with sentry_sdk.start_transaction(
                    transaction,
                    custom_sampling_context={"rq_job": job},
                ):
                    rv = old_perform_job(self, job, *args, **kwargs)

            if self.is_horse:
                # We're inside of a forked process and RQ is
                # about to call `os._exit`. Make sure that our
                # events get sent out.
                sentry_sdk.get_client().flush()

            return rv

        Worker.perform_job = sentry_patched_perform_job

        old_handle_exception = Worker.handle_exception

        def sentry_patched_handle_exception(self, job, *exc_info, **kwargs):
            # type: (Worker, Any, *Any, **Any) -> Any
            retry = (
                hasattr(job, "retries_left")
                and job.retries_left
                and job.retries_left > 0
            )
            failed = job._status == JobStatus.FAILED or job.is_failed
            if failed and not retry:
                _capture_exception(exc_info)

            return old_handle_exception(self, job, *exc_info, **kwargs)

        Worker.handle_exception = sentry_patched_handle_exception

        old_enqueue_job = Queue.enqueue_job

        @ensure_integration_enabled(RqIntegration, old_enqueue_job)
        def sentry_patched_enqueue_job(self, job, **kwargs):
            # type: (Queue, Any, **Any) -> Any
            scope = sentry_sdk.get_current_scope()
            if scope.span is not None:
                job.meta["_sentry_trace_headers"] = dict(
                    scope.iter_trace_propagation_headers()
                )

            return old_enqueue_job(self, job, **kwargs)

        Queue.enqueue_job = sentry_patched_enqueue_job

        ignore_logger("rq.worker")


def _make_event_processor(weak_job):
    # type: (Callable[[], Job]) -> EventProcessor
    def event_processor(event, hint):
        # type: (Event, dict[str, Any]) -> Event
        job = weak_job()
        if job is not None:
            with capture_internal_exceptions():
                extra = event.setdefault("extra", {})
                rq_job = {
                    "job_id": job.id,
                    "func": job.func_name,
                    "args": job.args,
                    "kwargs": job.kwargs,
                    "description": job.description,
                }

                if job.enqueued_at:
                    rq_job["enqueued_at"] = format_timestamp(job.enqueued_at)
                if job.started_at:
                    rq_job["started_at"] = format_timestamp(job.started_at)

                extra["rq-job"] = rq_job

        if "exc_info" in hint:
            with capture_internal_exceptions():
                if issubclass(hint["exc_info"][0], JobTimeoutException):
                    event["fingerprint"] = ["rq", "JobTimeoutException", job.func_name]

        return event

    return event_processor


def _capture_exception(exc_info, **kwargs):
    # type: (ExcInfo, **Any) -> None
    client = sentry_sdk.get_client()

    event, hint = event_from_exception(
        exc_info,
        client_options=client.options,
        mechanism={"type": "rq", "handled": False},
    )

    sentry_sdk.capture_event(event, hint=hint)

Directory Contents

Dirs: 10 × Files: 70

Name Size Perms Modified Actions
celery DIR
- drwxr-xr-x 2025-12-03 08:02:53
Edit Download
django DIR
- drwxr-xr-x 2025-12-03 08:02:53
Edit Download
- drwxr-xr-x 2025-12-03 08:02:53
Edit Download
grpc DIR
- drwxr-xr-x 2025-12-03 08:02:53
Edit Download
- drwxr-xr-x 2025-12-03 08:02:53
Edit Download
- drwxr-xr-x 2025-12-03 08:02:53
Edit Download
- drwxr-xr-x 2025-12-03 08:02:53
Edit Download
redis DIR
- drwxr-xr-x 2025-12-03 08:02:53
Edit Download
spark DIR
- drwxr-xr-x 2025-12-03 08:02:53
Edit Download
- drwxr-xr-x 2025-12-03 08:02:53
Edit Download
12.70 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
14.17 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
911 B lrw-r--r-- 2025-12-03 08:02:53
Edit Download
5.70 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
7.70 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
12.50 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
4.50 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
6.37 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
1.61 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
17.65 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
5.06 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
4.31 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
6.46 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
4.59 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
5.96 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
7.60 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
9.18 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
1.93 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
7.28 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
2.35 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
1.95 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
9.28 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
4.48 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
8.54 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
8.26 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
2.75 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
4.69 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
4.92 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
5.94 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
5.32 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
14.60 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
39.02 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
11.56 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
1.89 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
9.99 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
11.55 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
13.57 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
6.38 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
19.58 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
820 B lrw-r--r-- 2025-12-03 08:02:53
Edit Download
24.54 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
1.10 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
3.06 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
4.50 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
6.23 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
7.19 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
7.24 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
5.20 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
5.18 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
8.87 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
12.66 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
1.76 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
3.09 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
4.24 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
25.62 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
10.31 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
1.20 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
8.76 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
13.82 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
2.43 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
6.94 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
7.04 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
1.61 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
1.77 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
1.03 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
1.71 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
10.56 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
3.11 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
7.38 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download
12.44 KB lrw-r--r-- 2025-12-03 08:02:53
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).