sentry-sdk 2.30.0__py2.py3-none-any.whl → 3.0.0a2__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.

Files changed (109) hide show
  1. sentry_sdk/__init__.py +3 -8
  2. sentry_sdk/_compat.py +0 -1
  3. sentry_sdk/_init_implementation.py +6 -44
  4. sentry_sdk/_types.py +2 -64
  5. sentry_sdk/ai/monitoring.py +14 -10
  6. sentry_sdk/ai/utils.py +1 -1
  7. sentry_sdk/api.py +56 -169
  8. sentry_sdk/client.py +27 -72
  9. sentry_sdk/consts.py +60 -23
  10. sentry_sdk/debug.py +0 -10
  11. sentry_sdk/envelope.py +1 -3
  12. sentry_sdk/feature_flags.py +1 -1
  13. sentry_sdk/integrations/__init__.py +4 -2
  14. sentry_sdk/integrations/_asgi_common.py +5 -6
  15. sentry_sdk/integrations/_wsgi_common.py +11 -40
  16. sentry_sdk/integrations/aiohttp.py +104 -57
  17. sentry_sdk/integrations/anthropic.py +10 -7
  18. sentry_sdk/integrations/arq.py +24 -13
  19. sentry_sdk/integrations/asgi.py +102 -83
  20. sentry_sdk/integrations/asyncio.py +1 -0
  21. sentry_sdk/integrations/asyncpg.py +45 -30
  22. sentry_sdk/integrations/aws_lambda.py +109 -92
  23. sentry_sdk/integrations/boto3.py +38 -9
  24. sentry_sdk/integrations/bottle.py +1 -1
  25. sentry_sdk/integrations/celery/__init__.py +51 -41
  26. sentry_sdk/integrations/clickhouse_driver.py +59 -28
  27. sentry_sdk/integrations/cohere.py +2 -0
  28. sentry_sdk/integrations/django/__init__.py +25 -46
  29. sentry_sdk/integrations/django/asgi.py +6 -2
  30. sentry_sdk/integrations/django/caching.py +13 -22
  31. sentry_sdk/integrations/django/middleware.py +1 -0
  32. sentry_sdk/integrations/django/signals_handlers.py +3 -1
  33. sentry_sdk/integrations/django/templates.py +8 -12
  34. sentry_sdk/integrations/django/transactions.py +1 -6
  35. sentry_sdk/integrations/django/views.py +5 -2
  36. sentry_sdk/integrations/falcon.py +7 -25
  37. sentry_sdk/integrations/fastapi.py +3 -3
  38. sentry_sdk/integrations/flask.py +1 -1
  39. sentry_sdk/integrations/gcp.py +63 -38
  40. sentry_sdk/integrations/graphene.py +6 -13
  41. sentry_sdk/integrations/grpc/aio/client.py +14 -8
  42. sentry_sdk/integrations/grpc/aio/server.py +19 -21
  43. sentry_sdk/integrations/grpc/client.py +8 -6
  44. sentry_sdk/integrations/grpc/server.py +12 -14
  45. sentry_sdk/integrations/httpx.py +47 -12
  46. sentry_sdk/integrations/huey.py +26 -22
  47. sentry_sdk/integrations/huggingface_hub.py +1 -0
  48. sentry_sdk/integrations/langchain.py +22 -15
  49. sentry_sdk/integrations/litestar.py +4 -2
  50. sentry_sdk/integrations/logging.py +7 -2
  51. sentry_sdk/integrations/openai.py +2 -0
  52. sentry_sdk/integrations/pymongo.py +18 -25
  53. sentry_sdk/integrations/pyramid.py +1 -1
  54. sentry_sdk/integrations/quart.py +3 -3
  55. sentry_sdk/integrations/ray.py +23 -17
  56. sentry_sdk/integrations/redis/_async_common.py +29 -18
  57. sentry_sdk/integrations/redis/_sync_common.py +28 -19
  58. sentry_sdk/integrations/redis/modules/caches.py +13 -10
  59. sentry_sdk/integrations/redis/modules/queries.py +14 -11
  60. sentry_sdk/integrations/redis/rb.py +4 -4
  61. sentry_sdk/integrations/redis/redis.py +6 -6
  62. sentry_sdk/integrations/redis/redis_cluster.py +18 -18
  63. sentry_sdk/integrations/redis/redis_py_cluster_legacy.py +4 -4
  64. sentry_sdk/integrations/redis/utils.py +64 -24
  65. sentry_sdk/integrations/rq.py +68 -23
  66. sentry_sdk/integrations/rust_tracing.py +28 -43
  67. sentry_sdk/integrations/sanic.py +23 -13
  68. sentry_sdk/integrations/socket.py +9 -5
  69. sentry_sdk/integrations/sqlalchemy.py +8 -8
  70. sentry_sdk/integrations/starlette.py +11 -31
  71. sentry_sdk/integrations/starlite.py +4 -2
  72. sentry_sdk/integrations/stdlib.py +56 -9
  73. sentry_sdk/integrations/strawberry.py +40 -59
  74. sentry_sdk/integrations/threading.py +10 -26
  75. sentry_sdk/integrations/tornado.py +57 -18
  76. sentry_sdk/integrations/trytond.py +4 -1
  77. sentry_sdk/integrations/wsgi.py +84 -38
  78. sentry_sdk/opentelemetry/__init__.py +9 -0
  79. sentry_sdk/opentelemetry/consts.py +33 -0
  80. sentry_sdk/opentelemetry/contextvars_context.py +81 -0
  81. sentry_sdk/{integrations/opentelemetry → opentelemetry}/propagator.py +19 -28
  82. sentry_sdk/opentelemetry/sampler.py +326 -0
  83. sentry_sdk/opentelemetry/scope.py +218 -0
  84. sentry_sdk/opentelemetry/span_processor.py +335 -0
  85. sentry_sdk/opentelemetry/tracing.py +59 -0
  86. sentry_sdk/opentelemetry/utils.py +484 -0
  87. sentry_sdk/profiler/__init__.py +0 -40
  88. sentry_sdk/profiler/continuous_profiler.py +1 -30
  89. sentry_sdk/profiler/transaction_profiler.py +5 -56
  90. sentry_sdk/scope.py +108 -361
  91. sentry_sdk/sessions.py +0 -87
  92. sentry_sdk/tracing.py +415 -1161
  93. sentry_sdk/tracing_utils.py +130 -166
  94. sentry_sdk/transport.py +4 -104
  95. sentry_sdk/utils.py +169 -152
  96. {sentry_sdk-2.30.0.dist-info → sentry_sdk-3.0.0a2.dist-info}/METADATA +3 -5
  97. sentry_sdk-3.0.0a2.dist-info/RECORD +154 -0
  98. sentry_sdk-3.0.0a2.dist-info/entry_points.txt +2 -0
  99. sentry_sdk/hub.py +0 -739
  100. sentry_sdk/integrations/opentelemetry/__init__.py +0 -7
  101. sentry_sdk/integrations/opentelemetry/consts.py +0 -5
  102. sentry_sdk/integrations/opentelemetry/integration.py +0 -58
  103. sentry_sdk/integrations/opentelemetry/span_processor.py +0 -391
  104. sentry_sdk/metrics.py +0 -965
  105. sentry_sdk-2.30.0.dist-info/RECORD +0 -152
  106. sentry_sdk-2.30.0.dist-info/entry_points.txt +0 -2
  107. {sentry_sdk-2.30.0.dist-info → sentry_sdk-3.0.0a2.dist-info}/WHEEL +0 -0
  108. {sentry_sdk-2.30.0.dist-info → sentry_sdk-3.0.0a2.dist-info}/licenses/LICENSE +0 -0
  109. {sentry_sdk-2.30.0.dist-info → sentry_sdk-3.0.0a2.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,154 @@
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=t54Jc4yPIM_A0H5MLLrwa6IuMetChSeLEguAJrHtpx8,8854
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=3V4uIMOAhf1p2yQPwmg8Yj1WpBSaH6Y4kJOCT2S8lVE,36638
12
+ sentry_sdk/consts.py,sha256=s9ojpDs2GyFHyXP-B6ztxAf4yCyitRzrsQKZVWIaYFY,41498
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=u_8zS8gjQt7FjYqz_I91sCbdsmBe7IgRqWxMP3vrsq0,2399
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=MboVCVKo_xSTUFcLaHmD-P14tUwgeXbUTBlJpJLpVfM,52745
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=nx3DU8uvGihElFy9zGhsCL7Q1op2BA9dESgMr3XHTAE,18994
26
+ sentry_sdk/tracing_utils.py,sha256=lDQ16zMawwySSC-80o0sTt8qPvGJRXWnzwxP9cL7idQ,27401
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=FIQ4eCbTJ-WsDtnUCWi5N14iCAw39KoiIXtRTlLb_mQ,4636
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=uHVrKJSKXhqIebZKhoKrC7-d3U6p6fS5BGlP6q0Q9zI,3231
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=mZObhB4Ass01W93X5KsmnYqlvwcsym39X0jfsZrr90k,8169
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=FjlSBpTiyADU0YbnQE8dhItlc1-QHEF-nMoRZqEA45I,9399
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=2Dm77wJG1oUMvU1oU7hfquMJcMvpdS1v7GwBrB5rIDQ,6584
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=KFrkG0YTm5RYEeyPZFHoCm_8zJGVocU0pk-tXO77jxE,13393
76
+ sentry_sdk/integrations/loguru.py,sha256=mEWYWsNHQLlWknU4M8RBgOf2-5B5cBr5aGd-ZH1Emq4,6193
77
+ sentry_sdk/integrations/modules.py,sha256=vzLx3Erg77Vl4mnUvAgTg_3teAuWy7zylFpAidBI9I0,820
78
+ sentry_sdk/integrations/openai.py,sha256=Zw7RsnfbXdMbpb70Of5qAwcVqjzfS9XtI5QIMxVc2WM,15643
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=VO3KonkAgD7hUvZxM4a2AAY2O7beTJkrlW2OCQ5Ul6g,8580
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=IkHivUFKokHGhJ3askCa7OVWsEgsZRdq7qLAXGkHJiw,18968
104
+ sentry_sdk/integrations/celery/beat.py,sha256=WHEdKetrDJgtZGNp1VUMa6BG1q-MhsLZMefUmVrPu3w,8953
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=eJLKPNOSamnkyNWggJSs1E4R-9CqqbDakYISB1rSQTY,8471
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=zukyRYtaxRGcDuQSXBbVcpa7ZMAYdLQ-laRQqqHsHgc,5620
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=b7mhq_g8IkL531R1DDztimEBPskGtnQmYPcKzQ_JQYg,4634
123
+ sentry_sdk/integrations/redis/_sync_common.py,sha256=nK-1OPJ_QwlrPDBe-9rFLLa1OgoJkzy6kNfy6SPW6xw,4338
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=S9emv6wG1V3kOCDQtubiFgTVtkTVDWZZF0Pks7wjDTk,3532
128
+ sentry_sdk/integrations/redis/redis_py_cluster_legacy.py,sha256=NJWxpY3btWWyjKMko9V4YS9MXsglDSezIPPIG_T1jPk,1585
129
+ sentry_sdk/integrations/redis/utils.py,sha256=AzDxmzbz1X-GTj7oBWrfv3Myxy3DqkzdAhJAnH5jr18,4951
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=j9EQVuX_2cLpeg7JRzCzeQe_-VBbe64ry4hWX8YIwbo,3042
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=QFODsMweuA3yjHipZbgIxqmFbaYOVf5zCd5EZhhdaTw,11288
143
+ sentry_sdk/opentelemetry/tracing.py,sha256=JsEBCPPoFHUSX4ux3AGOXUlf6fnFXafj1Gw_xJC7Z70,2100
144
+ sentry_sdk/opentelemetry/utils.py,sha256=bvFKt6uePOpyFkRs3nRMlVujBsaL5Epnj83Jx5rnupE,15002
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.0a2.dist-info/licenses/LICENSE,sha256=KhQNZg9GKBL6KQvHQNBGMxJsXsRdhLebVp4Sew7t3Qs,1093
150
+ sentry_sdk-3.0.0a2.dist-info/METADATA,sha256=wGFuIuZjv2M0MPNrmemYrou-qBgTmWa19-x_RJ64JIE,10151
151
+ sentry_sdk-3.0.0a2.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
152
+ sentry_sdk-3.0.0a2.dist-info/entry_points.txt,sha256=-FP10-IbDq7-9RSn7JcaVV6-nDwVN2kwvA46zNTNwtk,78
153
+ sentry_sdk-3.0.0a2.dist-info/top_level.txt,sha256=XrQz30XE9FKXSY_yGLrd9bsv2Rk390GTDJOSujYaMxI,11
154
+ sentry_sdk-3.0.0a2.dist-info/RECORD,,
@@ -0,0 +1,2 @@
1
+ [opentelemetry_propagator]
2
+ sentry = sentry_sdk.opentelemetry:SentryPropagator