-
Notifications
You must be signed in to change notification settings - Fork 608
Expand file tree
/
Copy pathtasks.py
More file actions
40 lines (28 loc) · 1.07 KB
/
tasks.py
File metadata and controls
40 lines (28 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from functools import wraps
import sentry_sdk
from sentry_sdk.consts import OP
from sentry_sdk.utils import qualname_from_function
try:
# django.tasks were added in Django 6.0
from django.tasks.base import Task
except ImportError:
Task = None
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from typing import Any
def patch_tasks() -> None:
if Task is None:
return
old_task_enqueue = Task.enqueue
@wraps(old_task_enqueue)
def _sentry_enqueue(self: "Any", *args: "Any", **kwargs: "Any") -> "Any":
from sentry_sdk.integrations.django import DjangoIntegration
integration = sentry_sdk.get_client().get_integration(DjangoIntegration)
if integration is None:
return old_task_enqueue(self, *args, **kwargs)
name = qualname_from_function(self.func) or "<unknown Django task>"
with sentry_sdk.start_span(
op=OP.QUEUE_SUBMIT_DJANGO, name=name, origin=DjangoIntegration.origin
):
return old_task_enqueue(self, *args, **kwargs)
Task.enqueue = _sentry_enqueue