forked from getsentry/sentry-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.py
More file actions
152 lines (114 loc) · 3.06 KB
/
Copy pathapi.py
File metadata and controls
152 lines (114 loc) · 3.06 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
import inspect
from contextlib import contextmanager
from sentry_sdk.hub import Hub
from sentry_sdk.scope import Scope
if False:
from typing import Any
from typing import Optional
from typing import overload
from typing import Callable
from typing import TypeVar
from contextlib import ContextManager
from sentry_sdk.utils import Event, Hint, Breadcrumb, BreadcrumbHint
F = TypeVar("F", bound=Callable[..., Any])
else:
def overload(x):
return x
__all__ = [
"capture_event",
"capture_message",
"capture_exception",
"add_breadcrumb",
"configure_scope",
"push_scope",
"flush",
"last_event_id",
]
def hubmethod(f):
# type: (F) -> F
f.__doc__ = "%s\n\n%s" % (
"Alias for `Hub.%s`" % f.__name__,
inspect.getdoc(getattr(Hub, f.__name__)),
)
return f
@hubmethod
def capture_event(event, hint=None):
# type: (Event, Optional[Hint]) -> Optional[str]
hub = Hub.current
if hub is not None:
return hub.capture_event(event, hint)
return None
@hubmethod
def capture_message(message, level=None):
# type: (str, Optional[str]) -> Optional[str]
hub = Hub.current
if hub is not None:
return hub.capture_message(message, level)
return None
@hubmethod
def capture_exception(error=None):
# type: (Optional[BaseException]) -> Optional[str]
hub = Hub.current
if hub is not None:
return hub.capture_exception(error)
return None
@hubmethod
def add_breadcrumb(crumb=None, hint=None, **kwargs):
# type: (Optional[Breadcrumb], Optional[BreadcrumbHint], **Any) -> None
hub = Hub.current
if hub is not None:
return hub.add_breadcrumb(crumb, hint, **kwargs)
@overload # noqa
def configure_scope():
# type: () -> ContextManager[Scope]
pass
@overload # noqa
def configure_scope(callback):
# type: (Callable[[Scope], None]) -> None
pass
@hubmethod # noqa
def configure_scope(callback=None):
hub = Hub.current
if hub is not None:
return hub.configure_scope(callback)
elif callback is None:
@contextmanager
def inner():
yield Scope()
return inner()
else:
# returned if user provided callback
return None
@overload # noqa
def push_scope():
# type: () -> ContextManager[Scope]
pass
@overload # noqa
def push_scope(callback):
# type: (Callable[[Scope], None]) -> None
pass
@hubmethod # noqa
def push_scope(callback=None):
hub = Hub.current
if hub is not None:
return hub.push_scope(callback)
elif callback is None:
@contextmanager
def inner():
yield Scope()
return inner()
else:
# returned if user provided callback
return None
@hubmethod
def flush(timeout=None, callback=None):
hub = Hub.current
if hub is not None:
return hub.flush(timeout=timeout, callback=callback)
@hubmethod
def last_event_id():
# type: () -> Optional[str]
hub = Hub.current
if hub is not None:
return hub.last_event_id()
return None