monocle-apptrace 0.4.1__py3-none-any.whl → 0.5.0__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.

Files changed (91) hide show
  1. monocle_apptrace/__main__.py +1 -1
  2. monocle_apptrace/exporters/file_exporter.py +125 -37
  3. monocle_apptrace/instrumentation/common/__init__.py +16 -1
  4. monocle_apptrace/instrumentation/common/constants.py +14 -1
  5. monocle_apptrace/instrumentation/common/instrumentor.py +19 -152
  6. monocle_apptrace/instrumentation/common/method_wrappers.py +376 -0
  7. monocle_apptrace/instrumentation/common/span_handler.py +58 -32
  8. monocle_apptrace/instrumentation/common/utils.py +52 -15
  9. monocle_apptrace/instrumentation/common/wrapper.py +124 -18
  10. monocle_apptrace/instrumentation/common/wrapper_method.py +48 -1
  11. monocle_apptrace/instrumentation/metamodel/a2a/__init__.py +0 -0
  12. monocle_apptrace/instrumentation/metamodel/a2a/_helper.py +37 -0
  13. monocle_apptrace/instrumentation/metamodel/a2a/entities/__init__.py +0 -0
  14. monocle_apptrace/instrumentation/metamodel/a2a/entities/inference.py +112 -0
  15. monocle_apptrace/instrumentation/metamodel/a2a/methods.py +22 -0
  16. monocle_apptrace/instrumentation/metamodel/adk/__init__.py +0 -0
  17. monocle_apptrace/instrumentation/metamodel/adk/_helper.py +182 -0
  18. monocle_apptrace/instrumentation/metamodel/adk/entities/agent.py +50 -0
  19. monocle_apptrace/instrumentation/metamodel/adk/entities/tool.py +57 -0
  20. monocle_apptrace/instrumentation/metamodel/adk/methods.py +24 -0
  21. monocle_apptrace/instrumentation/metamodel/agents/__init__.py +0 -0
  22. monocle_apptrace/instrumentation/metamodel/agents/_helper.py +220 -0
  23. monocle_apptrace/instrumentation/metamodel/agents/agents_processor.py +152 -0
  24. monocle_apptrace/instrumentation/metamodel/agents/entities/__init__.py +0 -0
  25. monocle_apptrace/instrumentation/metamodel/agents/entities/inference.py +191 -0
  26. monocle_apptrace/instrumentation/metamodel/agents/methods.py +56 -0
  27. monocle_apptrace/instrumentation/metamodel/aiohttp/_helper.py +6 -11
  28. monocle_apptrace/instrumentation/metamodel/anthropic/_helper.py +112 -18
  29. monocle_apptrace/instrumentation/metamodel/anthropic/entities/inference.py +18 -10
  30. monocle_apptrace/instrumentation/metamodel/azfunc/_helper.py +13 -11
  31. monocle_apptrace/instrumentation/metamodel/azfunc/entities/http.py +5 -0
  32. monocle_apptrace/instrumentation/metamodel/azureaiinference/_helper.py +88 -8
  33. monocle_apptrace/instrumentation/metamodel/azureaiinference/entities/inference.py +22 -8
  34. monocle_apptrace/instrumentation/metamodel/botocore/_helper.py +92 -16
  35. monocle_apptrace/instrumentation/metamodel/botocore/entities/inference.py +13 -8
  36. monocle_apptrace/instrumentation/metamodel/botocore/handlers/botocore_span_handler.py +1 -1
  37. monocle_apptrace/instrumentation/metamodel/fastapi/__init__.py +0 -0
  38. monocle_apptrace/instrumentation/metamodel/fastapi/_helper.py +82 -0
  39. monocle_apptrace/instrumentation/metamodel/fastapi/entities/__init__.py +0 -0
  40. monocle_apptrace/instrumentation/metamodel/fastapi/entities/http.py +44 -0
  41. monocle_apptrace/instrumentation/metamodel/fastapi/methods.py +23 -0
  42. monocle_apptrace/instrumentation/metamodel/finish_types.py +463 -0
  43. monocle_apptrace/instrumentation/metamodel/flask/_helper.py +6 -11
  44. monocle_apptrace/instrumentation/metamodel/gemini/__init__.py +0 -0
  45. monocle_apptrace/instrumentation/metamodel/gemini/_helper.py +120 -0
  46. monocle_apptrace/instrumentation/metamodel/gemini/entities/__init__.py +0 -0
  47. monocle_apptrace/instrumentation/metamodel/gemini/entities/inference.py +86 -0
  48. monocle_apptrace/instrumentation/metamodel/gemini/entities/retrieval.py +43 -0
  49. monocle_apptrace/instrumentation/metamodel/gemini/methods.py +31 -0
  50. monocle_apptrace/instrumentation/metamodel/haystack/_helper.py +79 -8
  51. monocle_apptrace/instrumentation/metamodel/haystack/entities/inference.py +15 -10
  52. monocle_apptrace/instrumentation/metamodel/haystack/methods.py +7 -0
  53. monocle_apptrace/instrumentation/metamodel/lambdafunc/_helper.py +78 -0
  54. monocle_apptrace/instrumentation/metamodel/lambdafunc/entities/http.py +51 -0
  55. monocle_apptrace/instrumentation/metamodel/lambdafunc/methods.py +23 -0
  56. monocle_apptrace/instrumentation/metamodel/lambdafunc/wrapper.py +23 -0
  57. monocle_apptrace/instrumentation/metamodel/langchain/_helper.py +145 -19
  58. monocle_apptrace/instrumentation/metamodel/langchain/entities/inference.py +19 -10
  59. monocle_apptrace/instrumentation/metamodel/langgraph/_helper.py +67 -10
  60. monocle_apptrace/instrumentation/metamodel/langgraph/entities/inference.py +127 -20
  61. monocle_apptrace/instrumentation/metamodel/langgraph/langgraph_processor.py +46 -0
  62. monocle_apptrace/instrumentation/metamodel/langgraph/methods.py +35 -9
  63. monocle_apptrace/instrumentation/metamodel/litellm/__init__.py +0 -0
  64. monocle_apptrace/instrumentation/metamodel/litellm/_helper.py +89 -0
  65. monocle_apptrace/instrumentation/metamodel/litellm/entities/__init__.py +0 -0
  66. monocle_apptrace/instrumentation/metamodel/litellm/entities/inference.py +108 -0
  67. monocle_apptrace/instrumentation/metamodel/litellm/methods.py +19 -0
  68. monocle_apptrace/instrumentation/metamodel/llamaindex/_helper.py +227 -16
  69. monocle_apptrace/instrumentation/metamodel/llamaindex/entities/agent.py +127 -10
  70. monocle_apptrace/instrumentation/metamodel/llamaindex/entities/inference.py +13 -8
  71. monocle_apptrace/instrumentation/metamodel/llamaindex/llamaindex_processor.py +62 -0
  72. monocle_apptrace/instrumentation/metamodel/llamaindex/methods.py +68 -1
  73. monocle_apptrace/instrumentation/metamodel/mcp/__init__.py +0 -0
  74. monocle_apptrace/instrumentation/metamodel/mcp/_helper.py +118 -0
  75. monocle_apptrace/instrumentation/metamodel/mcp/entities/__init__.py +0 -0
  76. monocle_apptrace/instrumentation/metamodel/mcp/entities/inference.py +48 -0
  77. monocle_apptrace/instrumentation/metamodel/mcp/mcp_processor.py +8 -0
  78. monocle_apptrace/instrumentation/metamodel/mcp/methods.py +21 -0
  79. monocle_apptrace/instrumentation/metamodel/openai/_helper.py +188 -16
  80. monocle_apptrace/instrumentation/metamodel/openai/entities/inference.py +148 -92
  81. monocle_apptrace/instrumentation/metamodel/openai/entities/retrieval.py +1 -1
  82. monocle_apptrace/instrumentation/metamodel/teamsai/_helper.py +53 -23
  83. monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/actionplanner_output_processor.py +1 -1
  84. monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/teamsai_output_processor.py +15 -9
  85. monocle_apptrace/instrumentation/metamodel/teamsai/sample.json +0 -4
  86. {monocle_apptrace-0.4.1.dist-info → monocle_apptrace-0.5.0.dist-info}/METADATA +27 -11
  87. monocle_apptrace-0.5.0.dist-info/RECORD +142 -0
  88. monocle_apptrace-0.4.1.dist-info/RECORD +0 -96
  89. {monocle_apptrace-0.4.1.dist-info → monocle_apptrace-0.5.0.dist-info}/WHEEL +0 -0
  90. {monocle_apptrace-0.4.1.dist-info → monocle_apptrace-0.5.0.dist-info}/licenses/LICENSE +0 -0
  91. {monocle_apptrace-0.4.1.dist-info → monocle_apptrace-0.5.0.dist-info}/licenses/NOTICE +0 -0
@@ -1,17 +1,23 @@
1
+ import json
1
2
  import logging
2
- from monocle_apptrace.instrumentation.common.utils import MonocleSpanException
3
3
  from monocle_apptrace.instrumentation.common.utils import (
4
4
  Option,
5
+ MonocleSpanException,
5
6
  get_keys_as_tuple,
6
7
  get_nested_value,
7
8
  try_option,
8
9
  get_exception_message,
9
- get_exception_status_code
10
+ get_json_dumps,
11
+ get_status_code
10
12
  )
11
-
13
+ from monocle_apptrace.instrumentation.metamodel.finish_types import (
14
+ map_teamsai_finish_reason_to_finish_type,
15
+ TEAMSAI_FINISH_REASON_MAPPING
16
+ )
17
+ from monocle_apptrace.instrumentation.common.constants import CHILD_ERROR_CODE
12
18
  logger = logging.getLogger(__name__)
13
19
 
14
- def capture_input(arguments):
20
+ def extract_messages(arguments):
15
21
  """
16
22
  Captures the input from Teams AI state.
17
23
  Args:
@@ -47,7 +53,7 @@ def capture_input(arguments):
47
53
  if hasattr(context, "activity") and hasattr(context.activity, "text"):
48
54
  messages.append({'user': str(context.activity.text)})
49
55
 
50
- return [str(message) for message in messages]
56
+ return [get_json_dumps(message) for message in messages]
51
57
  except Exception as e:
52
58
  print(f"Debug - Arguments structure: {str(arguments)}")
53
59
  print(f"Debug - kwargs: {str(kwargs)}")
@@ -105,14 +111,6 @@ def get_prompt_template(arguments):
105
111
  "prompt_template_type": get_nested_value(arguments.get("kwargs", {}), ["prompt", "config", "type"])
106
112
  }
107
113
 
108
- def get_status_code(arguments):
109
- if arguments["exception"] is not None:
110
- return get_exception_status_code(arguments)
111
- elif hasattr(arguments["result"], "status"):
112
- return arguments["result"].status
113
- else:
114
- return 'success'
115
-
116
114
  def get_status(arguments):
117
115
  if arguments["exception"] is not None:
118
116
  return 'error'
@@ -120,27 +118,49 @@ def get_status(arguments):
120
118
  return 'success'
121
119
  else:
122
120
  return 'error'
123
-
124
- def get_response(arguments) -> str:
121
+
122
+ def extract_assistant_message(arguments) -> str:
125
123
  status = get_status_code(arguments)
126
- response:str = ""
124
+ messages = []
125
+ role = "assistant"
127
126
  if status == 'success':
128
127
  if hasattr(arguments["result"], "message"):
129
- response = arguments["result"].message.content
128
+ messages.append({role: arguments["result"].message.content})
130
129
  else:
131
- response = str(arguments["result"])
130
+ messages.append({role: str(arguments["result"])})
132
131
  else:
133
132
  if arguments["exception"] is not None:
134
- response = get_exception_message(arguments)
133
+ return get_exception_message(arguments)
135
134
  elif hasattr(arguments["result"], "error"):
136
- response = arguments["result"].error
137
- return response
135
+ return arguments["result"].error
136
+ return get_json_dumps(messages[0]) if messages else ""
137
+
138
+ def extract_finish_reason(arguments):
139
+ """Map TeamAI finish_reason to standardized finish_type."""
140
+ return get_status_code(arguments)
141
+
142
+ def extract_status_code(arguments):
143
+ # TeamsAI doesn't capture the status and other metadata from underlying OpenAI SDK.
144
+ # Thus we save the OpenAI status code in the parent span and retrieve it here to preserve meaningful error codes.
145
+ status = get_status_code(arguments)
146
+ if status == 'error' and arguments['exception'] is None:
147
+ child_status = arguments['span'].attributes.get(CHILD_ERROR_CODE)
148
+ if child_status is not None:
149
+ return child_status
150
+ return status
138
151
 
139
152
  def check_status(arguments):
140
153
  status = get_status_code(arguments)
141
- if status != 'success':
154
+ if status != 'success' and arguments['exception'] is None:
142
155
  raise MonocleSpanException(f"{status}")
143
156
 
157
+ def map_finish_reason_to_finish_type(finish_reason):
158
+ """Map TeamsAI finish_reason to standardized finish_type."""
159
+ if not finish_reason:
160
+ return None
161
+
162
+ return map_teamsai_finish_reason_to_finish_type(finish_reason)
163
+
144
164
  def extract_provider_name(instance):
145
165
  provider_url: Option[str] = try_option(getattr, instance._client.base_url, 'host')
146
166
  return provider_url.unwrap_or(None)
@@ -151,4 +171,14 @@ def extract_inference_endpoint(instance):
151
171
  if inference_endpoint.is_none() and "meta" in instance.client.__dict__:
152
172
  inference_endpoint = try_option(getattr, instance.client.meta, 'endpoint_url').map(str)
153
173
 
154
- return inference_endpoint.unwrap_or(extract_provider_name(instance))
174
+ return inference_endpoint.unwrap_or(extract_provider_name(instance))
175
+
176
+ def agent_inference_type(arguments):
177
+ """
178
+ Extracts the agent inference type from the arguments.
179
+ """
180
+ output = extract_assistant_message(arguments)
181
+ command = json.loads(json.loads(output).get("assistant", "")).get("action", "").get("name")
182
+ if command == "SAY":
183
+ return "turn"
184
+ return "tool_call"
@@ -55,7 +55,7 @@ ACTIONPLANNER_OUTPUT_PROCESSOR = {
55
55
  "_comment": "output from ActionPlanner",
56
56
  "attributes": [
57
57
  {
58
- "attribute": "status",
58
+ "attribute": "status_check",
59
59
  "accessor": lambda arguments: _helper.status_check(arguments)
60
60
  },
61
61
  {
@@ -1,7 +1,7 @@
1
1
  from monocle_apptrace.instrumentation.metamodel.teamsai import (
2
2
  _helper,
3
3
  )
4
- from monocle_apptrace.instrumentation.common.utils import get_llm_type
4
+ from monocle_apptrace.instrumentation.common.utils import get_error_message, get_llm_type
5
5
  TEAMAI_OUTPUT_PROCESSOR = {
6
6
  "type": "inference.framework",
7
7
  "attributes": [
@@ -44,7 +44,7 @@ TEAMAI_OUTPUT_PROCESSOR = {
44
44
  "attributes": [
45
45
  {
46
46
  "attribute": "input",
47
- "accessor": _helper.capture_input
47
+ "accessor": _helper.extract_messages
48
48
  }
49
49
  ]
50
50
  },
@@ -53,16 +53,12 @@ TEAMAI_OUTPUT_PROCESSOR = {
53
53
  "_comment": "output from Teams AI",
54
54
  "attributes": [
55
55
  {
56
- "attribute": "status",
57
- "accessor": lambda arguments: _helper.get_status(arguments)
58
- },
59
- {
60
- "attribute": "status_code",
61
- "accessor": lambda arguments: _helper.get_status_code(arguments)
56
+ "attribute": "error_code",
57
+ "accessor": lambda arguments: _helper.extract_status_code(arguments)
62
58
  },
63
59
  {
64
60
  "attribute": "response",
65
- "accessor": lambda arguments: _helper.get_response(arguments)
61
+ "accessor": lambda arguments: _helper.extract_assistant_message(arguments)
66
62
  },
67
63
  {
68
64
  "attribute": "check_status",
@@ -70,5 +66,15 @@ TEAMAI_OUTPUT_PROCESSOR = {
70
66
  }
71
67
  ]
72
68
  },
69
+ {
70
+ "name": "metadata",
71
+ "_comment": "metadata for Teams AI",
72
+ "attributes": [
73
+ {
74
+ "attribute": "inference_sub_type",
75
+ "accessor": lambda arguments: _helper.agent_inference_type(arguments)
76
+ }
77
+ ]
78
+ }
73
79
  ]
74
80
  }
@@ -100,8 +100,6 @@
100
100
  "name": "data.output",
101
101
  "timestamp": "2025-06-06T09:00:00.682278Z",
102
102
  "attributes": {
103
- "status": "success",
104
- "status_code": "success",
105
103
  "response": "Ah, the French press! The only thing more sophisticated than a monocle-wearing cat. Here\u2019s how to brew a cup of coffee that\u2019ll make you feel like you\u2019re sipping in a Parisian caf\u00e9:\n\n1. **Gather Your Gear**: You\u2019ll need coarsely ground coffee, hot water (just off the boil), a French press, and a timer. Optional: a beret for that extra flair.\n\n2. **Measure Your Coffee**: A good rule of thumb is"
106
104
  }
107
105
  }
@@ -324,8 +322,6 @@
324
322
  "name": "data.output",
325
323
  "timestamp": "2025-06-06T09:01:20.299355Z",
326
324
  "attributes": {
327
- "status": "success",
328
- "status_code": "success",
329
325
  "response": "Brewing coffee can be a delightful experience, and there are several methods to choose from. Below, I\u2019ll provide a detailed guide for three popular brewing methods: Pour-Over, French Press, and Espresso. Each method has its unique characteristics, so you can choose one based on your preference.\n\n### 1. Pour-Over Coffee\n\n**Equipment Needed:**\n- Pour-over dripper (e.g., Hario V60, Chemex)\n- Coffee filter\n- Kettle (preferably a gooseneck kettle for control)\n- Scale\n- Coffee grinder\n- Mug or carafe\n\n**Ingredients:**\n- Fresh coffee beans (medium roast recommended)\n- Filtered water\n\n**Steps:**\n1. **Measure Coffee:** Use a coffee-to-water ratio of 1:15. For example, for 300g of water, use 20g of coffee.\n2. **Grind Coffee:** Grind the coffee to a medium-coarse consistency, similar to sea salt.\n3. **Boil Water:** Heat water to about 200\u00b0F (93\u00b0C). If you don\u2019t have a thermometer, bring water to a boil and let it sit for 30 seconds.\n4. **Prepare Filter:** Place the coffee filter in the dripper and rinse it with hot water to eliminate paper taste and preheat the dripper.\n5. **Add Coffee:** Place the ground coffee in the filter and create a small well in the center.\n6. **Bloom:** Pour just enough hot water (about 40g) to saturate the grounds. Let it bloom for 30-45 seconds.\n7. **Brew:** Slowly pour the remaining water in a circular motion, avoiding the edges. Aim to finish pouring in about 2-3 minutes.\n8. **Serve:** Once the water has fully drained, remove the dripper, and enjoy your coffee!\n\n### 2. French Press Coffee\n\n**Equipment Needed:**\n- French press\n- Kettle\n- Scale\n- Coffee grinder\n- Stirring spoon\n- Timer\n\n**Ingredients:**\n- Fresh coffee beans (coarse grind recommended)\n- Filtered water\n\n**Steps:**\n1. **Measure Coffee:** Use a coffee-to-water ratio of 1:15. For example, for 350g of water, use 23g of coffee.\n2. **Grind Coffee:** Grind the coffee to a coarse consistency, similar to breadcrumbs.\n3. **Boil Water:** Heat water to about 200\u00b0F (93\u00b0C).\n4. **Add Coffee:** Place the ground coffee in the French press.\n5. **Add Water:** Pour hot water over the coffee grounds, ensuring all grounds are saturated. Stir gently to mix.\n6. **Steep:** Place the lid on the French press and let it steep for 4 minutes.\n7. **Press:** Slowly press the plunger down to separate the grounds from the coffee.\n8. **Serve:** Pour the coffee into your mug and enjoy!\n\n### 3. Espresso\n\n**Equipment Needed:**\n- Espresso machine\n- Coffee grinder\n- Tamper\n- Scale\n- Shot glass or demitasse\n\n**Ingredients:**\n- Fresh coffee beans (dark roast recommended)\n- Filtered water\n\n**Steps:**\n1. **Measure Coffee:** Use about 18-20g of coffee for a double shot (about 60ml).\n2. **Grind Coffee:** Grind the coffee to a fine consistency, similar to table salt.\n3. **Preheat Machine:** Turn on your espresso machine and allow it to heat up.\n4. **Add Coffee:** Place the ground coffee in the portafilter and distribute evenly.\n5. **Tamp:** Use a tamper to press the coffee evenly and firmly.\n6. **Brew:** Lock the portafilter into the machine and start the extraction. Aim for a brew time of 25-30 seconds.\n7. **Serve:** Once the espresso is brewed, pour it into a shot glass or demitasse and enjoy!\n\n### Troubleshooting Common Problems\n\n- **Bitter Coffee:** This can be due to over-extraction. Try a coarser grind or reduce the brew time.\n- **Weak Coffee:** This may be due to under-extraction. Use a finer grind or increase the brew time.\n- **Sour Coffee:** This can happen if the coffee is under-extracted or brewed with water that is too cool. Ensure your water is at the right temperature.\n\n### Conclusion\n\nEach brewing method has its nuances, and experimenting with different variables (grind size, water temperature, brew time) can help you find your perfect cup. Enjoy the process, and happy brewing!"
330
326
  }
331
327
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: monocle_apptrace
3
- Version: 0.4.1
3
+ Version: 0.5.0
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
@@ -20,43 +20,59 @@ Requires-Dist: boto3==1.37.24; extra == 'aws'
20
20
  Provides-Extra: azure
21
21
  Requires-Dist: azure-storage-blob==12.22.0; extra == 'azure'
22
22
  Provides-Extra: dev
23
+ Requires-Dist: a2a-sdk==0.2.8; extra == 'dev'
23
24
  Requires-Dist: anthropic-haystack; extra == 'dev'
24
- Requires-Dist: anthropic==0.52.0; extra == 'dev'
25
+ Requires-Dist: anthropic==0.57.1; extra == 'dev'
25
26
  Requires-Dist: azure-storage-blob==12.22.0; extra == 'dev'
26
27
  Requires-Dist: boto3==1.37.24; extra == 'dev'
27
- Requires-Dist: chromadb==1.0.10; extra == 'dev'
28
+ Requires-Dist: chromadb==1.0.15; extra == 'dev'
29
+ Requires-Dist: click==8.2.1; extra == 'dev'
28
30
  Requires-Dist: datasets==2.20.0; extra == 'dev'
29
31
  Requires-Dist: faiss-cpu==1.8.0; extra == 'dev'
32
+ Requires-Dist: fastapi>=0.115.0; extra == 'dev'
30
33
  Requires-Dist: flask; extra == 'dev'
34
+ Requires-Dist: google-adk==1.10.0; extra == 'dev'
35
+ Requires-Dist: google-generativeai==0.8.5; extra == 'dev'
31
36
  Requires-Dist: haystack-ai==2.3.0; extra == 'dev'
37
+ Requires-Dist: httpx==0.28.1; extra == 'dev'
32
38
  Requires-Dist: instructorembedding==1.0.1; extra == 'dev'
33
39
  Requires-Dist: langchain-anthropic==0.3.13; extra == 'dev'
34
40
  Requires-Dist: langchain-aws==0.2.23; extra == 'dev'
35
41
  Requires-Dist: langchain-chroma==0.2.4; extra == 'dev'
36
42
  Requires-Dist: langchain-community==0.3.24; extra == 'dev'
43
+ Requires-Dist: langchain-google-genai==2.1.8; extra == 'dev'
44
+ Requires-Dist: langchain-mcp-adapters==0.1.8; extra == 'dev'
37
45
  Requires-Dist: langchain-mistralai==0.2.10; extra == 'dev'
38
46
  Requires-Dist: langchain-openai==0.3.18; extra == 'dev'
39
47
  Requires-Dist: langchain==0.3.25; extra == 'dev'
40
48
  Requires-Dist: langchainhub==0.1.21; extra == 'dev'
41
- Requires-Dist: langgraph==0.2.68; extra == 'dev'
42
- Requires-Dist: llama-index-embeddings-huggingface==0.5.4; extra == 'dev'
43
- Requires-Dist: llama-index-llms-anthropic==0.6.19; extra == 'dev'
44
- Requires-Dist: llama-index-llms-azure-openai==0.3.2; extra == 'dev'
45
- Requires-Dist: llama-index-llms-mistralai==0.4.0; extra == 'dev'
46
- Requires-Dist: llama-index-vector-stores-chroma==0.4.1; extra == 'dev'
47
- Requires-Dist: llama-index-vector-stores-opensearch==0.5.4; extra == 'dev'
48
- Requires-Dist: llama-index==0.12.37; extra == 'dev'
49
+ Requires-Dist: langgraph-supervisor==0.0.28; extra == 'dev'
50
+ Requires-Dist: langgraph==0.5.4; extra == 'dev'
51
+ Requires-Dist: llama-index-embeddings-huggingface==0.6.0; extra == 'dev'
52
+ Requires-Dist: llama-index-llms-anthropic==0.8.1; extra == 'dev'
53
+ Requires-Dist: llama-index-llms-azure-openai==0.4.0; extra == 'dev'
54
+ Requires-Dist: llama-index-llms-mistralai==0.7.0; extra == 'dev'
55
+ Requires-Dist: llama-index-llms-openai==0.5.0; extra == 'dev'
56
+ Requires-Dist: llama-index-tools-mcp==0.3.0; extra == 'dev'
57
+ Requires-Dist: llama-index-vector-stores-chroma==0.5.0; extra == 'dev'
58
+ Requires-Dist: llama-index-vector-stores-opensearch==0.6.0; extra == 'dev'
59
+ Requires-Dist: llama-index==0.13.0; extra == 'dev'
60
+ Requires-Dist: mcp==1.12.1; extra == 'dev'
49
61
  Requires-Dist: mistral-haystack==0.0.2; extra == 'dev'
50
62
  Requires-Dist: numpy==1.26.4; extra == 'dev'
63
+ Requires-Dist: openai-agents==0.2.6; extra == 'dev'
51
64
  Requires-Dist: opendal==0.45.14; extra == 'dev'
52
65
  Requires-Dist: opensearch-haystack==1.2.0; extra == 'dev'
53
66
  Requires-Dist: opentelemetry-instrumentation-flask; extra == 'dev'
54
67
  Requires-Dist: parameterized==0.9.0; extra == 'dev'
68
+ Requires-Dist: pydantic==2.11.7; extra == 'dev'
55
69
  Requires-Dist: pytest-asyncio==0.26.0; extra == 'dev'
56
70
  Requires-Dist: pytest==8.3.5; extra == 'dev'
71
+ Requires-Dist: python-dotenv>=1.1.0; extra == 'dev'
57
72
  Requires-Dist: requests-aws4auth==1.2.3; extra == 'dev'
58
73
  Requires-Dist: sentence-transformers==2.6.1; extra == 'dev'
59
74
  Requires-Dist: types-requests==2.31.0.20240106; extra == 'dev'
75
+ Requires-Dist: uvicorn==0.35.0; extra == 'dev'
60
76
  Description-Content-Type: text/markdown
61
77
 
62
78
  # Monocle for tracing GenAI app code
@@ -0,0 +1,142 @@
1
+ monocle_apptrace/README.md,sha256=T5NFC01bF8VR0oVnAX_n0bhsEtttwqfTxDNAe5Y_ivE,3765
2
+ monocle_apptrace/__init__.py,sha256=XtoX7gHUSZgkY1nry8IFny8RslPhutZQUuEkqIrBzFQ,30
3
+ monocle_apptrace/__main__.py,sha256=MLLPbC4YTp8O2wQrn8BROSZGvQpQd5brk_d1n_dWVWA,573
4
+ monocle_apptrace/exporters/base_exporter.py,sha256=xm2MkDjuVZc-vmSXBMMsNMyIoy4z0O4g6wOAyuEnHwo,2062
5
+ monocle_apptrace/exporters/exporter_processor.py,sha256=-spCIJ_UfJ0fax_jE-ii3ODQBwtnHZgYIGVNd91Q718,6298
6
+ monocle_apptrace/exporters/file_exporter.py,sha256=bqRo1h9ubuUltYTj7-LxHWtPwlevBV6dvRbnJXQEwqs,7873
7
+ monocle_apptrace/exporters/monocle_exporters.py,sha256=qo6S53dp2ko6EzMP-ICL2buqgmw8HZboy19j7iHp1Qk,2882
8
+ monocle_apptrace/exporters/aws/s3_exporter.py,sha256=9GA2tiWOUBLtDdGIdLLyYJEdQ1jRC5SdxxVH3qqR8Qk,8260
9
+ monocle_apptrace/exporters/aws/s3_exporter_opendal.py,sha256=0aEUxdMgJaDUwqjw0DqlCMr8kjl01KgwUt3_RRCVFds,5917
10
+ monocle_apptrace/exporters/azure/blob_exporter.py,sha256=YqEouaqZQtO8bLF_OIYEAN6XQIwK_XrgtrU-itRQsdM,7285
11
+ monocle_apptrace/exporters/azure/blob_exporter_opendal.py,sha256=wQUtciyFMD28tpWTiP0-kBjUuxy4LuQSo04aMuHwtb4,7140
12
+ monocle_apptrace/exporters/okahu/okahu_exporter.py,sha256=wFkHd87nOXzFMRejrUiO6N0mNIWkxAyRzob6o82lr_c,4765
13
+ monocle_apptrace/instrumentation/__init__.py,sha256=wCzg-Ivla7p2F01pM1fEEQMztzcZZB4vD5cZ9CsTigw,94
14
+ monocle_apptrace/instrumentation/common/__init__.py,sha256=5iGX1KANnPGqLJJb8FG0H8HTyt94BZIr9lXjMBEBdTs,403
15
+ monocle_apptrace/instrumentation/common/constants.py,sha256=3dnjwwBgxaM6mJb38RXJHDspSPHPeBu-WNsLBKNq4tE,3780
16
+ monocle_apptrace/instrumentation/common/instrumentor.py,sha256=76-KyE10A53JKDVxBc5YfxqvSt-FxQqu33E0JUuLuLY,10966
17
+ monocle_apptrace/instrumentation/common/method_wrappers.py,sha256=ZhXITGWv_ssJ5qF6p4OXMh_h6Dgi6bUeCTJb05nFfZQ,13636
18
+ monocle_apptrace/instrumentation/common/span_handler.py,sha256=NuNvdC-6f-ouXtaaiLxiF2geYrkN_YGT4ylPDsh8qLI,14474
19
+ monocle_apptrace/instrumentation/common/tracing.md,sha256=6Lr8QGxEFHKhj-mMvLV3xjFnplKSs6HEdwl0McPK47M,7577
20
+ monocle_apptrace/instrumentation/common/utils.py,sha256=I8laM2qyA0Vfx9Apn5kjnVFXS7YT-Z9KTCB5iKY8L7U,15588
21
+ monocle_apptrace/instrumentation/common/wrapper.py,sha256=n1Gd_nW4y2xmnRNg9soYbLx69sB1__PHEyXfKEXzgZk,16912
22
+ monocle_apptrace/instrumentation/common/wrapper_method.py,sha256=E_OWQ2I4AAthWAtSBWHrzicHs0ug7vMkZIWJlp6D-H8,6583
23
+ monocle_apptrace/instrumentation/metamodel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
+ monocle_apptrace/instrumentation/metamodel/finish_types.py,sha256=Ybx-bsTlF60qgXRfsdPoAcEfvtkWlL03amymfcNeLrU,19162
25
+ monocle_apptrace/instrumentation/metamodel/a2a/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
+ monocle_apptrace/instrumentation/metamodel/a2a/_helper.py,sha256=BHuhF5OnEFEQR081lM4R538c83P--t1J5xHOREFDBpo,1281
27
+ monocle_apptrace/instrumentation/metamodel/a2a/methods.py,sha256=_KiCczpRZWfTkzpwQ36kLp5t6Fw-8UEse2Yg4kaHwUk,675
28
+ monocle_apptrace/instrumentation/metamodel/a2a/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
+ monocle_apptrace/instrumentation/metamodel/a2a/entities/inference.py,sha256=D3TnjuoPn8fg5n02vGRbbXGcLoyZ4ew_SSBCQikeHtY,3580
30
+ monocle_apptrace/instrumentation/metamodel/adk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
+ monocle_apptrace/instrumentation/metamodel/adk/_helper.py,sha256=f0tKHiJKxDC9ugV71q0W33uba-jVbPXwJywWi8R8ASw,5720
32
+ monocle_apptrace/instrumentation/metamodel/adk/methods.py,sha256=FAbAfknzFXldY93xXJybKP4jXH4Tm8c7HiwhsueiXd0,693
33
+ monocle_apptrace/instrumentation/metamodel/adk/entities/agent.py,sha256=7XbstXTAiESD7AjMUzmp2hobYZtAW72KdPmQ6Akzd3g,1619
34
+ monocle_apptrace/instrumentation/metamodel/adk/entities/tool.py,sha256=ANV4nz24sG_ApTi7dGG5ySQBM86oQDpCEoZjNezpzBc,1796
35
+ monocle_apptrace/instrumentation/metamodel/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
+ monocle_apptrace/instrumentation/metamodel/agents/_helper.py,sha256=9OoOeHf3rAwlZKaE7RVL4iPZsVN2nupFH_UwWn8JpLo,7481
37
+ monocle_apptrace/instrumentation/metamodel/agents/agents_processor.py,sha256=WtSV-PORqK7lWEqmtdZuuxluc4y-f5fHCnL_fCoi7mw,5442
38
+ monocle_apptrace/instrumentation/metamodel/agents/methods.py,sha256=_wWjz5WC1VkRr96FdD2BUCZbFnKP6pUG7EksIHTqq50,1818
39
+ monocle_apptrace/instrumentation/metamodel/agents/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
+ monocle_apptrace/instrumentation/metamodel/agents/entities/inference.py,sha256=z_scvByXS9P6AyL7ZG1axCPYSeXd07QAn1sDKjEWcQg,5791
41
+ monocle_apptrace/instrumentation/metamodel/aiohttp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
+ monocle_apptrace/instrumentation/metamodel/aiohttp/_helper.py,sha256=LjAYaZUUXw59dzol-NDTiz9uZNTZ2Mwu6WXggGpefd8,2088
43
+ monocle_apptrace/instrumentation/metamodel/aiohttp/methods.py,sha256=rcfGoRMLJeu-X2O9fGv6nhhjUrBJALKOJ-axiedavMI,435
44
+ monocle_apptrace/instrumentation/metamodel/aiohttp/entities/http.py,sha256=9mRr8nwUB4DSnFzpU9kwJkShlZbqwIPYztDfDp3_l0s,1701
45
+ monocle_apptrace/instrumentation/metamodel/anthropic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
+ monocle_apptrace/instrumentation/metamodel/anthropic/_helper.py,sha256=-P0azxoSxdQ0xMGrhjj1IjvytpsRpIzDNxBXOMLu5SY,8630
47
+ monocle_apptrace/instrumentation/metamodel/anthropic/methods.py,sha256=WVXoN_i5h9hXjrJV5xF9wIQIpmP_gCN3P8HEPfAsfik,703
48
+ monocle_apptrace/instrumentation/metamodel/anthropic/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
+ monocle_apptrace/instrumentation/metamodel/anthropic/entities/inference.py,sha256=7AfP0K30DtHkDOvfkXBCEfm3u2PjFgtZFoAa7t91xSw,3561
50
+ monocle_apptrace/instrumentation/metamodel/azfunc/_helper.py,sha256=Syy5hvVBGdA_NUebidt_wzcCWDUx-eAaThclr-oHVsQ,2725
51
+ monocle_apptrace/instrumentation/metamodel/azfunc/methods.py,sha256=dCcptd9nLsXkkWtSgXBh7zRia-1g-A3rgiC4cqt5Tzo,916
52
+ monocle_apptrace/instrumentation/metamodel/azfunc/wrapper.py,sha256=zssmQNWG-kn9cSfE1JYwqHsl1hU4zrN2xUcFbyos8oM,712
53
+ monocle_apptrace/instrumentation/metamodel/azfunc/entities/http.py,sha256=erarpDjLK69B0PcG70VIkeuDHuWKegBtxbgw6IfLMqo,1931
54
+ monocle_apptrace/instrumentation/metamodel/azureaiinference/__init__.py,sha256=zHdtJf4MZKSIi-4KPxdDR_dZdRAdZuy7Z8yDRa6cBps,44
55
+ monocle_apptrace/instrumentation/metamodel/azureaiinference/_helper.py,sha256=j0f9ej0k0696kXrmOq_bmO4uQuxcgM5UsMCVDWXcbCI,11734
56
+ monocle_apptrace/instrumentation/metamodel/azureaiinference/methods.py,sha256=PsxJPFSc9yp9uzdpwVUWUAd2PVwF7MYwf3I2_cqHSOk,810
57
+ monocle_apptrace/instrumentation/metamodel/azureaiinference/entities/inference.py,sha256=hcfBjq_2CsOZuFKka-DF7LcYLiRRiABZTqlbViKbX0Q,8664
58
+ monocle_apptrace/instrumentation/metamodel/botocore/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
+ monocle_apptrace/instrumentation/metamodel/botocore/_helper.py,sha256=bNvnv2kASii1DYYoOW9CFGcefJgTC4rq8JiGFXBKud4,8387
60
+ monocle_apptrace/instrumentation/metamodel/botocore/methods.py,sha256=LzmjbZjDWy7Uozc0chNjWG6PZhLngh_KJe5L6rw5rqI,452
61
+ monocle_apptrace/instrumentation/metamodel/botocore/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
+ monocle_apptrace/instrumentation/metamodel/botocore/entities/inference.py,sha256=gcbcdTKSUC7RPtf6gVisP5P1_xdVLJXKDZejHDXkCGk,2991
63
+ monocle_apptrace/instrumentation/metamodel/botocore/handlers/botocore_span_handler.py,sha256=aZ_jxngqjihxxTPFOqYH8rjoEdF_WVwE_3-TB57d_8I,1444
64
+ monocle_apptrace/instrumentation/metamodel/fastapi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
+ monocle_apptrace/instrumentation/metamodel/fastapi/_helper.py,sha256=3hdf-3oag50k5cPfknWwMrYJTS6Oo93WJHE4l-oLWzg,3205
66
+ monocle_apptrace/instrumentation/metamodel/fastapi/methods.py,sha256=iOtZc-D5jSQuH9mPzhymuxe2wsx2QbwT1yLwef2hJ1A,841
67
+ monocle_apptrace/instrumentation/metamodel/fastapi/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
+ monocle_apptrace/instrumentation/metamodel/fastapi/entities/http.py,sha256=ELKl5M_FOuMYH71cHebxp217EP4lMucYzzoXUKPeNCs,1257
69
+ monocle_apptrace/instrumentation/metamodel/flask/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
+ monocle_apptrace/instrumentation/metamodel/flask/_helper.py,sha256=vvP1k3ArXfX7oMqnjaEE77rOYcl_ssAmjjknBRX8jlg,2821
71
+ monocle_apptrace/instrumentation/metamodel/flask/methods.py,sha256=dWCMEDk-HWHiD0vlMoAVYbIFclstmVkUpRrCtqDWyFE,739
72
+ monocle_apptrace/instrumentation/metamodel/flask/entities/http.py,sha256=wIudpNk6-DY72k0p90XtvjKt8BilvOd-87Q2iqJnWa8,1525
73
+ monocle_apptrace/instrumentation/metamodel/gemini/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
+ monocle_apptrace/instrumentation/metamodel/gemini/_helper.py,sha256=qCjZGPYP_aidE4Eue4GK0x8RbTkh74ayJfJkFRLdhpg,5103
75
+ monocle_apptrace/instrumentation/metamodel/gemini/methods.py,sha256=prvi1oY4n1DAefP6IJ7McfrtprHRlwmtGBb-R1kxlPQ,881
76
+ monocle_apptrace/instrumentation/metamodel/gemini/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
+ monocle_apptrace/instrumentation/metamodel/gemini/entities/inference.py,sha256=DDqsAYwbsfAtPRGo7S4ZG-0AHy8yViqEcLrr1UU6Zmo,3137
78
+ monocle_apptrace/instrumentation/metamodel/gemini/entities/retrieval.py,sha256=V0ZaWC-FDBW-k9-CI7hvt67COZrFv6gK59bDYZWZcFo,1303
79
+ monocle_apptrace/instrumentation/metamodel/haystack/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
+ monocle_apptrace/instrumentation/metamodel/haystack/_helper.py,sha256=0sT-RlhtbZDIWBCts0qtSeVdsmZ7QRFtAAN8Gh-oIZw,9166
81
+ monocle_apptrace/instrumentation/metamodel/haystack/methods.py,sha256=fuICw7KVTA2zib4b0CmLp_WKA53Lu7YjgsEBeWAQ4eY,1826
82
+ monocle_apptrace/instrumentation/metamodel/haystack/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
+ monocle_apptrace/instrumentation/metamodel/haystack/entities/inference.py,sha256=RVm7MJ4C6k2EJTscCHWbZYaQWBqM3fyO6jfcNqJWi8M,3798
84
+ monocle_apptrace/instrumentation/metamodel/haystack/entities/retrieval.py,sha256=nq3lsk2qFxXqwrAHsBt8zrh4ZVGAJABkPtylrjUCCqc,2357
85
+ monocle_apptrace/instrumentation/metamodel/lambdafunc/_helper.py,sha256=tA79BQtHoCmQrEhUdpwPvOXjM3IrCzR_9cLbds9xBgI,2496
86
+ monocle_apptrace/instrumentation/metamodel/lambdafunc/methods.py,sha256=-b5dfI5oZVdRmBjfrVJgQuN910p7SUOu9Tc1AUhkz3A,934
87
+ monocle_apptrace/instrumentation/metamodel/lambdafunc/wrapper.py,sha256=nxnfCwPftoRdHfjuRNrILEFOvB1e8oXqHRfPn-qxyZY,716
88
+ monocle_apptrace/instrumentation/metamodel/lambdafunc/entities/http.py,sha256=PPpyh-7w4k4sCllXNODF3IfI7ZBZWTWi1FyafZCJJ90,1707
89
+ monocle_apptrace/instrumentation/metamodel/langchain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
90
+ monocle_apptrace/instrumentation/metamodel/langchain/_helper.py,sha256=7sqQZSv0GVacRr5pnm9bqwp_cmE6lh8YyOdgsu9s35U,12349
91
+ monocle_apptrace/instrumentation/metamodel/langchain/methods.py,sha256=sQLrji0NLuG8i8q5UdbgzPUjWh_WmromfvWL3pGZdCk,2941
92
+ monocle_apptrace/instrumentation/metamodel/langchain/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
93
+ monocle_apptrace/instrumentation/metamodel/langchain/entities/inference.py,sha256=wFhs3GiAkRvJAKjJjvPQMML-NAy_HzCRMfhG1B8HVRQ,3564
94
+ monocle_apptrace/instrumentation/metamodel/langchain/entities/retrieval.py,sha256=r4UqTCT5vOfkbz9lwoTRoiMkUUJtPMwqOYbqo53A6K8,2039
95
+ monocle_apptrace/instrumentation/metamodel/langgraph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
96
+ monocle_apptrace/instrumentation/metamodel/langgraph/_helper.py,sha256=zzSQPJ2gXzQbvPlKDj3Hvucc1gYSHT2_m2K5XevLYeU,3890
97
+ monocle_apptrace/instrumentation/metamodel/langgraph/langgraph_processor.py,sha256=guV7k75wI39GOErpzwlCIEMp30hclQbxgH-xEL1f1XM,2790
98
+ monocle_apptrace/instrumentation/metamodel/langgraph/methods.py,sha256=Y_2OeOKVR9rrXyDTcBIMyrB88mGwPggd5couJf_1PGk,1211
99
+ monocle_apptrace/instrumentation/metamodel/langgraph/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
100
+ monocle_apptrace/instrumentation/metamodel/langgraph/entities/inference.py,sha256=of8YhcUhEVkBQXyNY-ud2D4ZVZtvxncEkFWjxru94yc,4802
101
+ monocle_apptrace/instrumentation/metamodel/litellm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
102
+ monocle_apptrace/instrumentation/metamodel/litellm/_helper.py,sha256=Yo0RtiJ4WKDRuC9VqUmXmdQmRLduOsVGHMNwswwdcLk,3433
103
+ monocle_apptrace/instrumentation/metamodel/litellm/methods.py,sha256=D3rT7bQKzPRxGIs3GxwPmjmmti8ndF7_5Cmz8ojfSJQ,627
104
+ monocle_apptrace/instrumentation/metamodel/litellm/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
105
+ monocle_apptrace/instrumentation/metamodel/litellm/entities/inference.py,sha256=5n6e_3zd6VefCQ57XgFZnc11KmW3JCEw3KwqQV_3N6Y,3554
106
+ monocle_apptrace/instrumentation/metamodel/llamaindex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
107
+ monocle_apptrace/instrumentation/metamodel/llamaindex/_helper.py,sha256=-Vw215wWAqLuvWsdSDzllmHaKAm6Vd-kAUfDRevnWxY,16221
108
+ monocle_apptrace/instrumentation/metamodel/llamaindex/llamaindex_processor.py,sha256=BRZWUSY5M6cpU1YpsBjL2jBtrWD2suWLN04eDcL1xsM,3903
109
+ monocle_apptrace/instrumentation/metamodel/llamaindex/methods.py,sha256=OQjFgyBC6ykHOrsV3otw81gHPtPiAV20UUT_-c9L-Vs,5166
110
+ monocle_apptrace/instrumentation/metamodel/llamaindex/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
111
+ monocle_apptrace/instrumentation/metamodel/llamaindex/entities/agent.py,sha256=EjxwuMUksUZeO00jleM4MnWuufXL7YNGKeOzEmUJNos,4955
112
+ monocle_apptrace/instrumentation/metamodel/llamaindex/entities/inference.py,sha256=t25og0SOnWLeL9_CI94SGLoTuE2FI3oftd8a3B3XWr4,3319
113
+ monocle_apptrace/instrumentation/metamodel/llamaindex/entities/retrieval.py,sha256=QBF1nrqog5KHh925jiY2V-kejL6iVLKUowZmqUDoiJ4,1870
114
+ monocle_apptrace/instrumentation/metamodel/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
+ monocle_apptrace/instrumentation/metamodel/mcp/_helper.py,sha256=fqb3SnkI01lq8PW2s-XKO49b_JZlUxafDkbbYvb-uX8,3840
116
+ monocle_apptrace/instrumentation/metamodel/mcp/mcp_processor.py,sha256=bCAEUYNudGcXhpS-U7GP6Zt917AhvxJWJpoykfjE044,377
117
+ monocle_apptrace/instrumentation/metamodel/mcp/methods.py,sha256=udDKg5r89PHuYo-0y44cr0qSJgDKtku19WNP-lnrsAU,686
118
+ monocle_apptrace/instrumentation/metamodel/mcp/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
119
+ monocle_apptrace/instrumentation/metamodel/mcp/entities/inference.py,sha256=h1YTuSgInXymc3icwZiXmE8hfhtjjOP90kdETqUlS7A,1410
120
+ monocle_apptrace/instrumentation/metamodel/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
121
+ monocle_apptrace/instrumentation/metamodel/openai/_helper.py,sha256=sHBnUzK766d52uzxV717lHeIPwKQfblBHSdgCPWVr_M,14995
122
+ monocle_apptrace/instrumentation/metamodel/openai/methods.py,sha256=jpqZyfiJbzMz1r3W3fwMCGiQsbiDSkhqgADJextGxFQ,1796
123
+ monocle_apptrace/instrumentation/metamodel/openai/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
124
+ monocle_apptrace/instrumentation/metamodel/openai/entities/inference.py,sha256=7jcWO43ocdJiZtAMeDwMebSWuGaunMiWu1pAMyDp2U0,10272
125
+ monocle_apptrace/instrumentation/metamodel/openai/entities/retrieval.py,sha256=atvkAmG-7OiNndmH9kNWOMfN1vBpZ6lEZgMR_JISCe8,1457
126
+ monocle_apptrace/instrumentation/metamodel/requests/__init__.py,sha256=mg04UgoPzzcH-cPOahYUqN9T-TolZyOZipnBwDg5TP8,250
127
+ monocle_apptrace/instrumentation/metamodel/requests/_helper.py,sha256=GS03VbT9LiGwt4Mz2DPHtxuWd3xhQL4liS9-dfpy9SE,1985
128
+ monocle_apptrace/instrumentation/metamodel/requests/methods.py,sha256=O7lkglRvV97zqnCu6r2JwvW8WQqi4uvlpmNkAPpXigE,440
129
+ monocle_apptrace/instrumentation/metamodel/requests/entities/http.py,sha256=TlY4NZtPleewbF5W0qV61L2ByDOf44EOZhKQgwzRIKc,1669
130
+ monocle_apptrace/instrumentation/metamodel/teamsai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
131
+ monocle_apptrace/instrumentation/metamodel/teamsai/_helper.py,sha256=9DJgmdHNEeTELnv4Qu0ZCbeknFFtTA8f0XsSOIsmETs,7195
132
+ monocle_apptrace/instrumentation/metamodel/teamsai/methods.py,sha256=5fPh2l8nSi524KwHGp-m6GVEy3lXmBG-97i7r0CpE2g,3453
133
+ monocle_apptrace/instrumentation/metamodel/teamsai/sample.json,sha256=GnlzIad8rjugqkOh18bhKdxNlrJW77zSjwT6JEqDwyU,26003
134
+ monocle_apptrace/instrumentation/metamodel/teamsai/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
135
+ monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
136
+ monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/actionplanner_output_processor.py,sha256=FRR9iBdDBXfYscP-lkORMNKl_lllflZN6gMlC7m_94w,3206
137
+ monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/teamsai_output_processor.py,sha256=jblD2WRHeTNJPWaWu6LH1k9v5aFo0tRQ3iMjKmd0EjI,2940
138
+ monocle_apptrace-0.5.0.dist-info/METADATA,sha256=ls5LFpDo3wGkisFYOAbNmgOrX2j0FnCj_hZu3Q8rtds,7424
139
+ monocle_apptrace-0.5.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
140
+ monocle_apptrace-0.5.0.dist-info/licenses/LICENSE,sha256=ay9trLiP5I7ZsFXo6AqtkLYdRqe5S9r-DrPOvsNlZrg,9136
141
+ monocle_apptrace-0.5.0.dist-info/licenses/NOTICE,sha256=9jn4xtwM_uUetJMx5WqGnhrR7MIhpoRlpokjSTlyt8c,112
142
+ monocle_apptrace-0.5.0.dist-info/RECORD,,
@@ -1,96 +0,0 @@
1
- monocle_apptrace/README.md,sha256=T5NFC01bF8VR0oVnAX_n0bhsEtttwqfTxDNAe5Y_ivE,3765
2
- monocle_apptrace/__init__.py,sha256=XtoX7gHUSZgkY1nry8IFny8RslPhutZQUuEkqIrBzFQ,30
3
- monocle_apptrace/__main__.py,sha256=wBwV0fpwIuj9XSorPRP1MpkHHkZPM9Tg-lIFj1nokkU,609
4
- monocle_apptrace/exporters/base_exporter.py,sha256=xm2MkDjuVZc-vmSXBMMsNMyIoy4z0O4g6wOAyuEnHwo,2062
5
- monocle_apptrace/exporters/exporter_processor.py,sha256=-spCIJ_UfJ0fax_jE-ii3ODQBwtnHZgYIGVNd91Q718,6298
6
- monocle_apptrace/exporters/file_exporter.py,sha256=KnKXKnrhLv7mXMZlArcz7YTWYBT6YMBYPp5S0aGM1Dg,3723
7
- monocle_apptrace/exporters/monocle_exporters.py,sha256=qo6S53dp2ko6EzMP-ICL2buqgmw8HZboy19j7iHp1Qk,2882
8
- monocle_apptrace/exporters/aws/s3_exporter.py,sha256=9GA2tiWOUBLtDdGIdLLyYJEdQ1jRC5SdxxVH3qqR8Qk,8260
9
- monocle_apptrace/exporters/aws/s3_exporter_opendal.py,sha256=0aEUxdMgJaDUwqjw0DqlCMr8kjl01KgwUt3_RRCVFds,5917
10
- monocle_apptrace/exporters/azure/blob_exporter.py,sha256=YqEouaqZQtO8bLF_OIYEAN6XQIwK_XrgtrU-itRQsdM,7285
11
- monocle_apptrace/exporters/azure/blob_exporter_opendal.py,sha256=wQUtciyFMD28tpWTiP0-kBjUuxy4LuQSo04aMuHwtb4,7140
12
- monocle_apptrace/exporters/okahu/okahu_exporter.py,sha256=wFkHd87nOXzFMRejrUiO6N0mNIWkxAyRzob6o82lr_c,4765
13
- monocle_apptrace/instrumentation/__init__.py,sha256=wCzg-Ivla7p2F01pM1fEEQMztzcZZB4vD5cZ9CsTigw,94
14
- monocle_apptrace/instrumentation/common/__init__.py,sha256=oNEcgw4N36_XzPeN1gc7wxhPjVg-Vhh8EjvUIQZ7pDM,224
15
- monocle_apptrace/instrumentation/common/constants.py,sha256=rqoQA8dcDO6r0l6tsXRGY5GONaLWN7ryomlH6gMR4hg,3356
16
- monocle_apptrace/instrumentation/common/instrumentor.py,sha256=6xL1o9ug5FTAIFiP1YpRv9_-Go-vEgluUbNaqhX1DRM,16330
17
- monocle_apptrace/instrumentation/common/span_handler.py,sha256=sWlGglXjCX8UjL7YVc1D6PZcmFlvyKMGAbggHd0hkSg,13233
18
- monocle_apptrace/instrumentation/common/tracing.md,sha256=6Lr8QGxEFHKhj-mMvLV3xjFnplKSs6HEdwl0McPK47M,7577
19
- monocle_apptrace/instrumentation/common/utils.py,sha256=1A_i0fz9QAgsdqfytGzwxdURs5MHXO0ZlyP4QDErmCI,14498
20
- monocle_apptrace/instrumentation/common/wrapper.py,sha256=NZC0xymn2q6_bFK0d91F0Z-W-YoCmIjOZEm1t1XKSY4,11409
21
- monocle_apptrace/instrumentation/common/wrapper_method.py,sha256=Dqqe2UuhVq-Ej07YnWWnnkz_Jkx10gIZfykeCTmwySs,4396
22
- monocle_apptrace/instrumentation/metamodel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
- monocle_apptrace/instrumentation/metamodel/aiohttp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
- monocle_apptrace/instrumentation/metamodel/aiohttp/_helper.py,sha256=h-zrif2vgPL9JbCf1eKHbKBYHAxMdHxOdY-soIDGti8,2361
25
- monocle_apptrace/instrumentation/metamodel/aiohttp/methods.py,sha256=rcfGoRMLJeu-X2O9fGv6nhhjUrBJALKOJ-axiedavMI,435
26
- monocle_apptrace/instrumentation/metamodel/aiohttp/entities/http.py,sha256=9mRr8nwUB4DSnFzpU9kwJkShlZbqwIPYztDfDp3_l0s,1701
27
- monocle_apptrace/instrumentation/metamodel/anthropic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
- monocle_apptrace/instrumentation/metamodel/anthropic/_helper.py,sha256=qmVo78mOJvBES8J0Z-8WPxoArQBidmdFb2nzv8BHb9o,3597
29
- monocle_apptrace/instrumentation/metamodel/anthropic/methods.py,sha256=WVXoN_i5h9hXjrJV5xF9wIQIpmP_gCN3P8HEPfAsfik,703
30
- monocle_apptrace/instrumentation/metamodel/anthropic/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
- monocle_apptrace/instrumentation/metamodel/anthropic/entities/inference.py,sha256=Vn_3X6_2ue8QhLLvSSl7gwPOMcHLtjmH4N_0A7co8tA,3069
32
- monocle_apptrace/instrumentation/metamodel/azfunc/_helper.py,sha256=4L1EOfiWGTzdzESOZdndNCeonf4jPX-KDc861jxDFi4,2795
33
- monocle_apptrace/instrumentation/metamodel/azfunc/methods.py,sha256=dCcptd9nLsXkkWtSgXBh7zRia-1g-A3rgiC4cqt5Tzo,916
34
- monocle_apptrace/instrumentation/metamodel/azfunc/wrapper.py,sha256=zssmQNWG-kn9cSfE1JYwqHsl1hU4zrN2xUcFbyos8oM,712
35
- monocle_apptrace/instrumentation/metamodel/azfunc/entities/http.py,sha256=mwCZSfgj_eqaIcu8b84zK4FU_rUwa09qGQod7YrN-Qk,1711
36
- monocle_apptrace/instrumentation/metamodel/azureaiinference/__init__.py,sha256=zHdtJf4MZKSIi-4KPxdDR_dZdRAdZuy7Z8yDRa6cBps,44
37
- monocle_apptrace/instrumentation/metamodel/azureaiinference/_helper.py,sha256=KduqZHpkdX5MyTkbTf3iwsnoKXFlvtqNcFsm44SFaJA,8145
38
- monocle_apptrace/instrumentation/metamodel/azureaiinference/methods.py,sha256=PsxJPFSc9yp9uzdpwVUWUAd2PVwF7MYwf3I2_cqHSOk,810
39
- monocle_apptrace/instrumentation/metamodel/azureaiinference/entities/inference.py,sha256=PMosEhpwZrxDSxqFfi6b559TvScLQX-b7ZBM9EimuVQ,7947
40
- monocle_apptrace/instrumentation/metamodel/botocore/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
- monocle_apptrace/instrumentation/metamodel/botocore/_helper.py,sha256=4jYZ_aAT4JwSPkeIRSjp8GFLk9sfNbAPrzYqpAXF7vA,5088
42
- monocle_apptrace/instrumentation/metamodel/botocore/methods.py,sha256=LzmjbZjDWy7Uozc0chNjWG6PZhLngh_KJe5L6rw5rqI,452
43
- monocle_apptrace/instrumentation/metamodel/botocore/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
- monocle_apptrace/instrumentation/metamodel/botocore/entities/inference.py,sha256=dk9R8zVdwg5sj81MNCYvVZ1B59uHnBxyXO0Z5i_9GgY,2744
45
- monocle_apptrace/instrumentation/metamodel/botocore/handlers/botocore_span_handler.py,sha256=8FSdoQSS6DuowF7KHhCRj5kpxYF-bBNR47W1tB-gVh0,1433
46
- monocle_apptrace/instrumentation/metamodel/flask/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
- monocle_apptrace/instrumentation/metamodel/flask/_helper.py,sha256=seLVsL5gE3GbjY3Yetgg1WnswhDzb0zEQR05fHf5xTM,3094
48
- monocle_apptrace/instrumentation/metamodel/flask/methods.py,sha256=dWCMEDk-HWHiD0vlMoAVYbIFclstmVkUpRrCtqDWyFE,739
49
- monocle_apptrace/instrumentation/metamodel/flask/entities/http.py,sha256=wIudpNk6-DY72k0p90XtvjKt8BilvOd-87Q2iqJnWa8,1525
50
- monocle_apptrace/instrumentation/metamodel/haystack/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
- monocle_apptrace/instrumentation/metamodel/haystack/_helper.py,sha256=IacHHTBqts3l-fWgq_6gPiycbGIWHiEduDW26-s6SDc,5709
52
- monocle_apptrace/instrumentation/metamodel/haystack/methods.py,sha256=Zd70ycMQ5qWsjPXnQL6qoThNKrQA80P6t11sFyEbQR4,1585
53
- monocle_apptrace/instrumentation/metamodel/haystack/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
- monocle_apptrace/instrumentation/metamodel/haystack/entities/inference.py,sha256=6uJZLAel7rNZZOEAGNivjkUK_ZrDrYzyFbeGc_OZPa8,3550
55
- monocle_apptrace/instrumentation/metamodel/haystack/entities/retrieval.py,sha256=nq3lsk2qFxXqwrAHsBt8zrh4ZVGAJABkPtylrjUCCqc,2357
56
- monocle_apptrace/instrumentation/metamodel/langchain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
- monocle_apptrace/instrumentation/metamodel/langchain/_helper.py,sha256=qop4_UvP-s-zvfex1Q8UetE_Pt2zEjFp9vRHbYm6QoE,5626
58
- monocle_apptrace/instrumentation/metamodel/langchain/methods.py,sha256=sQLrji0NLuG8i8q5UdbgzPUjWh_WmromfvWL3pGZdCk,2941
59
- monocle_apptrace/instrumentation/metamodel/langchain/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
- monocle_apptrace/instrumentation/metamodel/langchain/entities/inference.py,sha256=qMsceF7x7OT65UmtICgiukXtsI1TiBwzJoJ7vLxsKqw,3107
61
- monocle_apptrace/instrumentation/metamodel/langchain/entities/retrieval.py,sha256=r4UqTCT5vOfkbz9lwoTRoiMkUUJtPMwqOYbqo53A6K8,2039
62
- monocle_apptrace/instrumentation/metamodel/langgraph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
- monocle_apptrace/instrumentation/metamodel/langgraph/_helper.py,sha256=-XmAbhkgqwaunFZa-BP0zWZ3e-uD-ihSszbn5Cz75yc,2043
64
- monocle_apptrace/instrumentation/metamodel/langgraph/methods.py,sha256=gnrKhcEPoy_qjyZWEkKZAUGTjRHvE3rqm3b4hQZoWMQ,453
65
- monocle_apptrace/instrumentation/metamodel/langgraph/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
- monocle_apptrace/instrumentation/metamodel/langgraph/entities/inference.py,sha256=OaPeQ8pkyEP5j6ad537MTPp0BdDI7nabxf60u66Dzbk,1659
67
- monocle_apptrace/instrumentation/metamodel/llamaindex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
- monocle_apptrace/instrumentation/metamodel/llamaindex/_helper.py,sha256=y8IV9HhJ-qgyxBWHqikYgmOcSSPlTrY641PLHOQbeis,6982
69
- monocle_apptrace/instrumentation/metamodel/llamaindex/methods.py,sha256=p2mDYF_Izgz9M919n3Do5tlc5XRAZt_rnkFRqqIO5yo,3001
70
- monocle_apptrace/instrumentation/metamodel/llamaindex/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
- monocle_apptrace/instrumentation/metamodel/llamaindex/entities/agent.py,sha256=g7IEwFMLjYvxljX7iHoYSPJW6k-wC7Z3i_y2qlNEZcs,1338
72
- monocle_apptrace/instrumentation/metamodel/llamaindex/entities/inference.py,sha256=R6tGA3UzKbPmLNYNaRlm0Ebt2rna9AwWSYdtrUlbWoc,3054
73
- monocle_apptrace/instrumentation/metamodel/llamaindex/entities/retrieval.py,sha256=QBF1nrqog5KHh925jiY2V-kejL6iVLKUowZmqUDoiJ4,1870
74
- monocle_apptrace/instrumentation/metamodel/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
- monocle_apptrace/instrumentation/metamodel/openai/_helper.py,sha256=0xytwhtfMX1ExDAvx48ttwprEBqcqPCMe9nUPgrQrvI,5990
76
- monocle_apptrace/instrumentation/metamodel/openai/methods.py,sha256=jpqZyfiJbzMz1r3W3fwMCGiQsbiDSkhqgADJextGxFQ,1796
77
- monocle_apptrace/instrumentation/metamodel/openai/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
78
- monocle_apptrace/instrumentation/metamodel/openai/entities/inference.py,sha256=fZ48svKJ7LS0ld_vl-uWOeOLPxjZIhG-9ZMrN1gUJDE,8283
79
- monocle_apptrace/instrumentation/metamodel/openai/entities/retrieval.py,sha256=LU7aec302ZqPrs9MzFWU-JTnhK8OpYfgQKMmktlD6-8,1457
80
- monocle_apptrace/instrumentation/metamodel/requests/__init__.py,sha256=mg04UgoPzzcH-cPOahYUqN9T-TolZyOZipnBwDg5TP8,250
81
- monocle_apptrace/instrumentation/metamodel/requests/_helper.py,sha256=GS03VbT9LiGwt4Mz2DPHtxuWd3xhQL4liS9-dfpy9SE,1985
82
- monocle_apptrace/instrumentation/metamodel/requests/methods.py,sha256=O7lkglRvV97zqnCu6r2JwvW8WQqi4uvlpmNkAPpXigE,440
83
- monocle_apptrace/instrumentation/metamodel/requests/entities/http.py,sha256=TlY4NZtPleewbF5W0qV61L2ByDOf44EOZhKQgwzRIKc,1669
84
- monocle_apptrace/instrumentation/metamodel/teamsai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
85
- monocle_apptrace/instrumentation/metamodel/teamsai/_helper.py,sha256=a06bWDryIfzrnT2KDtT54u-eVbEUTgx2oB6LX9FTHmE,5908
86
- monocle_apptrace/instrumentation/metamodel/teamsai/methods.py,sha256=5fPh2l8nSi524KwHGp-m6GVEy3lXmBG-97i7r0CpE2g,3453
87
- monocle_apptrace/instrumentation/metamodel/teamsai/sample.json,sha256=CwIkP7q_XwmO2xnQrHX6MnbQq4rLxVT9z56iUBu5zJg,26161
88
- monocle_apptrace/instrumentation/metamodel/teamsai/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
89
- monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
90
- monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/actionplanner_output_processor.py,sha256=f2ZgGIutsvQJ81ocMS3CD0TjiTVEqS8hT_xvt_fh2Kk,3200
91
- monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/teamsai_output_processor.py,sha256=M5uPEbP5c57txrd7BDRXhK5rvRJfyNyvqavtkXuPjXU,2738
92
- monocle_apptrace-0.4.1.dist-info/METADATA,sha256=fbTO9VKwbju2ndxG4AEYGNgCdHw7vmmlWPe-VTPP0HA,6590
93
- monocle_apptrace-0.4.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
94
- monocle_apptrace-0.4.1.dist-info/licenses/LICENSE,sha256=ay9trLiP5I7ZsFXo6AqtkLYdRqe5S9r-DrPOvsNlZrg,9136
95
- monocle_apptrace-0.4.1.dist-info/licenses/NOTICE,sha256=9jn4xtwM_uUetJMx5WqGnhrR7MIhpoRlpokjSTlyt8c,112
96
- monocle_apptrace-0.4.1.dist-info/RECORD,,