sentry-sdk 3.0.0a1__py2.py3-none-any.whl → 3.0.0a3__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of sentry-sdk might be problematic. Click here for more details.
- sentry_sdk/__init__.py +2 -0
- sentry_sdk/_compat.py +5 -12
- sentry_sdk/_init_implementation.py +7 -7
- sentry_sdk/_log_batcher.py +17 -29
- sentry_sdk/_lru_cache.py +7 -9
- sentry_sdk/_queue.py +2 -4
- sentry_sdk/_types.py +11 -18
- sentry_sdk/_werkzeug.py +5 -7
- sentry_sdk/ai/monitoring.py +44 -31
- sentry_sdk/ai/utils.py +3 -4
- sentry_sdk/api.py +75 -87
- sentry_sdk/attachments.py +10 -12
- sentry_sdk/client.py +137 -155
- sentry_sdk/consts.py +430 -174
- sentry_sdk/crons/api.py +16 -17
- sentry_sdk/crons/decorator.py +25 -27
- sentry_sdk/debug.py +4 -6
- sentry_sdk/envelope.py +46 -112
- sentry_sdk/feature_flags.py +9 -15
- sentry_sdk/integrations/__init__.py +24 -19
- sentry_sdk/integrations/_asgi_common.py +15 -18
- sentry_sdk/integrations/_wsgi_common.py +22 -33
- sentry_sdk/integrations/aiohttp.py +32 -30
- sentry_sdk/integrations/anthropic.py +42 -37
- sentry_sdk/integrations/argv.py +3 -4
- sentry_sdk/integrations/ariadne.py +16 -18
- sentry_sdk/integrations/arq.py +21 -29
- sentry_sdk/integrations/asgi.py +63 -37
- sentry_sdk/integrations/asyncio.py +14 -16
- sentry_sdk/integrations/atexit.py +6 -10
- sentry_sdk/integrations/aws_lambda.py +26 -36
- sentry_sdk/integrations/beam.py +10 -18
- sentry_sdk/integrations/boto3.py +18 -16
- sentry_sdk/integrations/bottle.py +25 -34
- sentry_sdk/integrations/celery/__init__.py +41 -61
- sentry_sdk/integrations/celery/beat.py +23 -27
- sentry_sdk/integrations/celery/utils.py +15 -17
- sentry_sdk/integrations/chalice.py +8 -10
- sentry_sdk/integrations/clickhouse_driver.py +21 -31
- sentry_sdk/integrations/cloud_resource_context.py +9 -16
- sentry_sdk/integrations/cohere.py +27 -33
- sentry_sdk/integrations/dedupe.py +5 -8
- sentry_sdk/integrations/django/__init__.py +57 -72
- sentry_sdk/integrations/django/asgi.py +26 -34
- sentry_sdk/integrations/django/caching.py +23 -19
- sentry_sdk/integrations/django/middleware.py +17 -20
- sentry_sdk/integrations/django/signals_handlers.py +11 -10
- sentry_sdk/integrations/django/templates.py +19 -16
- sentry_sdk/integrations/django/transactions.py +16 -11
- sentry_sdk/integrations/django/views.py +6 -10
- sentry_sdk/integrations/dramatiq.py +21 -21
- sentry_sdk/integrations/excepthook.py +10 -10
- sentry_sdk/integrations/executing.py +3 -4
- sentry_sdk/integrations/falcon.py +27 -42
- sentry_sdk/integrations/fastapi.py +13 -16
- sentry_sdk/integrations/flask.py +31 -38
- sentry_sdk/integrations/gcp.py +13 -16
- sentry_sdk/integrations/gnu_backtrace.py +4 -6
- sentry_sdk/integrations/gql.py +16 -17
- sentry_sdk/integrations/graphene.py +13 -12
- sentry_sdk/integrations/grpc/__init__.py +19 -1
- sentry_sdk/integrations/grpc/aio/server.py +15 -14
- sentry_sdk/integrations/grpc/client.py +19 -9
- sentry_sdk/integrations/grpc/consts.py +2 -0
- sentry_sdk/integrations/grpc/server.py +12 -8
- sentry_sdk/integrations/httpx.py +9 -12
- sentry_sdk/integrations/huey.py +13 -20
- sentry_sdk/integrations/huggingface_hub.py +18 -18
- sentry_sdk/integrations/langchain.py +203 -113
- sentry_sdk/integrations/launchdarkly.py +13 -10
- sentry_sdk/integrations/litestar.py +37 -35
- sentry_sdk/integrations/logging.py +52 -65
- sentry_sdk/integrations/loguru.py +127 -57
- sentry_sdk/integrations/modules.py +3 -4
- sentry_sdk/integrations/openai.py +100 -88
- sentry_sdk/integrations/openai_agents/__init__.py +49 -0
- sentry_sdk/integrations/openai_agents/consts.py +1 -0
- sentry_sdk/integrations/openai_agents/patches/__init__.py +4 -0
- sentry_sdk/integrations/openai_agents/patches/agent_run.py +152 -0
- sentry_sdk/integrations/openai_agents/patches/models.py +52 -0
- sentry_sdk/integrations/openai_agents/patches/runner.py +42 -0
- sentry_sdk/integrations/openai_agents/patches/tools.py +84 -0
- sentry_sdk/integrations/openai_agents/spans/__init__.py +5 -0
- sentry_sdk/integrations/openai_agents/spans/agent_workflow.py +20 -0
- sentry_sdk/integrations/openai_agents/spans/ai_client.py +46 -0
- sentry_sdk/integrations/openai_agents/spans/execute_tool.py +47 -0
- sentry_sdk/integrations/openai_agents/spans/handoff.py +24 -0
- sentry_sdk/integrations/openai_agents/spans/invoke_agent.py +41 -0
- sentry_sdk/integrations/openai_agents/utils.py +201 -0
- sentry_sdk/integrations/openfeature.py +11 -6
- sentry_sdk/integrations/pure_eval.py +6 -10
- sentry_sdk/integrations/pymongo.py +13 -17
- sentry_sdk/integrations/pyramid.py +31 -36
- sentry_sdk/integrations/quart.py +23 -28
- sentry_sdk/integrations/ray.py +73 -64
- sentry_sdk/integrations/redis/__init__.py +7 -4
- sentry_sdk/integrations/redis/_async_common.py +25 -12
- sentry_sdk/integrations/redis/_sync_common.py +19 -13
- sentry_sdk/integrations/redis/modules/caches.py +17 -8
- sentry_sdk/integrations/redis/modules/queries.py +9 -8
- sentry_sdk/integrations/redis/rb.py +3 -2
- sentry_sdk/integrations/redis/redis.py +4 -4
- sentry_sdk/integrations/redis/redis_cluster.py +21 -13
- sentry_sdk/integrations/redis/redis_py_cluster_legacy.py +3 -2
- sentry_sdk/integrations/redis/utils.py +23 -24
- sentry_sdk/integrations/rq.py +13 -16
- sentry_sdk/integrations/rust_tracing.py +9 -6
- sentry_sdk/integrations/sanic.py +34 -46
- sentry_sdk/integrations/serverless.py +22 -27
- sentry_sdk/integrations/socket.py +27 -15
- sentry_sdk/integrations/spark/__init__.py +1 -0
- sentry_sdk/integrations/spark/spark_driver.py +45 -83
- sentry_sdk/integrations/spark/spark_worker.py +7 -11
- sentry_sdk/integrations/sqlalchemy.py +22 -19
- sentry_sdk/integrations/starlette.py +86 -90
- sentry_sdk/integrations/starlite.py +28 -34
- sentry_sdk/integrations/statsig.py +5 -4
- sentry_sdk/integrations/stdlib.py +28 -24
- sentry_sdk/integrations/strawberry.py +62 -49
- sentry_sdk/integrations/sys_exit.py +7 -11
- sentry_sdk/integrations/threading.py +12 -14
- sentry_sdk/integrations/tornado.py +28 -32
- sentry_sdk/integrations/trytond.py +4 -3
- sentry_sdk/integrations/typer.py +8 -6
- sentry_sdk/integrations/unleash.py +5 -4
- sentry_sdk/integrations/wsgi.py +47 -46
- sentry_sdk/logger.py +41 -10
- sentry_sdk/monitor.py +16 -28
- sentry_sdk/opentelemetry/consts.py +11 -4
- sentry_sdk/opentelemetry/contextvars_context.py +26 -16
- sentry_sdk/opentelemetry/propagator.py +38 -21
- sentry_sdk/opentelemetry/sampler.py +51 -34
- sentry_sdk/opentelemetry/scope.py +36 -37
- sentry_sdk/opentelemetry/span_processor.py +48 -58
- sentry_sdk/opentelemetry/tracing.py +58 -14
- sentry_sdk/opentelemetry/utils.py +186 -194
- sentry_sdk/profiler/continuous_profiler.py +108 -97
- sentry_sdk/profiler/transaction_profiler.py +70 -97
- sentry_sdk/profiler/utils.py +11 -15
- sentry_sdk/scope.py +251 -273
- sentry_sdk/scrubber.py +22 -26
- sentry_sdk/serializer.py +40 -54
- sentry_sdk/session.py +44 -61
- sentry_sdk/sessions.py +35 -49
- sentry_sdk/spotlight.py +15 -21
- sentry_sdk/tracing.py +121 -187
- sentry_sdk/tracing_utils.py +104 -122
- sentry_sdk/transport.py +131 -157
- sentry_sdk/utils.py +232 -309
- sentry_sdk/worker.py +16 -28
- {sentry_sdk-3.0.0a1.dist-info → sentry_sdk-3.0.0a3.dist-info}/METADATA +3 -3
- sentry_sdk-3.0.0a3.dist-info/RECORD +168 -0
- {sentry_sdk-3.0.0a1.dist-info → sentry_sdk-3.0.0a3.dist-info}/WHEEL +1 -1
- sentry_sdk-3.0.0a1.dist-info/RECORD +0 -154
- {sentry_sdk-3.0.0a1.dist-info → sentry_sdk-3.0.0a3.dist-info}/entry_points.txt +0 -0
- {sentry_sdk-3.0.0a1.dist-info → sentry_sdk-3.0.0a3.dist-info}/licenses/LICENSE +0 -0
- {sentry_sdk-3.0.0a1.dist-info → sentry_sdk-3.0.0a3.dist-info}/top_level.txt +0 -0
sentry_sdk/worker.py
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
1
2
|
import os
|
|
2
3
|
import threading
|
|
3
4
|
|
|
@@ -9,38 +10,32 @@ from sentry_sdk.consts import DEFAULT_QUEUE_SIZE
|
|
|
9
10
|
from typing import TYPE_CHECKING
|
|
10
11
|
|
|
11
12
|
if TYPE_CHECKING:
|
|
12
|
-
from typing import Any
|
|
13
|
-
from typing import Optional
|
|
14
|
-
from typing import Callable
|
|
13
|
+
from typing import Any, Optional, Callable
|
|
15
14
|
|
|
16
15
|
|
|
17
16
|
_TERMINATOR = object()
|
|
18
17
|
|
|
19
18
|
|
|
20
19
|
class BackgroundWorker:
|
|
21
|
-
def __init__(self, queue_size=DEFAULT_QUEUE_SIZE):
|
|
22
|
-
|
|
23
|
-
self._queue = Queue(queue_size) # type: Queue
|
|
20
|
+
def __init__(self, queue_size: int = DEFAULT_QUEUE_SIZE) -> None:
|
|
21
|
+
self._queue: Queue = Queue(queue_size)
|
|
24
22
|
self._lock = threading.Lock()
|
|
25
|
-
self._thread
|
|
26
|
-
self._thread_for_pid
|
|
23
|
+
self._thread: Optional[threading.Thread] = None
|
|
24
|
+
self._thread_for_pid: Optional[int] = None
|
|
27
25
|
|
|
28
26
|
@property
|
|
29
|
-
def is_alive(self):
|
|
30
|
-
# type: () -> bool
|
|
27
|
+
def is_alive(self) -> bool:
|
|
31
28
|
if self._thread_for_pid != os.getpid():
|
|
32
29
|
return False
|
|
33
30
|
if not self._thread:
|
|
34
31
|
return False
|
|
35
32
|
return self._thread.is_alive()
|
|
36
33
|
|
|
37
|
-
def _ensure_thread(self):
|
|
38
|
-
# type: () -> None
|
|
34
|
+
def _ensure_thread(self) -> None:
|
|
39
35
|
if not self.is_alive:
|
|
40
36
|
self.start()
|
|
41
37
|
|
|
42
|
-
def _timed_queue_join(self, timeout):
|
|
43
|
-
# type: (float) -> bool
|
|
38
|
+
def _timed_queue_join(self, timeout: float) -> bool:
|
|
44
39
|
deadline = time() + timeout
|
|
45
40
|
queue = self._queue
|
|
46
41
|
|
|
@@ -57,8 +52,7 @@ class BackgroundWorker:
|
|
|
57
52
|
finally:
|
|
58
53
|
queue.all_tasks_done.release()
|
|
59
54
|
|
|
60
|
-
def start(self):
|
|
61
|
-
# type: () -> None
|
|
55
|
+
def start(self) -> None:
|
|
62
56
|
with self._lock:
|
|
63
57
|
if not self.is_alive:
|
|
64
58
|
self._thread = threading.Thread(
|
|
@@ -74,8 +68,7 @@ class BackgroundWorker:
|
|
|
74
68
|
# send out events.
|
|
75
69
|
self._thread = None
|
|
76
70
|
|
|
77
|
-
def kill(self):
|
|
78
|
-
# type: () -> None
|
|
71
|
+
def kill(self) -> None:
|
|
79
72
|
"""
|
|
80
73
|
Kill worker thread. Returns immediately. Not useful for
|
|
81
74
|
waiting on shutdown for events, use `flush` for that.
|
|
@@ -91,20 +84,17 @@ class BackgroundWorker:
|
|
|
91
84
|
self._thread = None
|
|
92
85
|
self._thread_for_pid = None
|
|
93
86
|
|
|
94
|
-
def flush(self, timeout, callback=None):
|
|
95
|
-
# type: (float, Optional[Any]) -> None
|
|
87
|
+
def flush(self, timeout: float, callback: Optional[Any] = None) -> None:
|
|
96
88
|
logger.debug("background worker got flush request")
|
|
97
89
|
with self._lock:
|
|
98
90
|
if self.is_alive and timeout > 0.0:
|
|
99
91
|
self._wait_flush(timeout, callback)
|
|
100
92
|
logger.debug("background worker flushed")
|
|
101
93
|
|
|
102
|
-
def full(self):
|
|
103
|
-
# type: () -> bool
|
|
94
|
+
def full(self) -> bool:
|
|
104
95
|
return self._queue.full()
|
|
105
96
|
|
|
106
|
-
def _wait_flush(self, timeout, callback):
|
|
107
|
-
# type: (float, Optional[Any]) -> None
|
|
97
|
+
def _wait_flush(self, timeout: float, callback: Optional[Any]) -> None:
|
|
108
98
|
initial_timeout = min(0.1, timeout)
|
|
109
99
|
if not self._timed_queue_join(initial_timeout):
|
|
110
100
|
pending = self._queue.qsize() + 1
|
|
@@ -116,8 +106,7 @@ class BackgroundWorker:
|
|
|
116
106
|
pending = self._queue.qsize() + 1
|
|
117
107
|
logger.error("flush timed out, dropped %s events", pending)
|
|
118
108
|
|
|
119
|
-
def submit(self, callback):
|
|
120
|
-
# type: (Callable[[], None]) -> bool
|
|
109
|
+
def submit(self, callback: Callable[[], None]) -> bool:
|
|
121
110
|
self._ensure_thread()
|
|
122
111
|
try:
|
|
123
112
|
self._queue.put_nowait(callback)
|
|
@@ -125,8 +114,7 @@ class BackgroundWorker:
|
|
|
125
114
|
except FullError:
|
|
126
115
|
return False
|
|
127
116
|
|
|
128
|
-
def _target(self):
|
|
129
|
-
# type: () -> None
|
|
117
|
+
def _target(self) -> None:
|
|
130
118
|
while True:
|
|
131
119
|
callback = self._queue.get()
|
|
132
120
|
try:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sentry-sdk
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.0a3
|
|
4
4
|
Summary: Python client for Sentry (https://sentry.io)
|
|
5
5
|
Home-page: https://github.com/getsentry/sentry-python
|
|
6
6
|
Author: Sentry Team and Contributors
|
|
@@ -134,7 +134,7 @@ Dynamic: summary
|
|
|
134
134
|
_Bad software is everywhere, and we're tired of it. Sentry is on a mission to help developers write better software faster, so we can get back to enjoying technology. If you want to join us
|
|
135
135
|
[<kbd>**Check out our open positions**</kbd>](https://sentry.io/careers/)_.
|
|
136
136
|
|
|
137
|
-
[](https://discord.
|
|
137
|
+
[](https://discord.com/invite/Ww9hbqr)
|
|
138
138
|
[](https://twitter.com/intent/follow?screen_name=getsentry)
|
|
139
139
|
[](https://pypi.python.org/pypi/sentry-sdk)
|
|
140
140
|
<img src="https://img.shields.io/badge/python-3.7 | 3.8 | 3.9 | 3.10 | 3.11 | 3.12 | 3.13-blue.svg" alt="python">
|
|
@@ -234,7 +234,7 @@ If you encounter issues or need help setting up or configuring the SDK, don't he
|
|
|
234
234
|
Here are all resources to help you make the most of Sentry:
|
|
235
235
|
|
|
236
236
|
- [Documentation](https://docs.sentry.io/platforms/python/) - Official documentation to get started.
|
|
237
|
-
- [Discord](https://
|
|
237
|
+
- [Discord](https://discord.com/invite/Ww9hbqr) - Join our Discord community.
|
|
238
238
|
- [X/Twitter](https://twitter.com/intent/follow?screen_name=getsentry) - Follow us on X (Twitter) for updates.
|
|
239
239
|
- [Stack Overflow](https://stackoverflow.com/questions/tagged/sentry) - Questions and answers related to Sentry.
|
|
240
240
|
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
sentry_sdk/__init__.py,sha256=FHc3TaT2NXexLc7TnCUGV74SxyCojCSxsnB3nJ4Do78,1237
|
|
2
|
+
sentry_sdk/_compat.py,sha256=wP2ZOiqdpaVaC2IPh3O-GwDK1H-3-momIn5bmMNrCGY,2969
|
|
3
|
+
sentry_sdk/_init_implementation.py,sha256=PJrU7NZTWOE7hH2n_odcs1E3Nc_2TK2ilLwn5trJXns,1521
|
|
4
|
+
sentry_sdk/_log_batcher.py,sha256=Ugg89Q1hnNgNfBV2-SUl_8qJN9Qy-Ux8qWw7VQR0KXo,4840
|
|
5
|
+
sentry_sdk/_lru_cache.py,sha256=H_BCecDD-7qSmcI0c6Q8i1nzBJMRBLFqXuax-ofh6wg,1189
|
|
6
|
+
sentry_sdk/_queue.py,sha256=AWE9LpaPhNm4VEUiY3TJWIXfAw44D-dgFXuhZdBHF-k,11119
|
|
7
|
+
sentry_sdk/_types.py,sha256=owny4XuTQM31ljk5SEGS2x-bfanue26OE5qkgWE5e5Y,8647
|
|
8
|
+
sentry_sdk/_werkzeug.py,sha256=qEPz7ZYBeBkILq3snw0GnaZQbt5mItMQO9JQ3YDCCgg,3702
|
|
9
|
+
sentry_sdk/api.py,sha256=q0jz_kODiggj4wLYCvALP6UbIOkFAg-H67xLyxGp9cA,8440
|
|
10
|
+
sentry_sdk/attachments.py,sha256=la0cbz1yc8cV4PQyM3kgArvWjGWtjxq945wgiKdaoCs,3046
|
|
11
|
+
sentry_sdk/client.py,sha256=NcV7bcKVmmgZaDjDjL1peGKhpkvaopks2g91iff6pSA,35214
|
|
12
|
+
sentry_sdk/consts.py,sha256=EFTa5jx24MRTYAJKossZb2T6vj33O7xtGvwvITN-dGI,46424
|
|
13
|
+
sentry_sdk/debug.py,sha256=ac50G-ZSRUTLhu6VVaJnc4sGsQM1lIN6qWR1AS4oTH4,773
|
|
14
|
+
sentry_sdk/envelope.py,sha256=2Bmjlm7bctrtkYeWVPNGBHBAL6pMFtULUXCONeq6QY8,9118
|
|
15
|
+
sentry_sdk/feature_flags.py,sha256=uLIi4SjN1EuFP59AduFS5dIzqUYOidPZUCZjuqrAbhg,2144
|
|
16
|
+
sentry_sdk/logger.py,sha256=-s1mJg9tNafG3PoYJSWq2TYHac8OFM2gE3W-hABYlsI,2448
|
|
17
|
+
sentry_sdk/monitor.py,sha256=TXiAhPyQTgeQyK35JCFedvO_CFLVYI8_DbUbdO83fKA,3443
|
|
18
|
+
sentry_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
+
sentry_sdk/scope.py,sha256=z853f7t45oni1nlDlPLJfQBkiDgGEc__gYEOtcyXz_o,51773
|
|
20
|
+
sentry_sdk/scrubber.py,sha256=NYMTKALIIHCu1aZaTThR3qsmcvCA4hcKpzWUacEbWpg,6006
|
|
21
|
+
sentry_sdk/serializer.py,sha256=03YJkC4nqWuT9y5HEWiGa42BDtas2dO2xJBwVE8rQkE,12752
|
|
22
|
+
sentry_sdk/session.py,sha256=UunkzHmyV7rZu2a6kWMB5BZNJnQc9WiEkJnPu5aHjto,5097
|
|
23
|
+
sentry_sdk/sessions.py,sha256=0puTgebSwYPNH6zq004QLe1q4VM7XOK8iCzsFfcGLzs,6069
|
|
24
|
+
sentry_sdk/spotlight.py,sha256=mHFbVED17LBAaVdRJbNfE9c9NmknWTZ4Y3lkYkJkJuI,8492
|
|
25
|
+
sentry_sdk/tracing.py,sha256=GBM2If8eU-e56ixD409ZOFQzjD59UcpcdGj4nvuP2jE,17668
|
|
26
|
+
sentry_sdk/tracing_utils.py,sha256=qrGnB-Fymi6icnu8f-30TW-08TpO0kPAJbpUukgbye8,26988
|
|
27
|
+
sentry_sdk/transport.py,sha256=MBUPJR8ZV-AtYdDRX342I_OSIhgo9h89qofTVGgajHI,28353
|
|
28
|
+
sentry_sdk/types.py,sha256=NLbnRzww2K3_oGz2GzcC8TdX5L2DXYso1-H1uCv2Hwc,1222
|
|
29
|
+
sentry_sdk/utils.py,sha256=45lGbMLlkQvNtHLGIVkGzaVPt-leI67xPBYsiwGka-0,58601
|
|
30
|
+
sentry_sdk/worker.py,sha256=eJMHzB7V4o1GxKdHCBuqKJqE3UkKtNCQ6AMsDH_wDaQ,4236
|
|
31
|
+
sentry_sdk/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
|
+
sentry_sdk/ai/monitoring.py,sha256=Vx2WT3K4_WW75rI8B_1ESeUE5es2hwOZzB5dTOZSkmg,5009
|
|
33
|
+
sentry_sdk/ai/utils.py,sha256=yqP_7QT3pCIVaXjMTM0L3ocw8oTc0PmIaLF-2fs1l7g,964
|
|
34
|
+
sentry_sdk/crons/__init__.py,sha256=3Zt6g1-pZZ12uRKKsC8QLm3XgJ4K1VYxgVpNNUygOZY,221
|
|
35
|
+
sentry_sdk/crons/api.py,sha256=eNvLll2wbehlVtHLt5Pt7E3205tHADdjBRx8Ks8mVwI,1477
|
|
36
|
+
sentry_sdk/crons/consts.py,sha256=dXqJk5meBSu5rjlGpqAOlkpACnuUi7svQnAFoy1ZNUU,87
|
|
37
|
+
sentry_sdk/crons/decorator.py,sha256=-Tx2HSIrp2xRASY4I0s-RIIUfJXVHjyEG1OjziapXXI,3655
|
|
38
|
+
sentry_sdk/integrations/__init__.py,sha256=Cv9I64hgNqix7spLFYqgoBBOqSaw1kcGkMXvaD5F4Ks,10280
|
|
39
|
+
sentry_sdk/integrations/_asgi_common.py,sha256=MO1mio-2giVjMIY_h4A4WLec8Fk0_FM0OWRQs6PlkuU,3081
|
|
40
|
+
sentry_sdk/integrations/_wsgi_common.py,sha256=2h3cPID7WU2c9MOz2ccPwx0S2UEKeZZh7UBub28yZhE,6448
|
|
41
|
+
sentry_sdk/integrations/aiohttp.py,sha256=745OEwd9O2aqUxtceLc-22kIup1lov84eVYqJCow6e8,13983
|
|
42
|
+
sentry_sdk/integrations/anthropic.py,sha256=eq9j_lV6TOqUr9qWHmAaS7QKUMnl1CGpcN9J1zhk8j8,9487
|
|
43
|
+
sentry_sdk/integrations/argv.py,sha256=QlNw7gOcRttPY-bu6gh1SPo-GZtD60HHRzZ201c1Gmk,906
|
|
44
|
+
sentry_sdk/integrations/ariadne.py,sha256=JqtxiXTL6JZPl2eO_cffARADPN4x5fS76Li5k4DV0lA,5766
|
|
45
|
+
sentry_sdk/integrations/arq.py,sha256=o6ZPIU1RNEw47NiwfHEzz7_oh-qg7Vk1dpis37qWn5E,7998
|
|
46
|
+
sentry_sdk/integrations/asgi.py,sha256=H7peBFu0OaRgloR3IfyixnBuDL_HunCM_flubt4KKGI,13734
|
|
47
|
+
sentry_sdk/integrations/asyncio.py,sha256=igdgyqTDAGgeLcHainJnxQ80MF3rUsqqcVP-Qgs6FS0,4035
|
|
48
|
+
sentry_sdk/integrations/asyncpg.py,sha256=gw5QDAHfJ45Dpvnlb5Zs2jHcYGFeJPL9xRexpjPeQ_s,6711
|
|
49
|
+
sentry_sdk/integrations/atexit.py,sha256=fS2Lq8b3yZKMSVHi0tk6rkfvsO9s5yYja2vEfQLyK1E,1600
|
|
50
|
+
sentry_sdk/integrations/aws_lambda.py,sha256=Gsug-Aj4FI9qEumvJbZ0kwE6P8GmoR9oHfqncrV4pb8,17912
|
|
51
|
+
sentry_sdk/integrations/beam.py,sha256=J-QI9EFC9oAH3T53iVu7P1jNasU8fXo3_qSqYNvgTJE,5070
|
|
52
|
+
sentry_sdk/integrations/boto3.py,sha256=6xVUsmceZAho9Ka0Ed2HIOmewZKaMPbM_8zOCigHQ7w,4894
|
|
53
|
+
sentry_sdk/integrations/bottle.py,sha256=c6t5vpcuM1mQ1VwtDJev0XBno1WA05XPYcsLZdOwURQ,6368
|
|
54
|
+
sentry_sdk/integrations/chalice.py,sha256=p3su2fdeJ2Q3-oGoS2NE8dQ6HpPfpdBOsU9dEykJ3M4,4667
|
|
55
|
+
sentry_sdk/integrations/clickhouse_driver.py,sha256=rJZ-KKE4up_iqgcOVbjp7cMMdFwRALAAv4xUXHKmJPQ,6024
|
|
56
|
+
sentry_sdk/integrations/cloud_resource_context.py,sha256=ATrQpn2ZASgd4DWjibEZKKI2ktkxz4aFbqy4IOEVJr8,7667
|
|
57
|
+
sentry_sdk/integrations/cohere.py,sha256=PL2uoHqlX2yddAU7-hT21ZKn_uUKItZA2mtmsC-a1Hs,9276
|
|
58
|
+
sentry_sdk/integrations/dedupe.py,sha256=zIcWT4-HIBOdHr-Hjb1LfDND8_CNdt75a5xGZnYVuDs,1375
|
|
59
|
+
sentry_sdk/integrations/dramatiq.py,sha256=D2o_2gtejh4_GOSatJslhHnG00CY7hMVeUNFc-u7Qlg,5504
|
|
60
|
+
sentry_sdk/integrations/excepthook.py,sha256=91R2NQa1whur-csRA0mcOJTFpmRhx4DgruQ64HvoVmA,2399
|
|
61
|
+
sentry_sdk/integrations/executing.py,sha256=NY0hh5V_JGEAaRJnQGBzAqMUeW5N6qu7qRJYDoUl3Gk,1989
|
|
62
|
+
sentry_sdk/integrations/falcon.py,sha256=CfavMfULBlt074klwB4pPdNbxyILs3aoozMM2z7IXTA,8362
|
|
63
|
+
sentry_sdk/integrations/fastapi.py,sha256=21Qd-tRGJts1AAtb64NpSy060ErPpixGWqjyR1V3LN0,4611
|
|
64
|
+
sentry_sdk/integrations/flask.py,sha256=0HpWBJgtFETgsJLPd8CB1oSlOvuhO4qw-2bbJ5SqMp4,8495
|
|
65
|
+
sentry_sdk/integrations/gcp.py,sha256=qTgCT1Pih0vJs8IplgdY7ZRBZHcwQmCQtmbU8hTqj7A,8683
|
|
66
|
+
sentry_sdk/integrations/gnu_backtrace.py,sha256=GvZkBH3UpbrWt2n1qNzp-HZTqweYvB8z5XKdN5TgTbM,2876
|
|
67
|
+
sentry_sdk/integrations/gql.py,sha256=URXmOxpct_Ign2gm_CeFZ0hsnLWXfz44PiMsqWjSJhs,4113
|
|
68
|
+
sentry_sdk/integrations/graphene.py,sha256=o259xOYHcVmkT8WaL651eAztfeD3-Gab5Ra4WGwDNFY,4876
|
|
69
|
+
sentry_sdk/integrations/httpx.py,sha256=vLsWWmXIY71-4uOqqT8IbN8vYdIsk6zTaAI1OkOKCSA,6829
|
|
70
|
+
sentry_sdk/integrations/huey.py,sha256=Yqf95Aer8Zmg_Js0eeElHGWcN9PaYCVG14unZQyAr60,5458
|
|
71
|
+
sentry_sdk/integrations/huggingface_hub.py,sha256=nxywqRMKmFyPxVcgnYeCloyG_34e-QrFrnhjKhUHivA,6643
|
|
72
|
+
sentry_sdk/integrations/langchain.py,sha256=AVlRfcPUMD9SROj2qBcO1u-edNRtoVBw-KOS8J0ypek,19493
|
|
73
|
+
sentry_sdk/integrations/launchdarkly.py,sha256=r2YvHBPwy7loZoHN-BmC5f5-bIkd-0g4DPwIwEzaYNI,1936
|
|
74
|
+
sentry_sdk/integrations/litestar.py,sha256=bQWWZAIDqk6E6IwUCLp2cD-Cw_y9-Bqen3KlYZ2DwhI,11773
|
|
75
|
+
sentry_sdk/integrations/logging.py,sha256=_PM0TpSKI5oY5096faUJmctNnxWTUbrcyLO_9fIOIq0,13492
|
|
76
|
+
sentry_sdk/integrations/loguru.py,sha256=zJMs2jTNWs5t6-_vaZVeSChsNq06AkFoOHbGYWKMC7U,6120
|
|
77
|
+
sentry_sdk/integrations/modules.py,sha256=d-srhrbekzrbRA66kRuSoG8ZLPe_ATGj7scnZOxtGHs,815
|
|
78
|
+
sentry_sdk/integrations/openai.py,sha256=1144rDysLE3R8sebLJcQAV4SgKf4bHYc9yfJtsOkwyc,16091
|
|
79
|
+
sentry_sdk/integrations/openfeature.py,sha256=yeyA8Di4LeLwiiFW-ZsGui8nBAPLL20vbUnUj6V14No,1270
|
|
80
|
+
sentry_sdk/integrations/pure_eval.py,sha256=mOA2Y-yk6EQEnKc5BWdduV4FLosvGpk4Mxrnl7iiRK4,4525
|
|
81
|
+
sentry_sdk/integrations/pymongo.py,sha256=ltDFqcUQMUH4LlOaaJam2YRg08Y_V1GwcZmvtyWZK3U,6081
|
|
82
|
+
sentry_sdk/integrations/pyramid.py,sha256=pRKxzyIJT4nUgrhhAyR-IeTkfgl36e9i8a2bo576NFM,7178
|
|
83
|
+
sentry_sdk/integrations/quart.py,sha256=lql_su_tvgp9QsgGAyckkuuvvoBXAVPIXcyX8vk5MEo,7259
|
|
84
|
+
sentry_sdk/integrations/ray.py,sha256=eM1cSm9jjpyU-4EJd_Ogq0dtD5owIV_1AN61YxMqFYM,4954
|
|
85
|
+
sentry_sdk/integrations/rq.py,sha256=3aHU2LlVm97I_4JZ7hepsVOXRB2DmeMe_jDcot84EFc,6576
|
|
86
|
+
sentry_sdk/integrations/rust_tracing.py,sha256=0hGhkeOuh6j7zudWFx89mswNwItFe9e3zFvliv1ES_w,8627
|
|
87
|
+
sentry_sdk/integrations/sanic.py,sha256=C6ctMCPIYib-meNC-tWUitIVSg4PaQ3-hV62I-emh1U,13079
|
|
88
|
+
sentry_sdk/integrations/serverless.py,sha256=aY3ZZjlF3Sl0uKDfIEvAxfFYIOppV9nKArH2BAlbU0A,1860
|
|
89
|
+
sentry_sdk/integrations/socket.py,sha256=YNRQdXWuBmpFsk-4QIW6i1-5pG_3-Qem4jIfA6t-wp8,3446
|
|
90
|
+
sentry_sdk/integrations/sqlalchemy.py,sha256=JSc45HmsKPWZlRu9y8ctA3pAjcTBIOjCi6tDn4G1oKA,4339
|
|
91
|
+
sentry_sdk/integrations/starlette.py,sha256=Cbw_vcImpWMa4cEj4o7ezBckmj-LINuilqP-9c5MP-c,25232
|
|
92
|
+
sentry_sdk/integrations/starlite.py,sha256=5pHHNF72_XgCytTIqIDKiahTAvr15S-OmGA8N-ylxLk,10525
|
|
93
|
+
sentry_sdk/integrations/statsig.py,sha256=3Abtq8S5EqHUYVaMf61_MiIx5oZfLz09d61Cz97_TSY,1241
|
|
94
|
+
sentry_sdk/integrations/stdlib.py,sha256=g_hUkuO7yZD9TWrHM99EWrcWYFEnobjT8pl2xiHFqq0,10329
|
|
95
|
+
sentry_sdk/integrations/strawberry.py,sha256=DlkcRBw7amGCIeQP6d4XDQ5YwNktg6xcDhGEwnYnyhw,13502
|
|
96
|
+
sentry_sdk/integrations/sys_exit.py,sha256=Ke4DuytNWJgmAIiA7DppkSYRiKREkiKQuh5QOHf763g,2435
|
|
97
|
+
sentry_sdk/integrations/threading.py,sha256=osMR_Xnl61ei1QadLeKnhx-4hjyfGQPOR84ofXXSf4c,4643
|
|
98
|
+
sentry_sdk/integrations/tornado.py,sha256=QFNTjteEJlP4cIc-7MRl5y3ePdOdjf3CrjxPS1l5s3g,8459
|
|
99
|
+
sentry_sdk/integrations/trytond.py,sha256=D2UTrVyLn4uCgnFb68-CnZGkNCa0gBjiQL8bjQ5w-ts,1816
|
|
100
|
+
sentry_sdk/integrations/typer.py,sha256=X-VvPfMn9mOrgt-Pf5uZZyescnFsLXFce83cURy7URo,1832
|
|
101
|
+
sentry_sdk/integrations/unleash.py,sha256=j-kPFRIngkxDDtimFqAe6K8cHwqyLkwGOxMvkN7t82U,1072
|
|
102
|
+
sentry_sdk/integrations/wsgi.py,sha256=IBD-3Be6rewvemqv6BQyiHqwnzLfho5oF9uwYZwxcrc,12146
|
|
103
|
+
sentry_sdk/integrations/celery/__init__.py,sha256=d_JCrfsRKofJ58hKiqe0xUMN5DoBClQ0nec0JUxNZeo,18603
|
|
104
|
+
sentry_sdk/integrations/celery/beat.py,sha256=sSBTGHW1_REj8TwjqL9cXgldocdBsZptFN9lEvG49u0,8823
|
|
105
|
+
sentry_sdk/integrations/celery/utils.py,sha256=0y76wo-14Cvfigqu8L6xPQLW2BATRxOVXWSBLeg_pGo,1158
|
|
106
|
+
sentry_sdk/integrations/django/__init__.py,sha256=flSCcgYOpXEIMA0PcvHccvrHJvHHHCDZTyKS1IwKvUw,24138
|
|
107
|
+
sentry_sdk/integrations/django/asgi.py,sha256=lDEol71TRKpUJgz8V-LC-DQxEzwD_nfoWkblT9ubbQE,8272
|
|
108
|
+
sentry_sdk/integrations/django/caching.py,sha256=oqU-UfAtbm3oAJ6AnbzT_gMecM_wY_Iay_Qb_1hNsXc,6319
|
|
109
|
+
sentry_sdk/integrations/django/middleware.py,sha256=huHLnu85Mi_9mdiIOx0YwCQ-_rIF5AAcBVUbaE7IMJ8,5946
|
|
110
|
+
sentry_sdk/integrations/django/signals_handlers.py,sha256=nYifNy5Q7s0I8E05Gyki62rXd4pAaEi1N4DBRyq0JKg,3165
|
|
111
|
+
sentry_sdk/integrations/django/templates.py,sha256=fP_kBGQboKWzWvm3p9i6_TBofLtHM54DG7pQDrA9yew,5692
|
|
112
|
+
sentry_sdk/integrations/django/transactions.py,sha256=Xk0cTh3kf6yOctADXTgq5zpam0MmhX-IbUXlFDzHrQs,4850
|
|
113
|
+
sentry_sdk/integrations/django/views.py,sha256=dXzf3fnppga6qow7AIZH2GFEo7Yd6UkKA1hxCHPv2mg,3182
|
|
114
|
+
sentry_sdk/integrations/grpc/__init__.py,sha256=CCvwhqSLytsTubvxSgqXskYcp9fC0zQuamcScZHRjnU,5647
|
|
115
|
+
sentry_sdk/integrations/grpc/client.py,sha256=6dhar2UoFZG1_3rHACQJp1Lrbz_WkDCUQlHy5tKjAcg,3539
|
|
116
|
+
sentry_sdk/integrations/grpc/consts.py,sha256=SvBBfyF8F3c_Gnf8rq1IZvTemeqzYEj1zUi7wriNBio,67
|
|
117
|
+
sentry_sdk/integrations/grpc/server.py,sha256=ke12plp6Wk26JdcIxtO3J2Q8lZPHmFwrALanVa95kts,2447
|
|
118
|
+
sentry_sdk/integrations/grpc/aio/__init__.py,sha256=2rgrliowpPfLLw40_2YU6ixSzIu_3f8NN3TRplzc8S8,141
|
|
119
|
+
sentry_sdk/integrations/grpc/aio/client.py,sha256=vT9K7efhknsh53rczSoaJ30kJZ_mvjVx5FFuvBuDHcM,3550
|
|
120
|
+
sentry_sdk/integrations/grpc/aio/server.py,sha256=bq4U0IkeUo8q3-tTXbl3lL595BS46GJQuo-U9cDCwC4,3945
|
|
121
|
+
sentry_sdk/integrations/openai_agents/__init__.py,sha256=N5TnKB90s7cHpM-M5Sf6ZJKKasc6RtYzapTJBiZQ5RY,1360
|
|
122
|
+
sentry_sdk/integrations/openai_agents/consts.py,sha256=PTb3vlqkuMPktu21ALK72o5WMIX4-cewTEiTRdHKFdQ,38
|
|
123
|
+
sentry_sdk/integrations/openai_agents/utils.py,sha256=dxTM5XzNay7W5DInMW2rpDYjUJoG3Aq0U-XqviADRyg,6783
|
|
124
|
+
sentry_sdk/integrations/openai_agents/patches/__init__.py,sha256=I7C9JZ70Mf8PV3wPdFsxTqvcYl4TYUgSZYfNU2Spb7Y,231
|
|
125
|
+
sentry_sdk/integrations/openai_agents/patches/agent_run.py,sha256=bGxx3zcuLPqYD24lpRfT0YeinkForzw21Ppt5UaRBvM,5913
|
|
126
|
+
sentry_sdk/integrations/openai_agents/patches/models.py,sha256=3WTGaXaSCrlKk36VgbojQRY7asycSUl2kvvcroHF3gU,1407
|
|
127
|
+
sentry_sdk/integrations/openai_agents/patches/runner.py,sha256=DYdx0SXI6bGZe3lJrkQrjPBkbkbI4uaLQPcmKj5DG1g,1235
|
|
128
|
+
sentry_sdk/integrations/openai_agents/patches/tools.py,sha256=_td7_F_QTy1GeFwzyHkg87s_D2_vQlrmpF3Z2ai4-iE,3309
|
|
129
|
+
sentry_sdk/integrations/openai_agents/spans/__init__.py,sha256=RlVi781zGsvCJBciDO_EbBbwkakwbP9DoFQBbo4VAEE,353
|
|
130
|
+
sentry_sdk/integrations/openai_agents/spans/agent_workflow.py,sha256=-l--igXl-J_2EKygzJ-R3-Jb0Cx91sm0aH4QrTbw3M8,431
|
|
131
|
+
sentry_sdk/integrations/openai_agents/spans/ai_client.py,sha256=ptdDC3-APeusBaBLlrDhmYkqSC0vLmmMoelRgu0_aq4,1246
|
|
132
|
+
sentry_sdk/integrations/openai_agents/spans/execute_tool.py,sha256=71d0w8axyXkcEF5DKjKGWQYom8yMuiK8brS3FuJN6QY,1293
|
|
133
|
+
sentry_sdk/integrations/openai_agents/spans/handoff.py,sha256=eX5SVq23geAZvcwmhGJ7opSU3t3SVf09OYzPNOhAYXc,576
|
|
134
|
+
sentry_sdk/integrations/openai_agents/spans/invoke_agent.py,sha256=FtQ1tIu38b1kWKfVSrVjTXITocr-CKKXMDp_nFQ_Q-M,1044
|
|
135
|
+
sentry_sdk/integrations/redis/__init__.py,sha256=4Impxkb7WhrdPJ27Kamn5fAeop2gbZJG2o8wTyPub9Q,1366
|
|
136
|
+
sentry_sdk/integrations/redis/_async_common.py,sha256=6YBc5CaZ_zAbbqDaY_Qw0-ZgiG-Ca3IosIxFXluYL30,4645
|
|
137
|
+
sentry_sdk/integrations/redis/_sync_common.py,sha256=91joLQJd49PK9NmcRpwABPllXEBSrLC27ciZH8J528c,4327
|
|
138
|
+
sentry_sdk/integrations/redis/consts.py,sha256=jYhloX935YQ1AR9c8giCVo1FpIuGXkGR_Tfn4LOulNU,480
|
|
139
|
+
sentry_sdk/integrations/redis/rb.py,sha256=VVHSxeggx-rumLnfIUSNexyKZNrKtKmzr6_tgf7SnNc,827
|
|
140
|
+
sentry_sdk/integrations/redis/redis.py,sha256=CHTHa7-WKHwx75YyounQPcrC64BKuY2nmj5V_U7_tgU,1712
|
|
141
|
+
sentry_sdk/integrations/redis/redis_cluster.py,sha256=PiDG5yuTuMA3Fi4VQW03uHE9FAqN2DJoaGxXtU80s0I,3528
|
|
142
|
+
sentry_sdk/integrations/redis/redis_py_cluster_legacy.py,sha256=jC7y1MpBOgz47Gz_L_lyJy6Gnlvd32gB1Em2-ftYdT4,1606
|
|
143
|
+
sentry_sdk/integrations/redis/utils.py,sha256=_q8kuhUHaEou1sswkikQB9CLG_sl52AQbvoBCkX9zK4,4875
|
|
144
|
+
sentry_sdk/integrations/redis/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
145
|
+
sentry_sdk/integrations/redis/modules/caches.py,sha256=H6jw4z733jxyIbLM5c74r9Hv6uCHVJkrx5jKeeTNNdQ,4024
|
|
146
|
+
sentry_sdk/integrations/redis/modules/queries.py,sha256=HaTFBe7xamGJw0VYyJGmHc1eR1HJHd18dD3n9FKn20Q,1994
|
|
147
|
+
sentry_sdk/integrations/spark/__init__.py,sha256=xZuPufQrLxzxZo-KOBsFENCJrGTNFOVClT4nPPC8Yj0,243
|
|
148
|
+
sentry_sdk/integrations/spark/spark_driver.py,sha256=7B96Q3VSstDVG58BoolL8azvGfyjj-DimBMo8xq4TxY,8286
|
|
149
|
+
sentry_sdk/integrations/spark/spark_worker.py,sha256=qRc2d6mFOURxPPyb5sTvcYiyxW1hk3BpqmXO73L6YCw,3653
|
|
150
|
+
sentry_sdk/opentelemetry/__init__.py,sha256=Npi53VwdWHE4YTXyxOUzxGvKnNBHkXa3sozE_jfdzaw,283
|
|
151
|
+
sentry_sdk/opentelemetry/consts.py,sha256=k1lpmm-a6K4TNaOzhW4iIQH48Ztep2jzof39Rpv7Jvg,1388
|
|
152
|
+
sentry_sdk/opentelemetry/contextvars_context.py,sha256=qoZIhur-ZYnpV7StKvw9f2i6DkoJwLe69vIyMFPJyf8,3036
|
|
153
|
+
sentry_sdk/opentelemetry/propagator.py,sha256=z5dQPtD0yC1ToKAHa5vO8tBiuIt9Ry_f4GWYO2jFO8s,3638
|
|
154
|
+
sentry_sdk/opentelemetry/sampler.py,sha256=AC-nrSrweeIzhxz2Sixlkst98juIDu30poiVaCYrP6Y,12113
|
|
155
|
+
sentry_sdk/opentelemetry/scope.py,sha256=SdBh95LcSDzn74NAwNBMo-17pL-Qpf8L86enoxjbZvs,6589
|
|
156
|
+
sentry_sdk/opentelemetry/span_processor.py,sha256=dh1KBlHzef6xDixz4E3jRpYoBj0BGV8ogyksAx7WjDg,11148
|
|
157
|
+
sentry_sdk/opentelemetry/tracing.py,sha256=b8f2SFQE2A8GBE17_GcqLq0VN2gJ7SzySLlsxZ4Yzt4,2757
|
|
158
|
+
sentry_sdk/opentelemetry/utils.py,sha256=tlTPBFbHp0pTm6-z-p38978wg5ca0A7NfuolFE4AeZc,14422
|
|
159
|
+
sentry_sdk/profiler/__init__.py,sha256=bYeDkmLQliS2KkNSOGa8Sx4zN3pjTc3WmYIvbkcGkmQ,153
|
|
160
|
+
sentry_sdk/profiler/continuous_profiler.py,sha256=AXwhI-NI6hx82EnKEy_oNQPPl9nwLQJKcj_QRX6KKAg,21574
|
|
161
|
+
sentry_sdk/profiler/transaction_profiler.py,sha256=gbe9RedrGqPakPi3uY9fUDXp0IcM9djHuVcYUcbDRfg,25381
|
|
162
|
+
sentry_sdk/profiler/utils.py,sha256=cdjpSQ9IAchtMPLWNFGDjZHIXArTbcPtFPEngB9Tb9c,6475
|
|
163
|
+
sentry_sdk-3.0.0a3.dist-info/licenses/LICENSE,sha256=KhQNZg9GKBL6KQvHQNBGMxJsXsRdhLebVp4Sew7t3Qs,1093
|
|
164
|
+
sentry_sdk-3.0.0a3.dist-info/METADATA,sha256=_VmDcp1jbUzv9bOQejIUofwxeOHSwHJbAMS7_nCbAwU,10151
|
|
165
|
+
sentry_sdk-3.0.0a3.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
166
|
+
sentry_sdk-3.0.0a3.dist-info/entry_points.txt,sha256=-FP10-IbDq7-9RSn7JcaVV6-nDwVN2kwvA46zNTNwtk,78
|
|
167
|
+
sentry_sdk-3.0.0a3.dist-info/top_level.txt,sha256=XrQz30XE9FKXSY_yGLrd9bsv2Rk390GTDJOSujYaMxI,11
|
|
168
|
+
sentry_sdk-3.0.0a3.dist-info/RECORD,,
|
|
@@ -1,154 +0,0 @@
|
|
|
1
|
-
sentry_sdk/__init__.py,sha256=avkzRWQUXBqC2lEg48OSHjR3-ZoYUdCr1qd7sZYzWcg,1197
|
|
2
|
-
sentry_sdk/_compat.py,sha256=gyVJQzMNZHmnSXHnZD_Opx7yCjokpf5pxGNFRkjvTQ8,3055
|
|
3
|
-
sentry_sdk/_init_implementation.py,sha256=5SBRkJ8g7ansx5vtY4tDx1GBWX4BsWCVCUq-k_3F3aY,1516
|
|
4
|
-
sentry_sdk/_log_batcher.py,sha256=bBpspIlf1ejxlbudo17bZOSir226LGAdjDe_3kHkOro,5085
|
|
5
|
-
sentry_sdk/_lru_cache.py,sha256=phZMBm9EKU1m67OOApnKCffnlWAlVz9bYjig7CglQuk,1229
|
|
6
|
-
sentry_sdk/_queue.py,sha256=UUzbmliDYmdVYiDA32NMYkX369ElWMFNSj5kodqVQZE,11250
|
|
7
|
-
sentry_sdk/_types.py,sha256=r54HKNUBQgcFAWNx95r_4JawgEjicnWV2oBRUaxtHRs,8834
|
|
8
|
-
sentry_sdk/_werkzeug.py,sha256=m3GPf-jHd8v3eVOfBHaKw5f0uHoLkXrSO1EcY-8EisY,3734
|
|
9
|
-
sentry_sdk/api.py,sha256=KqQ9DMZZnfrmFg6H5lnGSW2or7zs3fYY-V5onVPoAFo,8811
|
|
10
|
-
sentry_sdk/attachments.py,sha256=0Dylhm065O6hNFjB40fWCd5Hg4qWSXndmi1TPWglZkI,3109
|
|
11
|
-
sentry_sdk/client.py,sha256=OPppi-oNVtdQ-cKGVPIGT5kzy1_nviY0ewrqAzD68SM,35770
|
|
12
|
-
sentry_sdk/consts.py,sha256=VVQAShhY3b_9q6wH0llsIiv2N5KL8AR8Bedpqf-Z1es,39472
|
|
13
|
-
sentry_sdk/debug.py,sha256=OK7eLI_Gd-RLEfpFAf2MJ7lGgGX7boPqCJYD4ovrwbo,785
|
|
14
|
-
sentry_sdk/envelope.py,sha256=ARGQtMcpfzRqZdybYT5Jxy4dfB_fRifhmvfAdGFQRDk,10273
|
|
15
|
-
sentry_sdk/feature_flags.py,sha256=mhGRnefU8I2WwTt53O9eEnCDpq40S0LkCJB1Ms-hYmQ,2212
|
|
16
|
-
sentry_sdk/logger.py,sha256=jQQCAVpn4P6cbn_7vkaLZAzxIi8q5FQBFCx26-WRuGA,1660
|
|
17
|
-
sentry_sdk/monitor.py,sha256=7LydPMKjVRR5eFY9rxgvJv0idExA3sSnrZk-1mHu6G4,3710
|
|
18
|
-
sentry_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
-
sentry_sdk/scope.py,sha256=7oXCJBKtxHChUIamoaYy0rCG1U-Bl67wUNi0lH-Fx5w,53006
|
|
20
|
-
sentry_sdk/scrubber.py,sha256=rENmQ35buugDl269bRZuIAtgr27B9SzisJYUF-691pc,6064
|
|
21
|
-
sentry_sdk/serializer.py,sha256=iXiRwTuRj0gcKyHRO0GNTZB1Hmk0LMDiBt6Be7RpGt8,13087
|
|
22
|
-
sentry_sdk/session.py,sha256=TqDVmRKKHUDSmZb4jQR-s8wDt7Fwb6QaG21hawUGWEs,5571
|
|
23
|
-
sentry_sdk/sessions.py,sha256=vKlky9_ABnBGUaOVJNigdoCCFOGoaPDPRYwzuI7x96g,6390
|
|
24
|
-
sentry_sdk/spotlight.py,sha256=93kdd8KxdLfcPaxFnFuqHgYAAL4FCfpK1hiiPoD7Ac4,8678
|
|
25
|
-
sentry_sdk/tracing.py,sha256=hgMdYC6CrgNXFuS0PGiZdo4wyd1u7MMtUdra9IUk7MQ,19227
|
|
26
|
-
sentry_sdk/tracing_utils.py,sha256=TJWottpOkF5jFufhV8OIPZVCbFNTd2NUmv--_WhlM4Q,27317
|
|
27
|
-
sentry_sdk/transport.py,sha256=SQ3femwQaA79U5C-dDLjiOALdVfTJi3AT9mH65DyzCQ,29301
|
|
28
|
-
sentry_sdk/types.py,sha256=NLbnRzww2K3_oGz2GzcC8TdX5L2DXYso1-H1uCv2Hwc,1222
|
|
29
|
-
sentry_sdk/utils.py,sha256=j4tWTtvPQcoYIqNt9z36tWa8DQQ8F0Mk6r4HzpEduqc,60857
|
|
30
|
-
sentry_sdk/worker.py,sha256=VSMaigRMbInVyupSFpBC42bft2oIViea-0C_d9ThnIo,4464
|
|
31
|
-
sentry_sdk/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
|
-
sentry_sdk/ai/monitoring.py,sha256=KNSaTu7B9Ol9Am4b9VXNmg022sjKfnj1kCc4A8wt7SQ,4555
|
|
33
|
-
sentry_sdk/ai/utils.py,sha256=0pTfZkH4H8bVzDLP0gJfTjou5TrxD1xZcdYctgkSq-4,955
|
|
34
|
-
sentry_sdk/crons/__init__.py,sha256=3Zt6g1-pZZ12uRKKsC8QLm3XgJ4K1VYxgVpNNUygOZY,221
|
|
35
|
-
sentry_sdk/crons/api.py,sha256=s3x6SG-jqIdWS-Kj0sAxJv0nz2A3stdGE1UCtQyRUy4,1559
|
|
36
|
-
sentry_sdk/crons/consts.py,sha256=dXqJk5meBSu5rjlGpqAOlkpACnuUi7svQnAFoy1ZNUU,87
|
|
37
|
-
sentry_sdk/crons/decorator.py,sha256=UrjeIqBCbvsuKrfjGkKJbbLBvjw2TQvDWcTO7WwAmrI,3913
|
|
38
|
-
sentry_sdk/integrations/__init__.py,sha256=w5OUgaCOjLsiNwbDypCVw49EVj_XqlAhMjzhlCwVUso,10287
|
|
39
|
-
sentry_sdk/integrations/_asgi_common.py,sha256=8xwx5dFQRnrronAiv9EE1Ahs3im7R_Wbqkx5TCXC42A,3215
|
|
40
|
-
sentry_sdk/integrations/_wsgi_common.py,sha256=BZjAtNlDzLwIJ9oAvqnbU9En3PYKYHdJG4DkTrp2VdY,6682
|
|
41
|
-
sentry_sdk/integrations/aiohttp.py,sha256=eo5NifW1tgJyru6lxtZ5xyKokcHX9Frz3wEJM46-ja8,14095
|
|
42
|
-
sentry_sdk/integrations/anthropic.py,sha256=jDpb-dHz0xan6DhRaWv_OviDMsHs6Wh_3DH0W76wMWM,9528
|
|
43
|
-
sentry_sdk/integrations/argv.py,sha256=GIY7TBFETF8Z0fDzqTXEJldt5XXCDdFNZxpGxP7EPaU,911
|
|
44
|
-
sentry_sdk/integrations/ariadne.py,sha256=C-zKlOrU7jvTWmQHZx0M0tAZNkPPo7Z5-5jXDD92LiU,5834
|
|
45
|
-
sentry_sdk/integrations/arq.py,sha256=wckKLP2g0wMDCxyGa48fgF335SppB7MzQFhw2B97RFk,8145
|
|
46
|
-
sentry_sdk/integrations/asgi.py,sha256=vQG429vlPvGs9qH-mgWtEUoNYI99-rfYQYvr8YbI3WM,12944
|
|
47
|
-
sentry_sdk/integrations/asyncio.py,sha256=fQJtZw3avH8FpR85wNE9rVAPildYTWXzjIoxo25nTEQ,4079
|
|
48
|
-
sentry_sdk/integrations/asyncpg.py,sha256=gw5QDAHfJ45Dpvnlb5Zs2jHcYGFeJPL9xRexpjPeQ_s,6711
|
|
49
|
-
sentry_sdk/integrations/atexit.py,sha256=sY46N2hEvtGuT1DBQhirUXHbjgXjXAm7R_sgiectVKw,1652
|
|
50
|
-
sentry_sdk/integrations/aws_lambda.py,sha256=iD8Wi-Ai2-NKuBvWWUezLe-bgyNVKDzR2RLZXzHgQB4,18123
|
|
51
|
-
sentry_sdk/integrations/beam.py,sha256=qt35UmkA0ng4VNzmwqH9oz7SESU-is9IjFbTJ21ad4U,5182
|
|
52
|
-
sentry_sdk/integrations/boto3.py,sha256=BRmH1bDJaPIMwTj1iOT_OkwMqc-BoTRUZjnizmPgwUc,4963
|
|
53
|
-
sentry_sdk/integrations/bottle.py,sha256=Ezll62T88-CnQpWetTw6t4zWhIXkVjgkAbqJbRwuw20,6614
|
|
54
|
-
sentry_sdk/integrations/chalice.py,sha256=A4K_9FmNUu131El0ctkTmjtyYd184I4hQTlidZcEC54,4699
|
|
55
|
-
sentry_sdk/integrations/clickhouse_driver.py,sha256=m9hEqSA9dCQWBOPac4Dh34LRKHKcam4QANeJTsB96bA,6353
|
|
56
|
-
sentry_sdk/integrations/cloud_resource_context.py,sha256=_gFldMeVHs5pxP5sm8uP7ZKmm6s_5hw3UsnXek9Iw8A,7780
|
|
57
|
-
sentry_sdk/integrations/cohere.py,sha256=QZsLn70w58_Rn-ldTwoUazHhoo8jWrKxmkAivmBtx7A,9332
|
|
58
|
-
sentry_sdk/integrations/dedupe.py,sha256=usREWhtGDFyxVBlIVzyCYj_Qy7NJBJ84FK0B57z11LM,1418
|
|
59
|
-
sentry_sdk/integrations/dramatiq.py,sha256=I09vKWnfiuhdRFCjYYjmE9LOBQvDTPS-KFqf3iHFSsM,5583
|
|
60
|
-
sentry_sdk/integrations/excepthook.py,sha256=tfwpSQuo1b_OmJbNKPPRh90EUjD_OSE4DqqgYY9PVQI,2408
|
|
61
|
-
sentry_sdk/integrations/executing.py,sha256=5lxBAxO5FypY-zTV03AHncGmolmaHd327-3Vrjzskcc,1994
|
|
62
|
-
sentry_sdk/integrations/falcon.py,sha256=FGuG1q2rcwZm3b8HcAnsLHPyKDvRT3Tb7SHYK-lCWc8,8651
|
|
63
|
-
sentry_sdk/integrations/fastapi.py,sha256=Y5zCNeSVE1II0NX-u5eKA7wwCgw_I688ptf8RL5UrhU,4713
|
|
64
|
-
sentry_sdk/integrations/flask.py,sha256=chFuIOYV5redpuVZsGT9peCk8Aw0Y9VgQdeEfa1nraI,8739
|
|
65
|
-
sentry_sdk/integrations/gcp.py,sha256=NSmIf-mpisbLpjV4hiatYR5Wxo-hFKxsJk51NedlK4s,8751
|
|
66
|
-
sentry_sdk/integrations/gnu_backtrace.py,sha256=cVY7t6gjVjeRf4PdnmZrATFqMOZ7-qJu-84xIXOD5R4,2894
|
|
67
|
-
sentry_sdk/integrations/gql.py,sha256=ppC7fjpyQ6jWST-batRt5HtebxE_9IeHbmZ-CJ1TfUU,4179
|
|
68
|
-
sentry_sdk/integrations/graphene.py,sha256=o1hGIt2GDqNFcZzLWwSozIO4VjGhO8Zglo32ftakXUk,4901
|
|
69
|
-
sentry_sdk/integrations/httpx.py,sha256=qMFq7AyNxGEPz6YcWJCdeCMOmnZPNitWhlA-ip9U2YA,6888
|
|
70
|
-
sentry_sdk/integrations/huey.py,sha256=0zmcHBWoDXDldXVrZl5MRMYUgn6X9an0BbzTfDBAJkg,5566
|
|
71
|
-
sentry_sdk/integrations/huggingface_hub.py,sha256=qdWgY3EVa4wvJUX8QeX9geftroTyzzA9pv6V9RUebfc,6570
|
|
72
|
-
sentry_sdk/integrations/langchain.py,sha256=4nwcQterKi2W1LC5rn4zSHK7ZQtWXS5mGHtG9SadImM,17977
|
|
73
|
-
sentry_sdk/integrations/launchdarkly.py,sha256=bvtExuj68xPXZFsQeWTDR-ZBqP087tPuVzP1bNAOZHc,1935
|
|
74
|
-
sentry_sdk/integrations/litestar.py,sha256=Rg163-wzY5wPfL_IlDR82tfultT47_g2zDJgouPtB5Y,11654
|
|
75
|
-
sentry_sdk/integrations/logging.py,sha256=2E2sevnYLIAe3b1WX2Ho9BrO_5s0ME7WnNPv6jv4cAw,13627
|
|
76
|
-
sentry_sdk/integrations/loguru.py,sha256=Yrsgv5yJP9NzbQKOfdhSrJ_M01gmcg954kA32MB44po,3861
|
|
77
|
-
sentry_sdk/integrations/modules.py,sha256=vzLx3Erg77Vl4mnUvAgTg_3teAuWy7zylFpAidBI9I0,820
|
|
78
|
-
sentry_sdk/integrations/openai.py,sha256=rfHJh3LnbmgZj4OttJSSzk9sFgZcEFzpjLPgIRBvKJ8,15615
|
|
79
|
-
sentry_sdk/integrations/openfeature.py,sha256=NXRKnhg0knMKOx_TO_2Z4zSsh4Glgk3tStu-lI99XsE,1235
|
|
80
|
-
sentry_sdk/integrations/pure_eval.py,sha256=OvT76XvllQ_J6ABu3jVNU6KD2QAxnXMtTZ7hqhXNhpY,4581
|
|
81
|
-
sentry_sdk/integrations/pymongo.py,sha256=6blDWS_trV6I4PqF6z3yJTi6993-W13bxGTD55YKqyg,6163
|
|
82
|
-
sentry_sdk/integrations/pyramid.py,sha256=rWO6agrNjw-oduGSvI_8SER89eJFTAPPq7wliDwDXxk,7363
|
|
83
|
-
sentry_sdk/integrations/quart.py,sha256=DQOZwNIHtjdp8sHw3yAWY9of1qsVovpmoJC6X4tVK5s,7432
|
|
84
|
-
sentry_sdk/integrations/ray.py,sha256=9WknIqc8p-wivvcC9Q1KqobuuOVitIPXmMpTASjPsfE,4489
|
|
85
|
-
sentry_sdk/integrations/rq.py,sha256=3l87cVFo_ReNYGKQs-Xs0WnqW3Fc2AeJCsOEgC0icXY,6645
|
|
86
|
-
sentry_sdk/integrations/rust_tracing.py,sha256=FhAXrzyLO6bDqJBAIDz4lsmUkVvf2xp6ViHvM2ZSv6w,8565
|
|
87
|
-
sentry_sdk/integrations/sanic.py,sha256=oX7qJBI6LhPc0PirS4NLdelXBxFMkdxSRDrFHdZZPso,13369
|
|
88
|
-
sentry_sdk/integrations/serverless.py,sha256=npiKJuIy_sEkWT_x0Eu2xSEMiMh_aySqGYlnvIROsYk,1804
|
|
89
|
-
sentry_sdk/integrations/socket.py,sha256=2wO5pbR_1iZRR-yXabsPZ0-zx5V-KXy3QxWdq9UPl0Q,3348
|
|
90
|
-
sentry_sdk/integrations/sqlalchemy.py,sha256=DOfbNjoFjlT6OoFU9swdLbtn3xCm4fEMbfojG0m6RFQ,4392
|
|
91
|
-
sentry_sdk/integrations/starlette.py,sha256=2P1IN3TIhhvkk4892ioWDjCMWDXZYP4KXtH8GJ4U6S4,25681
|
|
92
|
-
sentry_sdk/integrations/starlite.py,sha256=8VMvEuKTqRQghmBEEzyjipj_Y8B1t4-4IVXUQEaH4IU,10705
|
|
93
|
-
sentry_sdk/integrations/statsig.py,sha256=-e57hxHfHo1S13YQKObV65q_UvREyxbR56fnf7bkC9o,1227
|
|
94
|
-
sentry_sdk/integrations/stdlib.py,sha256=CqtEVPvrOb7aokYX-MyOdEBQA1Bc45-7GGePQN1rUXk,10419
|
|
95
|
-
sentry_sdk/integrations/strawberry.py,sha256=ooPdEME9qyDq5lX8FJPBzzmtNpUtbNNuC356iRxZIu8,13604
|
|
96
|
-
sentry_sdk/integrations/sys_exit.py,sha256=AwShgGBWPdiY25aOWDLRAs2RBUKm5T3CrL-Q-zAk0l4,2493
|
|
97
|
-
sentry_sdk/integrations/threading.py,sha256=1kphygBtWeTFevbCVZTS0ykUsFUNcKPF_ucqnJk66C0,4722
|
|
98
|
-
sentry_sdk/integrations/tornado.py,sha256=Fpl2D_yV0euW9SEjzYLCNicgfPcHTUDT50QlZGnT6mo,8596
|
|
99
|
-
sentry_sdk/integrations/trytond.py,sha256=jx8Xrkv24Fx6zDmx3pSOz3DR_tg9dzToy5qp5zsEXQ8,1815
|
|
100
|
-
sentry_sdk/integrations/typer.py,sha256=FQrFgpR9t6yQWF-oWCI9KJLFioEnA2c_1BEtYV-mPAs,1815
|
|
101
|
-
sentry_sdk/integrations/unleash.py,sha256=6JshqyuAY_kbu9Nr20tMOhtgx-ryqPHCrq_EQIzeqm4,1058
|
|
102
|
-
sentry_sdk/integrations/wsgi.py,sha256=yBRc0vLD4ci0AGn9PWP5hprHSQ9HBXhkwyCaB7ThnlA,12374
|
|
103
|
-
sentry_sdk/integrations/celery/__init__.py,sha256=rtSPr7XOvyiW-CNooZ7FRXbI0ZBeL-AQFmao1Xo5N0g,18978
|
|
104
|
-
sentry_sdk/integrations/celery/beat.py,sha256=wIRqiY8lsi-PwAnMwsqVDoAbkMlGDacOE5_xaYgRj_Q,8947
|
|
105
|
-
sentry_sdk/integrations/celery/utils.py,sha256=CMWQOpg9yniEkm3WlXe7YakJfVnLwaY0-jyeo2GX-ZI,1208
|
|
106
|
-
sentry_sdk/integrations/django/__init__.py,sha256=kmX9-Ks7DC9UQn6ygzzPwDyHxADnkloY_qMIJ-u-Tyo,24565
|
|
107
|
-
sentry_sdk/integrations/django/asgi.py,sha256=1_Sjyp9Gr9b26krrFS6mN84NIeMssLtrQs-moUqXFBw,8439
|
|
108
|
-
sentry_sdk/integrations/django/caching.py,sha256=dwnl_xVU_Qn1dedX54k7IwCnkHun4PXQ-V1edU9zY3I,6367
|
|
109
|
-
sentry_sdk/integrations/django/middleware.py,sha256=ZW4crjGSA2A8pKWeTZOn8UpoHDVde86kaYbtHG3NYIQ,6042
|
|
110
|
-
sentry_sdk/integrations/django/signals_handlers.py,sha256=f2zP-QvqCtKHBazf4oC4a0pUg3Hw5UQO4zHZ9JRZkqk,3175
|
|
111
|
-
sentry_sdk/integrations/django/templates.py,sha256=poCaPxfZ_SH8d53aj6t2Pk4q8eyE8rqPbfEoFpevNhU,5711
|
|
112
|
-
sentry_sdk/integrations/django/transactions.py,sha256=RTAyHlL8LCW6R6xd3Wj9Lt9fXbnqvJVM_YBPrLqPcbU,4842
|
|
113
|
-
sentry_sdk/integrations/django/views.py,sha256=mOtgGuVpVIlO5NLXFyjSMmcFBBeOaQ73h6MH0FFFl5s,3232
|
|
114
|
-
sentry_sdk/integrations/grpc/__init__.py,sha256=yPPAF18F9FE3IYGdyUrdR4yEF6T1T4xxd1TbDkEh3Do,4998
|
|
115
|
-
sentry_sdk/integrations/grpc/client.py,sha256=WkEBXBMBbIk1zXbqZj8QAsQY4BoOGD9dxZ0MXWCbU3Q,3478
|
|
116
|
-
sentry_sdk/integrations/grpc/consts.py,sha256=NpsN5gKWDmtGtVK_L5HscgFZBHqjOpmLJLGKyh8GZBA,31
|
|
117
|
-
sentry_sdk/integrations/grpc/server.py,sha256=H3FLBu3ilkrygMoYrqQZvMQaVj9q_ymkBbGjiRxgEZg,2428
|
|
118
|
-
sentry_sdk/integrations/grpc/aio/__init__.py,sha256=2rgrliowpPfLLw40_2YU6ixSzIu_3f8NN3TRplzc8S8,141
|
|
119
|
-
sentry_sdk/integrations/grpc/aio/client.py,sha256=vT9K7efhknsh53rczSoaJ30kJZ_mvjVx5FFuvBuDHcM,3550
|
|
120
|
-
sentry_sdk/integrations/grpc/aio/server.py,sha256=1tGBIcm8pyuVYw5LzapnO1sIK86Lk-LhCimlHu-y-Ag,4005
|
|
121
|
-
sentry_sdk/integrations/redis/__init__.py,sha256=As5XhbOue-9Sy9d8Vr8cZagbO_Bc0uG8n2G3YNMP7TU,1332
|
|
122
|
-
sentry_sdk/integrations/redis/_async_common.py,sha256=Iie5twWxpzMQmsYNAy2KElNTe54IQSPQz5XlXXYn6pU,4418
|
|
123
|
-
sentry_sdk/integrations/redis/_sync_common.py,sha256=k4Jl7wJi-vIvVgOr0EyKI2JQAi-OCJEvIf4L9dxmUus,4160
|
|
124
|
-
sentry_sdk/integrations/redis/consts.py,sha256=jYhloX935YQ1AR9c8giCVo1FpIuGXkGR_Tfn4LOulNU,480
|
|
125
|
-
sentry_sdk/integrations/redis/rb.py,sha256=LjzhGxgiZciZKXbYN3C_gqYCdakiKSvFfloGr1URcqQ,806
|
|
126
|
-
sentry_sdk/integrations/redis/redis.py,sha256=z3Kc8bPbvXpXfewLhTpaNMzovHfDKh5NF-zq9_IsX2o,1702
|
|
127
|
-
sentry_sdk/integrations/redis/redis_cluster.py,sha256=2GwSFKxOkpBix_uR7uQcTd-wfjqjXd_koSRNSpPEgOs,3334
|
|
128
|
-
sentry_sdk/integrations/redis/redis_py_cluster_legacy.py,sha256=NJWxpY3btWWyjKMko9V4YS9MXsglDSezIPPIG_T1jPk,1585
|
|
129
|
-
sentry_sdk/integrations/redis/utils.py,sha256=FsEkY4y8pOAJVeCddnhsvUy1mJBmx09zXXVeJMnaTQs,4957
|
|
130
|
-
sentry_sdk/integrations/redis/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
131
|
-
sentry_sdk/integrations/redis/modules/caches.py,sha256=RP1TTZkeDwCNMeIBiPJQpCbiY9MdoGDjixsV4L25Mp0,3997
|
|
132
|
-
sentry_sdk/integrations/redis/modules/queries.py,sha256=9egWzYjGOJzoLvMagGivH0x-IQoYP0YpajmREPHjzXA,1999
|
|
133
|
-
sentry_sdk/integrations/spark/__init__.py,sha256=oOewMErnZk2rzNvIlZO6URxQexu9bUJuSLM2m_zECy8,208
|
|
134
|
-
sentry_sdk/integrations/spark/spark_driver.py,sha256=mqGQMngDAZWM78lWK5S0FPpmjd1Q65Ta5T4bOH6mNXs,9465
|
|
135
|
-
sentry_sdk/integrations/spark/spark_worker.py,sha256=FGT4yRU2X_iQCC46aasMmvJfYOKmBip8KbDF_wnhvEY,3706
|
|
136
|
-
sentry_sdk/opentelemetry/__init__.py,sha256=Npi53VwdWHE4YTXyxOUzxGvKnNBHkXa3sozE_jfdzaw,283
|
|
137
|
-
sentry_sdk/opentelemetry/consts.py,sha256=LnWze9RVEjtTEVuTknF8nEGasC0U0jRDGVOmhr2eICA,1088
|
|
138
|
-
sentry_sdk/opentelemetry/contextvars_context.py,sha256=q9AKfuDAF0pyEDtOFiz9XrlzjUGeo11eLODbigZYEzM,2623
|
|
139
|
-
sentry_sdk/opentelemetry/propagator.py,sha256=WUJmeCQ5RVrDy_8eA00WATvdv5rOv9ZRxu9tQTuRyes,3447
|
|
140
|
-
sentry_sdk/opentelemetry/sampler.py,sha256=OXCMz2BN5OWApY2uf1DtW6UbPi6hDuwEMNIerY4f2xs,12231
|
|
141
|
-
sentry_sdk/opentelemetry/scope.py,sha256=5UId5GYG1fb8AsfhpVkokIJqx3_03HrbPxzJf_kcZ2g,6548
|
|
142
|
-
sentry_sdk/opentelemetry/span_processor.py,sha256=BOFgmkEcYKmBsE6tt2Sxa9Rhk4wznaQGp9u4vmnRaH4,11108
|
|
143
|
-
sentry_sdk/opentelemetry/tracing.py,sha256=bD_S_Ruu8HbYwQ6OTM-1_xOqTOcNC5wjjMPM7mIWeIc,1118
|
|
144
|
-
sentry_sdk/opentelemetry/utils.py,sha256=i14B_zcWYcP1dhZOyeoY1D0TbFySvNAiBaxxMuOJz4s,14807
|
|
145
|
-
sentry_sdk/profiler/__init__.py,sha256=bYeDkmLQliS2KkNSOGa8Sx4zN3pjTc3WmYIvbkcGkmQ,153
|
|
146
|
-
sentry_sdk/profiler/continuous_profiler.py,sha256=pm3LpasUjvTS1qk6rNT-AzuKb6ym81481aoq0l5r398,21655
|
|
147
|
-
sentry_sdk/profiler/transaction_profiler.py,sha256=o3UZ6J8LrrRbZATuJyQtcno-BlawiM5OmlOa8e2cNyQ,26109
|
|
148
|
-
sentry_sdk/profiler/utils.py,sha256=G5s4tYai9ATJqcHrQ3bOIxlK6jIaHzELrDtU5k3N4HI,6556
|
|
149
|
-
sentry_sdk-3.0.0a1.dist-info/licenses/LICENSE,sha256=KhQNZg9GKBL6KQvHQNBGMxJsXsRdhLebVp4Sew7t3Qs,1093
|
|
150
|
-
sentry_sdk-3.0.0a1.dist-info/METADATA,sha256=aZLn-LkBdHFMpdjG8XGcsU-mnNP4eNNneRevqA8cMvY,10161
|
|
151
|
-
sentry_sdk-3.0.0a1.dist-info/WHEEL,sha256=oSJJyWjO7Z2XSScFQUpXG1HL-N0sFMqqeKVVbZTPkWc,109
|
|
152
|
-
sentry_sdk-3.0.0a1.dist-info/entry_points.txt,sha256=-FP10-IbDq7-9RSn7JcaVV6-nDwVN2kwvA46zNTNwtk,78
|
|
153
|
-
sentry_sdk-3.0.0a1.dist-info/top_level.txt,sha256=XrQz30XE9FKXSY_yGLrd9bsv2Rk390GTDJOSujYaMxI,11
|
|
154
|
-
sentry_sdk-3.0.0a1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|