monocle-apptrace 0.3.0b3__py3-none-any.whl → 0.3.0b5__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 monocle-apptrace might be problematic. Click here for more details.
- monocle_apptrace/__main__.py +19 -0
- monocle_apptrace/exporters/aws/s3_exporter.py +17 -8
- monocle_apptrace/exporters/monocle_exporters.py +5 -4
- monocle_apptrace/instrumentation/common/constants.py +5 -0
- monocle_apptrace/instrumentation/common/instrumentor.py +82 -11
- monocle_apptrace/instrumentation/common/span_handler.py +27 -12
- monocle_apptrace/instrumentation/common/utils.py +112 -5
- monocle_apptrace/instrumentation/common/wrapper.py +48 -23
- monocle_apptrace/instrumentation/common/wrapper_method.py +30 -7
- monocle_apptrace/instrumentation/metamodel/botocore/_helper.py +0 -31
- monocle_apptrace/instrumentation/metamodel/botocore/handlers/botocore_span_handler.py +25 -0
- monocle_apptrace/instrumentation/metamodel/botocore/methods.py +6 -6
- monocle_apptrace/instrumentation/metamodel/flask/__init__.py +0 -0
- monocle_apptrace/instrumentation/metamodel/flask/_helper.py +29 -0
- monocle_apptrace/instrumentation/metamodel/flask/methods.py +13 -0
- monocle_apptrace/instrumentation/metamodel/langchain/_helper.py +6 -0
- monocle_apptrace/instrumentation/metamodel/langgraph/__init__.py +0 -0
- monocle_apptrace/instrumentation/metamodel/langgraph/_helper.py +48 -0
- monocle_apptrace/instrumentation/metamodel/langgraph/entities/__init__.py +0 -0
- monocle_apptrace/instrumentation/metamodel/langgraph/entities/inference.py +56 -0
- monocle_apptrace/instrumentation/metamodel/langgraph/methods.py +14 -0
- monocle_apptrace/instrumentation/metamodel/llamaindex/_helper.py +37 -19
- monocle_apptrace/instrumentation/metamodel/llamaindex/entities/agent.py +47 -0
- monocle_apptrace/instrumentation/metamodel/llamaindex/methods.py +9 -0
- monocle_apptrace/instrumentation/metamodel/openai/__init__.py +0 -0
- monocle_apptrace/instrumentation/metamodel/openai/_helper.py +88 -0
- monocle_apptrace/instrumentation/metamodel/openai/entities/__init__.py +0 -0
- monocle_apptrace/instrumentation/metamodel/openai/entities/inference.py +71 -0
- monocle_apptrace/instrumentation/metamodel/openai/entities/retrieval.py +24 -0
- monocle_apptrace/instrumentation/metamodel/openai/methods.py +25 -0
- monocle_apptrace/instrumentation/metamodel/requests/__init__.py +2 -0
- monocle_apptrace/instrumentation/metamodel/requests/_helper.py +31 -0
- monocle_apptrace/instrumentation/metamodel/requests/methods.py +12 -0
- {monocle_apptrace-0.3.0b3.dist-info → monocle_apptrace-0.3.0b5.dist-info}/METADATA +2 -1
- {monocle_apptrace-0.3.0b3.dist-info → monocle_apptrace-0.3.0b5.dist-info}/RECORD +38 -18
- {monocle_apptrace-0.3.0b3.dist-info → monocle_apptrace-0.3.0b5.dist-info}/WHEEL +0 -0
- {monocle_apptrace-0.3.0b3.dist-info → monocle_apptrace-0.3.0b5.dist-info}/licenses/LICENSE +0 -0
- {monocle_apptrace-0.3.0b3.dist-info → monocle_apptrace-0.3.0b5.dist-info}/licenses/NOTICE +0 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
from monocle_apptrace.instrumentation.metamodel.openai import (
|
|
2
|
+
_helper,
|
|
3
|
+
)
|
|
4
|
+
from monocle_apptrace.instrumentation.common.utils import resolve_from_alias
|
|
5
|
+
|
|
6
|
+
RETRIEVAL = {
|
|
7
|
+
"type": "retrieval",
|
|
8
|
+
"attributes": [
|
|
9
|
+
[
|
|
10
|
+
{
|
|
11
|
+
"_comment": "LLM Model",
|
|
12
|
+
"attribute": "name",
|
|
13
|
+
"accessor": lambda arguments: resolve_from_alias(arguments['kwargs'], ['model', 'model_name', 'endpoint_name', 'deployment_name'])
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"attribute": "type",
|
|
17
|
+
"accessor": lambda arguments: 'model.embedding.' + resolve_from_alias(arguments['kwargs'], ['model', 'model_name', 'endpoint_name', 'deployment_name'])
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
],
|
|
21
|
+
"events": [
|
|
22
|
+
|
|
23
|
+
]
|
|
24
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
from monocle_apptrace.instrumentation.common.wrapper import atask_wrapper, task_wrapper
|
|
2
|
+
from monocle_apptrace.instrumentation.metamodel.openai.entities.inference import (
|
|
3
|
+
INFERENCE,
|
|
4
|
+
)
|
|
5
|
+
from monocle_apptrace.instrumentation.metamodel.openai.entities.retrieval import (
|
|
6
|
+
RETRIEVAL,
|
|
7
|
+
)
|
|
8
|
+
|
|
9
|
+
OPENAI_METHODS = [
|
|
10
|
+
{
|
|
11
|
+
"package": "openai.resources.chat.completions",
|
|
12
|
+
"object": "Completions",
|
|
13
|
+
"method": "create",
|
|
14
|
+
"wrapper_method": task_wrapper,
|
|
15
|
+
"span_name": "openai_inference",
|
|
16
|
+
"output_processor": INFERENCE
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"package": "openai.resources.embeddings",
|
|
20
|
+
"object": "Embeddings",
|
|
21
|
+
"method": "create",
|
|
22
|
+
"wrapper_method": task_wrapper,
|
|
23
|
+
"output_processor": RETRIEVAL
|
|
24
|
+
}
|
|
25
|
+
]
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import os
|
|
2
|
+
from monocle_apptrace.instrumentation.metamodel.requests import allowed_urls
|
|
3
|
+
from opentelemetry.propagate import inject
|
|
4
|
+
from monocle_apptrace.instrumentation.common.span_handler import SpanHandler
|
|
5
|
+
|
|
6
|
+
def request_pre_task_processor(kwargs):
|
|
7
|
+
# add traceparent to the request headers in kwargs
|
|
8
|
+
if 'headers' not in kwargs:
|
|
9
|
+
headers = {}
|
|
10
|
+
else:
|
|
11
|
+
headers = kwargs['headers'].copy()
|
|
12
|
+
inject(headers)
|
|
13
|
+
kwargs['headers'] = headers
|
|
14
|
+
|
|
15
|
+
def request_skip_span(kwargs) -> bool:
|
|
16
|
+
# add traceparent to the request headers in kwargs
|
|
17
|
+
if 'url' in kwargs:
|
|
18
|
+
url:str = kwargs['url']
|
|
19
|
+
for allowed_url in allowed_urls:
|
|
20
|
+
if url.startswith(allowed_url.strip()):
|
|
21
|
+
return False
|
|
22
|
+
return True
|
|
23
|
+
|
|
24
|
+
class RequestSpanHandler(SpanHandler):
|
|
25
|
+
|
|
26
|
+
def pre_task_processing(self, to_wrap, wrapped, instance, args,kwargs, span):
|
|
27
|
+
request_pre_task_processor(kwargs)
|
|
28
|
+
super().pre_task_processing(to_wrap, wrapped, instance, args,kwargs,span)
|
|
29
|
+
|
|
30
|
+
def skip_span(self, to_wrap, wrapped, instance, args, kwargs) -> bool:
|
|
31
|
+
return request_skip_span(kwargs)
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
from monocle_apptrace.instrumentation.common.wrapper import task_wrapper
|
|
2
|
+
|
|
3
|
+
REQUESTS_METHODS = [
|
|
4
|
+
{
|
|
5
|
+
"package": "requests.sessions",
|
|
6
|
+
"object": "Session",
|
|
7
|
+
"method": "request",
|
|
8
|
+
"span_name": "http_requests",
|
|
9
|
+
"wrapper_method": task_wrapper,
|
|
10
|
+
"span_handler":"request_handler",
|
|
11
|
+
}
|
|
12
|
+
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: monocle_apptrace
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.0b5
|
|
4
4
|
Summary: package with monocle genAI tracing
|
|
5
5
|
Project-URL: Homepage, https://github.com/monocle2ai/monocle
|
|
6
6
|
Project-URL: Issues, https://github.com/monocle2ai/monocle/issues
|
|
@@ -35,6 +35,7 @@ Requires-Dist: langchain-mistralai==0.1.13; extra == 'dev'
|
|
|
35
35
|
Requires-Dist: langchain-openai==0.1.8; extra == 'dev'
|
|
36
36
|
Requires-Dist: langchain==0.2.5; extra == 'dev'
|
|
37
37
|
Requires-Dist: langchainhub==0.1.21; extra == 'dev'
|
|
38
|
+
Requires-Dist: langgraph==0.2.68; extra == 'dev'
|
|
38
39
|
Requires-Dist: llama-index-embeddings-huggingface==0.2.0; extra == 'dev'
|
|
39
40
|
Requires-Dist: llama-index-llms-azure-openai==0.1.9; extra == 'dev'
|
|
40
41
|
Requires-Dist: llama-index-llms-mistralai==0.1.20; extra == 'dev'
|
|
@@ -1,28 +1,33 @@
|
|
|
1
1
|
monocle_apptrace/README.md,sha256=T5NFC01bF8VR0oVnAX_n0bhsEtttwqfTxDNAe5Y_ivE,3765
|
|
2
2
|
monocle_apptrace/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
monocle_apptrace/__main__.py,sha256=wBwV0fpwIuj9XSorPRP1MpkHHkZPM9Tg-lIFj1nokkU,609
|
|
3
4
|
monocle_apptrace/exporters/base_exporter.py,sha256=Gov_QKp5fonVZ-YdNM2ynoPot7GCaSNmKbCHIP3bDlE,1680
|
|
4
5
|
monocle_apptrace/exporters/exporter_processor.py,sha256=BTcBgMuFLHCdCgVvc9TKIo9y8g1BvShI0L4vX6Q-cmk,393
|
|
5
6
|
monocle_apptrace/exporters/file_exporter.py,sha256=gN9pJ_X5pcstVVsyivgHsjWhr443eRa6Y6Hx1rGLQAM,2280
|
|
6
|
-
monocle_apptrace/exporters/monocle_exporters.py,sha256=
|
|
7
|
-
monocle_apptrace/exporters/aws/s3_exporter.py,sha256=
|
|
7
|
+
monocle_apptrace/exporters/monocle_exporters.py,sha256=AxhZsTHjz2ZTuI-QOw1zk_bCKD899_EYyiEtCyAb1GA,2210
|
|
8
|
+
monocle_apptrace/exporters/aws/s3_exporter.py,sha256=JMxtox61J6gUoEFsM1PJisBJPySMpm_U2Uv68WioKtE,7146
|
|
8
9
|
monocle_apptrace/exporters/aws/s3_exporter_opendal.py,sha256=FvyW0KkAz0W_1g16C_ERmamg4fSreT-UXgLaN9URTVQ,5057
|
|
9
10
|
monocle_apptrace/exporters/azure/blob_exporter.py,sha256=m7Hsw3OXlP2GOCQcdxf8LM6Fe12fZmih45x82Z12dbI,5597
|
|
10
11
|
monocle_apptrace/exporters/azure/blob_exporter_opendal.py,sha256=h5xv7JU6YEXL4AKT2B1op3YsHoA0rNnLCGq8seoVRWs,6114
|
|
11
12
|
monocle_apptrace/exporters/okahu/okahu_exporter.py,sha256=p2rjStwo0OMEdHWQt_QvREpUWXbDm5jGx3qXeYai4_M,4407
|
|
12
13
|
monocle_apptrace/instrumentation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
14
|
monocle_apptrace/instrumentation/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
-
monocle_apptrace/instrumentation/common/constants.py,sha256=
|
|
15
|
-
monocle_apptrace/instrumentation/common/instrumentor.py,sha256=
|
|
16
|
-
monocle_apptrace/instrumentation/common/span_handler.py,sha256=
|
|
17
|
-
monocle_apptrace/instrumentation/common/utils.py,sha256=
|
|
18
|
-
monocle_apptrace/instrumentation/common/wrapper.py,sha256=
|
|
19
|
-
monocle_apptrace/instrumentation/common/wrapper_method.py,sha256=
|
|
15
|
+
monocle_apptrace/instrumentation/common/constants.py,sha256=5h3UHq-5Wz9wmwETZi950XMHnV3rSH18yTDUTlQZnyw,2158
|
|
16
|
+
monocle_apptrace/instrumentation/common/instrumentor.py,sha256=mHiNA2Lcb3S0tiXjI78bHYZUpzCZziw98Y-n2x1E1Ck,11100
|
|
17
|
+
monocle_apptrace/instrumentation/common/span_handler.py,sha256=vvKZkrXuFXqo0JDljLgv1nlrSWg8huFamqUoUl-e9Hw,7784
|
|
18
|
+
monocle_apptrace/instrumentation/common/utils.py,sha256=PiqvYlBaxoxTlJ48iW5Uw3RJ9DERVxMxIL7c6tcsiJc,9463
|
|
19
|
+
monocle_apptrace/instrumentation/common/wrapper.py,sha256=jPIiPIecTQXsnR6SVs7KtPfjq37MuBi5CeeZLPVz03w,3860
|
|
20
|
+
monocle_apptrace/instrumentation/common/wrapper_method.py,sha256=_j1JZ-K7Fo5UMuRypNui14n6Fc8zAMTS1zqslAfods4,2996
|
|
20
21
|
monocle_apptrace/instrumentation/metamodel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
22
|
monocle_apptrace/instrumentation/metamodel/botocore/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
-
monocle_apptrace/instrumentation/metamodel/botocore/_helper.py,sha256=
|
|
23
|
-
monocle_apptrace/instrumentation/metamodel/botocore/methods.py,sha256=
|
|
23
|
+
monocle_apptrace/instrumentation/metamodel/botocore/_helper.py,sha256=JIYtaN57OXKO9zPuxMZzDycJbgHgAQaQUkwuCI_SzF8,3744
|
|
24
|
+
monocle_apptrace/instrumentation/metamodel/botocore/methods.py,sha256=LzmjbZjDWy7Uozc0chNjWG6PZhLngh_KJe5L6rw5rqI,452
|
|
24
25
|
monocle_apptrace/instrumentation/metamodel/botocore/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
26
|
monocle_apptrace/instrumentation/metamodel/botocore/entities/inference.py,sha256=JfTRmrxgU6e-b3dBbunWt5ObY_Ry_ZBYJBwKJB5UlJ8,2255
|
|
27
|
+
monocle_apptrace/instrumentation/metamodel/botocore/handlers/botocore_span_handler.py,sha256=_KJMFFhuetg3HpjewS3tmwS0K__P6uExKtqhXCBT5ws,1347
|
|
28
|
+
monocle_apptrace/instrumentation/metamodel/flask/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
+
monocle_apptrace/instrumentation/metamodel/flask/_helper.py,sha256=AcQ5F6_IDmu9PXaeKKeiGIyq2I2YzA7wu1cvLzR-uyU,1175
|
|
30
|
+
monocle_apptrace/instrumentation/metamodel/flask/methods.py,sha256=QkWHX4wKQf_GiJBHmiS9_JD2CiKMTCWMcig2dxAiKgU,340
|
|
26
31
|
monocle_apptrace/instrumentation/metamodel/haystack/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
32
|
monocle_apptrace/instrumentation/metamodel/haystack/_helper.py,sha256=VgTrKn7rZMcv4OVdVEBI76G-5B0Rux4guiI6Nsso14s,4833
|
|
28
33
|
monocle_apptrace/instrumentation/metamodel/haystack/methods.py,sha256=4WwhZoPQBkV42TpBvn-rXu37xtaBRrw7_VZB3MGrfxE,1434
|
|
@@ -30,19 +35,34 @@ monocle_apptrace/instrumentation/metamodel/haystack/entities/__init__.py,sha256=
|
|
|
30
35
|
monocle_apptrace/instrumentation/metamodel/haystack/entities/inference.py,sha256=PkCaaar5hbZH7YGtWisq8dUJqBINsFGmtaUgt11UDa4,3019
|
|
31
36
|
monocle_apptrace/instrumentation/metamodel/haystack/entities/retrieval.py,sha256=nq3lsk2qFxXqwrAHsBt8zrh4ZVGAJABkPtylrjUCCqc,2357
|
|
32
37
|
monocle_apptrace/instrumentation/metamodel/langchain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
-
monocle_apptrace/instrumentation/metamodel/langchain/_helper.py,sha256=
|
|
38
|
+
monocle_apptrace/instrumentation/metamodel/langchain/_helper.py,sha256=g88Hz4n25ALJnjYFhdbdoIlSFUJUkN-8gho8ru7txEQ,4910
|
|
34
39
|
monocle_apptrace/instrumentation/metamodel/langchain/methods.py,sha256=xEWO4uSiOnR221cvXESnVgAfC6JeExsP46ZkbK8_Yqs,3027
|
|
35
40
|
monocle_apptrace/instrumentation/metamodel/langchain/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
41
|
monocle_apptrace/instrumentation/metamodel/langchain/entities/inference.py,sha256=wjW9hb1Qwr_aqY0lPehdPftyHtuvHinGxVmy0TVj5xo,2705
|
|
37
42
|
monocle_apptrace/instrumentation/metamodel/langchain/entities/retrieval.py,sha256=r4UqTCT5vOfkbz9lwoTRoiMkUUJtPMwqOYbqo53A6K8,2039
|
|
43
|
+
monocle_apptrace/instrumentation/metamodel/langgraph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
44
|
+
monocle_apptrace/instrumentation/metamodel/langgraph/_helper.py,sha256=-XmAbhkgqwaunFZa-BP0zWZ3e-uD-ihSszbn5Cz75yc,2043
|
|
45
|
+
monocle_apptrace/instrumentation/metamodel/langgraph/methods.py,sha256=gnrKhcEPoy_qjyZWEkKZAUGTjRHvE3rqm3b4hQZoWMQ,453
|
|
46
|
+
monocle_apptrace/instrumentation/metamodel/langgraph/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
|
+
monocle_apptrace/instrumentation/metamodel/langgraph/entities/inference.py,sha256=OaPeQ8pkyEP5j6ad537MTPp0BdDI7nabxf60u66Dzbk,1659
|
|
38
48
|
monocle_apptrace/instrumentation/metamodel/llamaindex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
|
-
monocle_apptrace/instrumentation/metamodel/llamaindex/_helper.py,sha256=
|
|
40
|
-
monocle_apptrace/instrumentation/metamodel/llamaindex/methods.py,sha256=
|
|
49
|
+
monocle_apptrace/instrumentation/metamodel/llamaindex/_helper.py,sha256=5nqG-bSW3-ZEADZcwlHXIhhGZoTZu2a5Sc3Lo_AByeo,6199
|
|
50
|
+
monocle_apptrace/instrumentation/metamodel/llamaindex/methods.py,sha256=r-o2zz9_ATfgKjUmIiaeSFQ774Vy4wGYueoVc-TqGMI,3061
|
|
41
51
|
monocle_apptrace/instrumentation/metamodel/llamaindex/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
52
|
+
monocle_apptrace/instrumentation/metamodel/llamaindex/entities/agent.py,sha256=g7IEwFMLjYvxljX7iHoYSPJW6k-wC7Z3i_y2qlNEZcs,1338
|
|
42
53
|
monocle_apptrace/instrumentation/metamodel/llamaindex/entities/inference.py,sha256=585hJXbdN2kFOnABv12vlzFkCbDExZln5ISvQI71EHw,2623
|
|
43
54
|
monocle_apptrace/instrumentation/metamodel/llamaindex/entities/retrieval.py,sha256=QBF1nrqog5KHh925jiY2V-kejL6iVLKUowZmqUDoiJ4,1870
|
|
44
|
-
monocle_apptrace
|
|
45
|
-
monocle_apptrace
|
|
46
|
-
monocle_apptrace
|
|
47
|
-
monocle_apptrace
|
|
48
|
-
monocle_apptrace
|
|
55
|
+
monocle_apptrace/instrumentation/metamodel/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
56
|
+
monocle_apptrace/instrumentation/metamodel/openai/_helper.py,sha256=nQSV8B000AfWjaIAKqkA5ZD5e-ozx3KIVTEBOYvoYxA,3066
|
|
57
|
+
monocle_apptrace/instrumentation/metamodel/openai/methods.py,sha256=Ahmi0wo6UUHcOXz-6U_6EPZ2bEKXnu5o8NUVrikz0w0,759
|
|
58
|
+
monocle_apptrace/instrumentation/metamodel/openai/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
|
+
monocle_apptrace/instrumentation/metamodel/openai/entities/inference.py,sha256=yu0a9DyBqGOGRQFcPgl1fOSCKu6Jc41Dxx9N0QuwVR0,2659
|
|
60
|
+
monocle_apptrace/instrumentation/metamodel/openai/entities/retrieval.py,sha256=QICL56xZF0R84rCpf_Wj_1pMUOt6M8UzLRaICJnEQ7Y,755
|
|
61
|
+
monocle_apptrace/instrumentation/metamodel/requests/__init__.py,sha256=A9M_SrBoVqjo2HENM9VtAdOzIme82lsoGt361bBKW84,101
|
|
62
|
+
monocle_apptrace/instrumentation/metamodel/requests/_helper.py,sha256=lKU7py-M0eweHA_LWatwdyWbSGSlQNhScGZ43Xko7us,1115
|
|
63
|
+
monocle_apptrace/instrumentation/metamodel/requests/methods.py,sha256=OJtosy_07xy01o5Qv-53--aCLQLkr82NZtyi2t6ZDEM,326
|
|
64
|
+
monocle_apptrace-0.3.0b5.dist-info/METADATA,sha256=Tr4V0KMOc7nfKDTNDDE_OKc559DGJPULoacZEiG7EZE,6314
|
|
65
|
+
monocle_apptrace-0.3.0b5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
66
|
+
monocle_apptrace-0.3.0b5.dist-info/licenses/LICENSE,sha256=ay9trLiP5I7ZsFXo6AqtkLYdRqe5S9r-DrPOvsNlZrg,9136
|
|
67
|
+
monocle_apptrace-0.3.0b5.dist-info/licenses/NOTICE,sha256=9jn4xtwM_uUetJMx5WqGnhrR7MIhpoRlpokjSTlyt8c,112
|
|
68
|
+
monocle_apptrace-0.3.0b5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|