sentry-sdk 3.0.0a3__py2.py3-none-any.whl → 3.0.0a5__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 +3 -0
- sentry_sdk/ai/monitoring.py +7 -7
- sentry_sdk/ai/utils.py +5 -1
- sentry_sdk/api.py +73 -0
- sentry_sdk/client.py +10 -7
- sentry_sdk/consts.py +148 -8
- sentry_sdk/integrations/aiohttp.py +1 -1
- sentry_sdk/integrations/anthropic.py +1 -1
- sentry_sdk/integrations/arq.py +1 -1
- sentry_sdk/integrations/asyncio.py +1 -1
- sentry_sdk/integrations/asyncpg.py +1 -1
- sentry_sdk/integrations/boto3.py +2 -2
- sentry_sdk/integrations/celery/__init__.py +4 -3
- sentry_sdk/integrations/clickhouse_driver.py +1 -1
- sentry_sdk/integrations/cohere.py +2 -2
- sentry_sdk/integrations/django/__init__.py +12 -2
- sentry_sdk/integrations/django/asgi.py +1 -1
- sentry_sdk/integrations/django/caching.py +1 -1
- sentry_sdk/integrations/django/middleware.py +1 -1
- sentry_sdk/integrations/django/signals_handlers.py +1 -1
- sentry_sdk/integrations/django/templates.py +2 -2
- sentry_sdk/integrations/django/views.py +2 -2
- sentry_sdk/integrations/gnu_backtrace.py +3 -14
- sentry_sdk/integrations/graphene.py +1 -1
- sentry_sdk/integrations/grpc/aio/client.py +2 -2
- sentry_sdk/integrations/grpc/client.py +2 -2
- sentry_sdk/integrations/httpx.py +2 -2
- sentry_sdk/integrations/huey.py +1 -1
- sentry_sdk/integrations/huggingface_hub.py +1 -1
- sentry_sdk/integrations/langchain.py +1 -1
- sentry_sdk/integrations/litestar.py +3 -3
- sentry_sdk/integrations/logging.py +1 -1
- sentry_sdk/integrations/loguru.py +1 -1
- sentry_sdk/integrations/openai.py +339 -134
- sentry_sdk/integrations/openai_agents/utils.py +1 -49
- sentry_sdk/integrations/openfeature.py +4 -5
- sentry_sdk/integrations/pymongo.py +1 -1
- sentry_sdk/integrations/ray.py +1 -1
- sentry_sdk/integrations/redis/_async_common.py +3 -3
- sentry_sdk/integrations/redis/_sync_common.py +3 -3
- sentry_sdk/integrations/rust_tracing.py +1 -1
- sentry_sdk/integrations/socket.py +2 -2
- sentry_sdk/integrations/starlette.py +3 -3
- sentry_sdk/integrations/starlite.py +4 -4
- sentry_sdk/integrations/stdlib.py +4 -4
- sentry_sdk/integrations/strawberry.py +1 -1
- sentry_sdk/integrations/threading.py +1 -1
- sentry_sdk/opentelemetry/scope.py +13 -1
- sentry_sdk/opentelemetry/span_processor.py +1 -0
- sentry_sdk/serializer.py +8 -11
- sentry_sdk/tracing.py +9 -4
- sentry_sdk/tracing_utils.py +3 -3
- sentry_sdk/utils.py +46 -0
- {sentry_sdk-3.0.0a3.dist-info → sentry_sdk-3.0.0a5.dist-info}/METADATA +1 -1
- {sentry_sdk-3.0.0a3.dist-info → sentry_sdk-3.0.0a5.dist-info}/RECORD +59 -59
- {sentry_sdk-3.0.0a3.dist-info → sentry_sdk-3.0.0a5.dist-info}/WHEEL +0 -0
- {sentry_sdk-3.0.0a3.dist-info → sentry_sdk-3.0.0a5.dist-info}/entry_points.txt +0 -0
- {sentry_sdk-3.0.0a3.dist-info → sentry_sdk-3.0.0a5.dist-info}/licenses/LICENSE +0 -0
- {sentry_sdk-3.0.0a3.dist-info → sentry_sdk-3.0.0a5.dist-info}/top_level.txt +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
sentry_sdk/__init__.py,sha256=
|
|
1
|
+
sentry_sdk/__init__.py,sha256=C3U0psDzNPIoYrHqjV1w5TXU6xJWUGHe1e0y58ODF3c,1309
|
|
2
2
|
sentry_sdk/_compat.py,sha256=wP2ZOiqdpaVaC2IPh3O-GwDK1H-3-momIn5bmMNrCGY,2969
|
|
3
3
|
sentry_sdk/_init_implementation.py,sha256=PJrU7NZTWOE7hH2n_odcs1E3Nc_2TK2ilLwn5trJXns,1521
|
|
4
4
|
sentry_sdk/_log_batcher.py,sha256=Ugg89Q1hnNgNfBV2-SUl_8qJN9Qy-Ux8qWw7VQR0KXo,4840
|
|
@@ -6,10 +6,10 @@ sentry_sdk/_lru_cache.py,sha256=H_BCecDD-7qSmcI0c6Q8i1nzBJMRBLFqXuax-ofh6wg,1189
|
|
|
6
6
|
sentry_sdk/_queue.py,sha256=AWE9LpaPhNm4VEUiY3TJWIXfAw44D-dgFXuhZdBHF-k,11119
|
|
7
7
|
sentry_sdk/_types.py,sha256=owny4XuTQM31ljk5SEGS2x-bfanue26OE5qkgWE5e5Y,8647
|
|
8
8
|
sentry_sdk/_werkzeug.py,sha256=qEPz7ZYBeBkILq3snw0GnaZQbt5mItMQO9JQ3YDCCgg,3702
|
|
9
|
-
sentry_sdk/api.py,sha256=
|
|
9
|
+
sentry_sdk/api.py,sha256=muzQWcZ0O_9Gw-62NA-GC827E9zkxhRhvD6GPK5W0Vo,10824
|
|
10
10
|
sentry_sdk/attachments.py,sha256=la0cbz1yc8cV4PQyM3kgArvWjGWtjxq945wgiKdaoCs,3046
|
|
11
|
-
sentry_sdk/client.py,sha256=
|
|
12
|
-
sentry_sdk/consts.py,sha256=
|
|
11
|
+
sentry_sdk/client.py,sha256=SYX-kvGdrNzmr0drB0J7gNkF5tbBVWpMMYopJwLR3ys,35284
|
|
12
|
+
sentry_sdk/consts.py,sha256=6Ua20kG1lXeuq7GzKmwnT-oDcOC7zwBClBW1LRSfQn8,50993
|
|
13
13
|
sentry_sdk/debug.py,sha256=ac50G-ZSRUTLhu6VVaJnc4sGsQM1lIN6qWR1AS4oTH4,773
|
|
14
14
|
sentry_sdk/envelope.py,sha256=2Bmjlm7bctrtkYeWVPNGBHBAL6pMFtULUXCONeq6QY8,9118
|
|
15
15
|
sentry_sdk/feature_flags.py,sha256=uLIi4SjN1EuFP59AduFS5dIzqUYOidPZUCZjuqrAbhg,2144
|
|
@@ -18,19 +18,19 @@ sentry_sdk/monitor.py,sha256=TXiAhPyQTgeQyK35JCFedvO_CFLVYI8_DbUbdO83fKA,3443
|
|
|
18
18
|
sentry_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
19
|
sentry_sdk/scope.py,sha256=z853f7t45oni1nlDlPLJfQBkiDgGEc__gYEOtcyXz_o,51773
|
|
20
20
|
sentry_sdk/scrubber.py,sha256=NYMTKALIIHCu1aZaTThR3qsmcvCA4hcKpzWUacEbWpg,6006
|
|
21
|
-
sentry_sdk/serializer.py,sha256=
|
|
21
|
+
sentry_sdk/serializer.py,sha256=twylwvlYrP67Mq4AXVQEuNeeOVAkyIdnyvBj8yLwq7U,12360
|
|
22
22
|
sentry_sdk/session.py,sha256=UunkzHmyV7rZu2a6kWMB5BZNJnQc9WiEkJnPu5aHjto,5097
|
|
23
23
|
sentry_sdk/sessions.py,sha256=0puTgebSwYPNH6zq004QLe1q4VM7XOK8iCzsFfcGLzs,6069
|
|
24
24
|
sentry_sdk/spotlight.py,sha256=mHFbVED17LBAaVdRJbNfE9c9NmknWTZ4Y3lkYkJkJuI,8492
|
|
25
|
-
sentry_sdk/tracing.py,sha256=
|
|
26
|
-
sentry_sdk/tracing_utils.py,sha256=
|
|
25
|
+
sentry_sdk/tracing.py,sha256=NdAKEAHg6Eycs9-dhVW2gCk0WWNlMXrtY0qrgz2WS5U,17869
|
|
26
|
+
sentry_sdk/tracing_utils.py,sha256=osw7NwUO3vJWB1cFQgrJEao4qYWF6mRvx_-u09zxhu4,27000
|
|
27
27
|
sentry_sdk/transport.py,sha256=MBUPJR8ZV-AtYdDRX342I_OSIhgo9h89qofTVGgajHI,28353
|
|
28
28
|
sentry_sdk/types.py,sha256=NLbnRzww2K3_oGz2GzcC8TdX5L2DXYso1-H1uCv2Hwc,1222
|
|
29
|
-
sentry_sdk/utils.py,sha256=
|
|
29
|
+
sentry_sdk/utils.py,sha256=difP_k8p9IEEtZiXBh0eQ4YuO_nU-XztZKZXnnkSMwM,60161
|
|
30
30
|
sentry_sdk/worker.py,sha256=eJMHzB7V4o1GxKdHCBuqKJqE3UkKtNCQ6AMsDH_wDaQ,4236
|
|
31
31
|
sentry_sdk/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
|
-
sentry_sdk/ai/monitoring.py,sha256=
|
|
33
|
-
sentry_sdk/ai/utils.py,sha256=
|
|
32
|
+
sentry_sdk/ai/monitoring.py,sha256=PYoM1Iqe4ujcGuqDx9HLvD_b0YE1qr1uwRoyPm4HQmE,5039
|
|
33
|
+
sentry_sdk/ai/utils.py,sha256=fRJ8nBuX9EZ-jgoAD1BGnQ3CvahTLdWdek4r0yDuvpQ,1084
|
|
34
34
|
sentry_sdk/crons/__init__.py,sha256=3Zt6g1-pZZ12uRKKsC8QLm3XgJ4K1VYxgVpNNUygOZY,221
|
|
35
35
|
sentry_sdk/crons/api.py,sha256=eNvLll2wbehlVtHLt5Pt7E3205tHADdjBRx8Ks8mVwI,1477
|
|
36
36
|
sentry_sdk/crons/consts.py,sha256=dXqJk5meBSu5rjlGpqAOlkpACnuUi7svQnAFoy1ZNUU,87
|
|
@@ -38,23 +38,23 @@ sentry_sdk/crons/decorator.py,sha256=-Tx2HSIrp2xRASY4I0s-RIIUfJXVHjyEG1OjziapXXI
|
|
|
38
38
|
sentry_sdk/integrations/__init__.py,sha256=Cv9I64hgNqix7spLFYqgoBBOqSaw1kcGkMXvaD5F4Ks,10280
|
|
39
39
|
sentry_sdk/integrations/_asgi_common.py,sha256=MO1mio-2giVjMIY_h4A4WLec8Fk0_FM0OWRQs6PlkuU,3081
|
|
40
40
|
sentry_sdk/integrations/_wsgi_common.py,sha256=2h3cPID7WU2c9MOz2ccPwx0S2UEKeZZh7UBub28yZhE,6448
|
|
41
|
-
sentry_sdk/integrations/aiohttp.py,sha256=
|
|
42
|
-
sentry_sdk/integrations/anthropic.py,sha256=
|
|
41
|
+
sentry_sdk/integrations/aiohttp.py,sha256=Bc4tRJHBy8VVuvp1UCrHU_wFLJmpdH0k25sQRwuJKKE,13987
|
|
42
|
+
sentry_sdk/integrations/anthropic.py,sha256=BVkjCKO7-TntGue2TJGNnfQ-SwHIqrnwehQz90FdbaA,9491
|
|
43
43
|
sentry_sdk/integrations/argv.py,sha256=QlNw7gOcRttPY-bu6gh1SPo-GZtD60HHRzZ201c1Gmk,906
|
|
44
44
|
sentry_sdk/integrations/ariadne.py,sha256=JqtxiXTL6JZPl2eO_cffARADPN4x5fS76Li5k4DV0lA,5766
|
|
45
|
-
sentry_sdk/integrations/arq.py,sha256=
|
|
45
|
+
sentry_sdk/integrations/arq.py,sha256=iwLsHiQnl3T7POXUZjkFIPxqrvhu5AFMpno_YEo99KM,8002
|
|
46
46
|
sentry_sdk/integrations/asgi.py,sha256=H7peBFu0OaRgloR3IfyixnBuDL_HunCM_flubt4KKGI,13734
|
|
47
|
-
sentry_sdk/integrations/asyncio.py,sha256=
|
|
48
|
-
sentry_sdk/integrations/asyncpg.py,sha256=
|
|
47
|
+
sentry_sdk/integrations/asyncio.py,sha256=remZZbhGVt8tKjaCDSinrRvR895AOTOIDIeWsfxk2dA,4039
|
|
48
|
+
sentry_sdk/integrations/asyncpg.py,sha256=BVIiwjaut7OPoTIms71fPfCcuVmWNxg3xkfQlgiH-Dg,6715
|
|
49
49
|
sentry_sdk/integrations/atexit.py,sha256=fS2Lq8b3yZKMSVHi0tk6rkfvsO9s5yYja2vEfQLyK1E,1600
|
|
50
50
|
sentry_sdk/integrations/aws_lambda.py,sha256=Gsug-Aj4FI9qEumvJbZ0kwE6P8GmoR9oHfqncrV4pb8,17912
|
|
51
51
|
sentry_sdk/integrations/beam.py,sha256=J-QI9EFC9oAH3T53iVu7P1jNasU8fXo3_qSqYNvgTJE,5070
|
|
52
|
-
sentry_sdk/integrations/boto3.py,sha256=
|
|
52
|
+
sentry_sdk/integrations/boto3.py,sha256=EE624btdiWAFKknVx3Kr1G1m31t3LaKHPHgTLEaXFJg,4902
|
|
53
53
|
sentry_sdk/integrations/bottle.py,sha256=c6t5vpcuM1mQ1VwtDJev0XBno1WA05XPYcsLZdOwURQ,6368
|
|
54
54
|
sentry_sdk/integrations/chalice.py,sha256=p3su2fdeJ2Q3-oGoS2NE8dQ6HpPfpdBOsU9dEykJ3M4,4667
|
|
55
|
-
sentry_sdk/integrations/clickhouse_driver.py,sha256=
|
|
55
|
+
sentry_sdk/integrations/clickhouse_driver.py,sha256=SV1qVCgmBOgYmWjM7zjtZhob_LY3BVcVB8eK-xxS58k,6028
|
|
56
56
|
sentry_sdk/integrations/cloud_resource_context.py,sha256=ATrQpn2ZASgd4DWjibEZKKI2ktkxz4aFbqy4IOEVJr8,7667
|
|
57
|
-
sentry_sdk/integrations/cohere.py,sha256=
|
|
57
|
+
sentry_sdk/integrations/cohere.py,sha256=cwax1pOzaOxcIhulZKpWJLPpRa7JhNEbqtViTnbPu3c,9284
|
|
58
58
|
sentry_sdk/integrations/dedupe.py,sha256=zIcWT4-HIBOdHr-Hjb1LfDND8_CNdt75a5xGZnYVuDs,1375
|
|
59
59
|
sentry_sdk/integrations/dramatiq.py,sha256=D2o_2gtejh4_GOSatJslhHnG00CY7hMVeUNFc-u7Qlg,5504
|
|
60
60
|
sentry_sdk/integrations/excepthook.py,sha256=91R2NQa1whur-csRA0mcOJTFpmRhx4DgruQ64HvoVmA,2399
|
|
@@ -63,64 +63,64 @@ sentry_sdk/integrations/falcon.py,sha256=CfavMfULBlt074klwB4pPdNbxyILs3aoozMM2z7
|
|
|
63
63
|
sentry_sdk/integrations/fastapi.py,sha256=21Qd-tRGJts1AAtb64NpSy060ErPpixGWqjyR1V3LN0,4611
|
|
64
64
|
sentry_sdk/integrations/flask.py,sha256=0HpWBJgtFETgsJLPd8CB1oSlOvuhO4qw-2bbJ5SqMp4,8495
|
|
65
65
|
sentry_sdk/integrations/gcp.py,sha256=qTgCT1Pih0vJs8IplgdY7ZRBZHcwQmCQtmbU8hTqj7A,8683
|
|
66
|
-
sentry_sdk/integrations/gnu_backtrace.py,sha256
|
|
66
|
+
sentry_sdk/integrations/gnu_backtrace.py,sha256=-3-9Q10HiZAo9V-mz7HDwLJgsfTTUgpklOI33DXjcY4,2640
|
|
67
67
|
sentry_sdk/integrations/gql.py,sha256=URXmOxpct_Ign2gm_CeFZ0hsnLWXfz44PiMsqWjSJhs,4113
|
|
68
|
-
sentry_sdk/integrations/graphene.py,sha256=
|
|
69
|
-
sentry_sdk/integrations/httpx.py,sha256=
|
|
70
|
-
sentry_sdk/integrations/huey.py,sha256=
|
|
71
|
-
sentry_sdk/integrations/huggingface_hub.py,sha256=
|
|
72
|
-
sentry_sdk/integrations/langchain.py,sha256=
|
|
68
|
+
sentry_sdk/integrations/graphene.py,sha256=rMnEJePLX-xUNRuhN-RspCM3bvL3i9MjeYYZ1ztQhzA,4880
|
|
69
|
+
sentry_sdk/integrations/httpx.py,sha256=mmRwid7YjTcMfQeU7agD-Y0J7WephIILSjJGfPNIgI0,6837
|
|
70
|
+
sentry_sdk/integrations/huey.py,sha256=MxrFIEVSBFZx8jIhDXjCnaPWzXilswoDLBXMXkf4RWs,5462
|
|
71
|
+
sentry_sdk/integrations/huggingface_hub.py,sha256=BwzdOrC8-wvtO6HCZ2Ueualyth5jqcxk6dQB-3mumoE,6647
|
|
72
|
+
sentry_sdk/integrations/langchain.py,sha256=kk3bp0nO5I-LH4IPkKLlv9L0Jq0ds8MNa3IXjBhwmb0,19497
|
|
73
73
|
sentry_sdk/integrations/launchdarkly.py,sha256=r2YvHBPwy7loZoHN-BmC5f5-bIkd-0g4DPwIwEzaYNI,1936
|
|
74
|
-
sentry_sdk/integrations/litestar.py,sha256=
|
|
75
|
-
sentry_sdk/integrations/logging.py,sha256=
|
|
76
|
-
sentry_sdk/integrations/loguru.py,sha256=
|
|
74
|
+
sentry_sdk/integrations/litestar.py,sha256=_3huh3PLzrYF-bYGKzUA6Ux5VBtMey-9vPWO2RUBj3U,11785
|
|
75
|
+
sentry_sdk/integrations/logging.py,sha256=dYi5bSpucv_3nYtQ5FMcK9B5CdjtsNbqGgg4wwsIdiI,13477
|
|
76
|
+
sentry_sdk/integrations/loguru.py,sha256=fqaTo6XqbMrg_GVy6lkPd7clS1guXBTz8B24VM-o4sw,6105
|
|
77
77
|
sentry_sdk/integrations/modules.py,sha256=d-srhrbekzrbRA66kRuSoG8ZLPe_ATGj7scnZOxtGHs,815
|
|
78
|
-
sentry_sdk/integrations/openai.py,sha256=
|
|
79
|
-
sentry_sdk/integrations/openfeature.py,sha256=
|
|
78
|
+
sentry_sdk/integrations/openai.py,sha256=X4ApUTbWfVrZRc84Oo7nZXWC0nnBUAPM0XvIoNnYWco,22510
|
|
79
|
+
sentry_sdk/integrations/openfeature.py,sha256=Hjp0sX23YuS-7F04Tt1FE06cVphzEMABn4_tB1idMCo,1167
|
|
80
80
|
sentry_sdk/integrations/pure_eval.py,sha256=mOA2Y-yk6EQEnKc5BWdduV4FLosvGpk4Mxrnl7iiRK4,4525
|
|
81
|
-
sentry_sdk/integrations/pymongo.py,sha256=
|
|
81
|
+
sentry_sdk/integrations/pymongo.py,sha256=6QESkEspzdtLO3bOwRoTk58IeKhRlAmt_D9ubwgduxI,6085
|
|
82
82
|
sentry_sdk/integrations/pyramid.py,sha256=pRKxzyIJT4nUgrhhAyR-IeTkfgl36e9i8a2bo576NFM,7178
|
|
83
83
|
sentry_sdk/integrations/quart.py,sha256=lql_su_tvgp9QsgGAyckkuuvvoBXAVPIXcyX8vk5MEo,7259
|
|
84
|
-
sentry_sdk/integrations/ray.py,sha256=
|
|
84
|
+
sentry_sdk/integrations/ray.py,sha256=WSyuggzfYD5AnISB7psi_QFr-oX_w0YjQ9i_nvJaC2A,4958
|
|
85
85
|
sentry_sdk/integrations/rq.py,sha256=3aHU2LlVm97I_4JZ7hepsVOXRB2DmeMe_jDcot84EFc,6576
|
|
86
|
-
sentry_sdk/integrations/rust_tracing.py,sha256=
|
|
86
|
+
sentry_sdk/integrations/rust_tracing.py,sha256=p1NRiCcXIQsOvnofzJeYx8Y-3UFR4Yw3BGQgLyeRxAc,8631
|
|
87
87
|
sentry_sdk/integrations/sanic.py,sha256=C6ctMCPIYib-meNC-tWUitIVSg4PaQ3-hV62I-emh1U,13079
|
|
88
88
|
sentry_sdk/integrations/serverless.py,sha256=aY3ZZjlF3Sl0uKDfIEvAxfFYIOppV9nKArH2BAlbU0A,1860
|
|
89
|
-
sentry_sdk/integrations/socket.py,sha256=
|
|
89
|
+
sentry_sdk/integrations/socket.py,sha256=B0SYwJFCo_3UbG9l5YhIa_E8GBWsJYg8ddxRBajwU9I,3454
|
|
90
90
|
sentry_sdk/integrations/sqlalchemy.py,sha256=JSc45HmsKPWZlRu9y8ctA3pAjcTBIOjCi6tDn4G1oKA,4339
|
|
91
|
-
sentry_sdk/integrations/starlette.py,sha256=
|
|
92
|
-
sentry_sdk/integrations/starlite.py,sha256=
|
|
91
|
+
sentry_sdk/integrations/starlette.py,sha256=EMukyRLrUFQhtYlOiB446qk_PynOqOy6ZGeiWDUy4bw,25244
|
|
92
|
+
sentry_sdk/integrations/starlite.py,sha256=HE08ZcvXUIE_u642cZtY3dRaMvUYqlMURUTcoySENv8,10521
|
|
93
93
|
sentry_sdk/integrations/statsig.py,sha256=3Abtq8S5EqHUYVaMf61_MiIx5oZfLz09d61Cz97_TSY,1241
|
|
94
|
-
sentry_sdk/integrations/stdlib.py,sha256=
|
|
95
|
-
sentry_sdk/integrations/strawberry.py,sha256=
|
|
94
|
+
sentry_sdk/integrations/stdlib.py,sha256=HNc2haRxGZHU9ObFvknBdYGhoAeylIG_XfYY1lMUDPM,10345
|
|
95
|
+
sentry_sdk/integrations/strawberry.py,sha256=fwolVXMtauXXzqzcYtKw34tixsw-I_KlBPWZIU0lmLs,13506
|
|
96
96
|
sentry_sdk/integrations/sys_exit.py,sha256=Ke4DuytNWJgmAIiA7DppkSYRiKREkiKQuh5QOHf763g,2435
|
|
97
|
-
sentry_sdk/integrations/threading.py,sha256=
|
|
97
|
+
sentry_sdk/integrations/threading.py,sha256=m2mJneJ7EwCD8Os2yr5g5UiAe3oH1giG9nkmLsWx3Qk,4647
|
|
98
98
|
sentry_sdk/integrations/tornado.py,sha256=QFNTjteEJlP4cIc-7MRl5y3ePdOdjf3CrjxPS1l5s3g,8459
|
|
99
99
|
sentry_sdk/integrations/trytond.py,sha256=D2UTrVyLn4uCgnFb68-CnZGkNCa0gBjiQL8bjQ5w-ts,1816
|
|
100
100
|
sentry_sdk/integrations/typer.py,sha256=X-VvPfMn9mOrgt-Pf5uZZyescnFsLXFce83cURy7URo,1832
|
|
101
101
|
sentry_sdk/integrations/unleash.py,sha256=j-kPFRIngkxDDtimFqAe6K8cHwqyLkwGOxMvkN7t82U,1072
|
|
102
102
|
sentry_sdk/integrations/wsgi.py,sha256=IBD-3Be6rewvemqv6BQyiHqwnzLfho5oF9uwYZwxcrc,12146
|
|
103
|
-
sentry_sdk/integrations/celery/__init__.py,sha256=
|
|
103
|
+
sentry_sdk/integrations/celery/__init__.py,sha256=5a8suYbb8jF_gmkgylhkO5hKx8brcNW6FVUUsZ-L-yw,18667
|
|
104
104
|
sentry_sdk/integrations/celery/beat.py,sha256=sSBTGHW1_REj8TwjqL9cXgldocdBsZptFN9lEvG49u0,8823
|
|
105
105
|
sentry_sdk/integrations/celery/utils.py,sha256=0y76wo-14Cvfigqu8L6xPQLW2BATRxOVXWSBLeg_pGo,1158
|
|
106
|
-
sentry_sdk/integrations/django/__init__.py,sha256=
|
|
107
|
-
sentry_sdk/integrations/django/asgi.py,sha256=
|
|
108
|
-
sentry_sdk/integrations/django/caching.py,sha256
|
|
109
|
-
sentry_sdk/integrations/django/middleware.py,sha256=
|
|
110
|
-
sentry_sdk/integrations/django/signals_handlers.py,sha256=
|
|
111
|
-
sentry_sdk/integrations/django/templates.py,sha256=
|
|
106
|
+
sentry_sdk/integrations/django/__init__.py,sha256=SJEhxC06XKeYaYI6apoqWgWoHfCnR2yx7e1yZzp3Wzc,24408
|
|
107
|
+
sentry_sdk/integrations/django/asgi.py,sha256=b6bgQPrSU1HP-YJOm8egKY8hsgdrIXDezwIKr6KQ9X0,8276
|
|
108
|
+
sentry_sdk/integrations/django/caching.py,sha256=-RBAr2F4MebfvsmbTZLbDQgGEpFwY7P-yHC54HTkkfY,6323
|
|
109
|
+
sentry_sdk/integrations/django/middleware.py,sha256=XPFBbqulpBe3Ui5asgqtSbB46NQyXKEDvHFJCpoHqzA,5950
|
|
110
|
+
sentry_sdk/integrations/django/signals_handlers.py,sha256=37Aw3fpPEt7OB66kX9cTYoDvt4hquoLQlPspM1zQZ5w,3169
|
|
111
|
+
sentry_sdk/integrations/django/templates.py,sha256=fWxIROVRQDDdx9OLQ36hZsKnQc5QpZJhKAIc-HwVRvU,5700
|
|
112
112
|
sentry_sdk/integrations/django/transactions.py,sha256=Xk0cTh3kf6yOctADXTgq5zpam0MmhX-IbUXlFDzHrQs,4850
|
|
113
|
-
sentry_sdk/integrations/django/views.py,sha256=
|
|
113
|
+
sentry_sdk/integrations/django/views.py,sha256=oeIXX76o-HKcwLkOCO5HLW9eu-IgxuXVs8KEWwMjsjc,3190
|
|
114
114
|
sentry_sdk/integrations/grpc/__init__.py,sha256=CCvwhqSLytsTubvxSgqXskYcp9fC0zQuamcScZHRjnU,5647
|
|
115
|
-
sentry_sdk/integrations/grpc/client.py,sha256
|
|
115
|
+
sentry_sdk/integrations/grpc/client.py,sha256=-gfDarvvV7Prtow6Q_TyqIu857M2UXlLNxeSiy23W-g,3547
|
|
116
116
|
sentry_sdk/integrations/grpc/consts.py,sha256=SvBBfyF8F3c_Gnf8rq1IZvTemeqzYEj1zUi7wriNBio,67
|
|
117
117
|
sentry_sdk/integrations/grpc/server.py,sha256=ke12plp6Wk26JdcIxtO3J2Q8lZPHmFwrALanVa95kts,2447
|
|
118
118
|
sentry_sdk/integrations/grpc/aio/__init__.py,sha256=2rgrliowpPfLLw40_2YU6ixSzIu_3f8NN3TRplzc8S8,141
|
|
119
|
-
sentry_sdk/integrations/grpc/aio/client.py,sha256=
|
|
119
|
+
sentry_sdk/integrations/grpc/aio/client.py,sha256=MQeiYQEnpSMv3NhbxVY-v3Jd2tMtljd9V8reEtSUh3M,3558
|
|
120
120
|
sentry_sdk/integrations/grpc/aio/server.py,sha256=bq4U0IkeUo8q3-tTXbl3lL595BS46GJQuo-U9cDCwC4,3945
|
|
121
121
|
sentry_sdk/integrations/openai_agents/__init__.py,sha256=N5TnKB90s7cHpM-M5Sf6ZJKKasc6RtYzapTJBiZQ5RY,1360
|
|
122
122
|
sentry_sdk/integrations/openai_agents/consts.py,sha256=PTb3vlqkuMPktu21ALK72o5WMIX4-cewTEiTRdHKFdQ,38
|
|
123
|
-
sentry_sdk/integrations/openai_agents/utils.py,sha256=
|
|
123
|
+
sentry_sdk/integrations/openai_agents/utils.py,sha256=yXM4X-PSvPv_Ab94aXAY7dwHqAcEpuB0Rw0tCrt8bDY,5198
|
|
124
124
|
sentry_sdk/integrations/openai_agents/patches/__init__.py,sha256=I7C9JZ70Mf8PV3wPdFsxTqvcYl4TYUgSZYfNU2Spb7Y,231
|
|
125
125
|
sentry_sdk/integrations/openai_agents/patches/agent_run.py,sha256=bGxx3zcuLPqYD24lpRfT0YeinkForzw21Ppt5UaRBvM,5913
|
|
126
126
|
sentry_sdk/integrations/openai_agents/patches/models.py,sha256=3WTGaXaSCrlKk36VgbojQRY7asycSUl2kvvcroHF3gU,1407
|
|
@@ -133,8 +133,8 @@ sentry_sdk/integrations/openai_agents/spans/execute_tool.py,sha256=71d0w8axyXkcE
|
|
|
133
133
|
sentry_sdk/integrations/openai_agents/spans/handoff.py,sha256=eX5SVq23geAZvcwmhGJ7opSU3t3SVf09OYzPNOhAYXc,576
|
|
134
134
|
sentry_sdk/integrations/openai_agents/spans/invoke_agent.py,sha256=FtQ1tIu38b1kWKfVSrVjTXITocr-CKKXMDp_nFQ_Q-M,1044
|
|
135
135
|
sentry_sdk/integrations/redis/__init__.py,sha256=4Impxkb7WhrdPJ27Kamn5fAeop2gbZJG2o8wTyPub9Q,1366
|
|
136
|
-
sentry_sdk/integrations/redis/_async_common.py,sha256=
|
|
137
|
-
sentry_sdk/integrations/redis/_sync_common.py,sha256=
|
|
136
|
+
sentry_sdk/integrations/redis/_async_common.py,sha256=zolW0Cr2NI2VwOGXKrPO-HaFwKkIHbTlnhvumRlZaAc,4657
|
|
137
|
+
sentry_sdk/integrations/redis/_sync_common.py,sha256=JwJDVarXNH44pxufjhKQI9QwHp_NA-z4h0VuWsUBPkI,4339
|
|
138
138
|
sentry_sdk/integrations/redis/consts.py,sha256=jYhloX935YQ1AR9c8giCVo1FpIuGXkGR_Tfn4LOulNU,480
|
|
139
139
|
sentry_sdk/integrations/redis/rb.py,sha256=VVHSxeggx-rumLnfIUSNexyKZNrKtKmzr6_tgf7SnNc,827
|
|
140
140
|
sentry_sdk/integrations/redis/redis.py,sha256=CHTHa7-WKHwx75YyounQPcrC64BKuY2nmj5V_U7_tgU,1712
|
|
@@ -152,17 +152,17 @@ sentry_sdk/opentelemetry/consts.py,sha256=k1lpmm-a6K4TNaOzhW4iIQH48Ztep2jzof39Rp
|
|
|
152
152
|
sentry_sdk/opentelemetry/contextvars_context.py,sha256=qoZIhur-ZYnpV7StKvw9f2i6DkoJwLe69vIyMFPJyf8,3036
|
|
153
153
|
sentry_sdk/opentelemetry/propagator.py,sha256=z5dQPtD0yC1ToKAHa5vO8tBiuIt9Ry_f4GWYO2jFO8s,3638
|
|
154
154
|
sentry_sdk/opentelemetry/sampler.py,sha256=AC-nrSrweeIzhxz2Sixlkst98juIDu30poiVaCYrP6Y,12113
|
|
155
|
-
sentry_sdk/opentelemetry/scope.py,sha256=
|
|
156
|
-
sentry_sdk/opentelemetry/span_processor.py,sha256=
|
|
155
|
+
sentry_sdk/opentelemetry/scope.py,sha256=Hx6OiR5zGfXC19n5KhMhsMUz85_IIYSjdA5sES1iZRw,6947
|
|
156
|
+
sentry_sdk/opentelemetry/span_processor.py,sha256=j7Fv19RzUocqtP81NVa5SKwr9LvQ69mT-YVe0nh4kFI,11185
|
|
157
157
|
sentry_sdk/opentelemetry/tracing.py,sha256=b8f2SFQE2A8GBE17_GcqLq0VN2gJ7SzySLlsxZ4Yzt4,2757
|
|
158
158
|
sentry_sdk/opentelemetry/utils.py,sha256=tlTPBFbHp0pTm6-z-p38978wg5ca0A7NfuolFE4AeZc,14422
|
|
159
159
|
sentry_sdk/profiler/__init__.py,sha256=bYeDkmLQliS2KkNSOGa8Sx4zN3pjTc3WmYIvbkcGkmQ,153
|
|
160
160
|
sentry_sdk/profiler/continuous_profiler.py,sha256=AXwhI-NI6hx82EnKEy_oNQPPl9nwLQJKcj_QRX6KKAg,21574
|
|
161
161
|
sentry_sdk/profiler/transaction_profiler.py,sha256=gbe9RedrGqPakPi3uY9fUDXp0IcM9djHuVcYUcbDRfg,25381
|
|
162
162
|
sentry_sdk/profiler/utils.py,sha256=cdjpSQ9IAchtMPLWNFGDjZHIXArTbcPtFPEngB9Tb9c,6475
|
|
163
|
-
sentry_sdk-3.0.
|
|
164
|
-
sentry_sdk-3.0.
|
|
165
|
-
sentry_sdk-3.0.
|
|
166
|
-
sentry_sdk-3.0.
|
|
167
|
-
sentry_sdk-3.0.
|
|
168
|
-
sentry_sdk-3.0.
|
|
163
|
+
sentry_sdk-3.0.0a5.dist-info/licenses/LICENSE,sha256=KhQNZg9GKBL6KQvHQNBGMxJsXsRdhLebVp4Sew7t3Qs,1093
|
|
164
|
+
sentry_sdk-3.0.0a5.dist-info/METADATA,sha256=W5PgWwtJXxOaRFw_G6kh1mbZ7cZp96mYiZoQ0TJbV6A,10151
|
|
165
|
+
sentry_sdk-3.0.0a5.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
166
|
+
sentry_sdk-3.0.0a5.dist-info/entry_points.txt,sha256=-FP10-IbDq7-9RSn7JcaVV6-nDwVN2kwvA46zNTNwtk,78
|
|
167
|
+
sentry_sdk-3.0.0a5.dist-info/top_level.txt,sha256=XrQz30XE9FKXSY_yGLrd9bsv2Rk390GTDJOSujYaMxI,11
|
|
168
|
+
sentry_sdk-3.0.0a5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|