microsoft-agents-a365-observability-core 0.1.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.
- microsoft_agents_a365/observability/core/__init__.py +61 -0
- microsoft_agents_a365/observability/core/agent_details.py +42 -0
- microsoft_agents_a365/observability/core/config.py +246 -0
- microsoft_agents_a365/observability/core/constants.py +107 -0
- microsoft_agents_a365/observability/core/execute_tool_scope.py +88 -0
- microsoft_agents_a365/observability/core/execution_type.py +13 -0
- microsoft_agents_a365/observability/core/exporters/agent365_exporter.py +310 -0
- microsoft_agents_a365/observability/core/exporters/utils.py +72 -0
- microsoft_agents_a365/observability/core/inference_call_details.py +18 -0
- microsoft_agents_a365/observability/core/inference_operation_type.py +11 -0
- microsoft_agents_a365/observability/core/inference_scope.py +140 -0
- microsoft_agents_a365/observability/core/invoke_agent_details.py +17 -0
- microsoft_agents_a365/observability/core/invoke_agent_scope.py +166 -0
- microsoft_agents_a365/observability/core/middleware/__init__.py +7 -0
- microsoft_agents_a365/observability/core/middleware/baggage_builder.py +319 -0
- microsoft_agents_a365/observability/core/middleware/turn_context_baggage.py +193 -0
- microsoft_agents_a365/observability/core/models/__init__.py +2 -0
- microsoft_agents_a365/observability/core/models/agent_type.py +25 -0
- microsoft_agents_a365/observability/core/models/caller_details.py +25 -0
- microsoft_agents_a365/observability/core/opentelemetry_scope.py +250 -0
- microsoft_agents_a365/observability/core/request.py +19 -0
- microsoft_agents_a365/observability/core/source_metadata.py +15 -0
- microsoft_agents_a365/observability/core/tenant_details.py +11 -0
- microsoft_agents_a365/observability/core/tool_call_details.py +18 -0
- microsoft_agents_a365/observability/core/tool_type.py +13 -0
- microsoft_agents_a365/observability/core/trace_processor/__init__.py +13 -0
- microsoft_agents_a365/observability/core/trace_processor/span_processor.py +75 -0
- microsoft_agents_a365/observability/core/trace_processor/util.py +44 -0
- microsoft_agents_a365/observability/core/utils.py +151 -0
- microsoft_agents_a365_observability_core-0.1.0.dist-info/METADATA +78 -0
- microsoft_agents_a365_observability_core-0.1.0.dist-info/RECORD +33 -0
- microsoft_agents_a365_observability_core-0.1.0.dist-info/WHEEL +5 -0
- microsoft_agents_a365_observability_core-0.1.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: microsoft-agents-a365-observability-core
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Telemetry, tracing, and monitoring components for AI agents
|
|
5
|
+
Author-email: Microsoft <support@microsoft.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/microsoft/Agent365-python
|
|
8
|
+
Project-URL: Repository, https://github.com/microsoft/Agent365-python
|
|
9
|
+
Project-URL: Issues, https://github.com/microsoft/Agent365-python/issues
|
|
10
|
+
Project-URL: Documentation, https://github.com/microsoft/Agent365-python/tree/main/libraries/microsoft-agents-a365-observability-core
|
|
11
|
+
Keywords: observability,telemetry,tracing,opentelemetry,monitoring,ai,agents
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Operating System :: OS Independent
|
|
18
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
19
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
20
|
+
Classifier: Topic :: System :: Monitoring
|
|
21
|
+
Requires-Python: >=3.11
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
Requires-Dist: opentelemetry-api>=1.36.0
|
|
24
|
+
Requires-Dist: opentelemetry-sdk>=1.36.0
|
|
25
|
+
Requires-Dist: opentelemetry-exporter-otlp>=1.36.0
|
|
26
|
+
Requires-Dist: pydantic>=2.0.0
|
|
27
|
+
Requires-Dist: typing-extensions>=4.0.0
|
|
28
|
+
Requires-Dist: microsoft-agents-a365-runtime>=0.0.0
|
|
29
|
+
Provides-Extra: azure
|
|
30
|
+
Requires-Dist: azure-monitor-opentelemetry-exporter>=1.0.0b39; extra == "azure"
|
|
31
|
+
Requires-Dist: azure-identity>=1.12.0; extra == "azure"
|
|
32
|
+
Requires-Dist: azure-monitor-ingestion>=1.0.0; extra == "azure"
|
|
33
|
+
Provides-Extra: jaeger
|
|
34
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-grpc>=1.36.0; extra == "jaeger"
|
|
35
|
+
Provides-Extra: dev
|
|
36
|
+
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
37
|
+
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
|
|
38
|
+
Requires-Dist: ruff>=0.1.0; extra == "dev"
|
|
39
|
+
Requires-Dist: black>=23.0.0; extra == "dev"
|
|
40
|
+
Requires-Dist: mypy>=1.0.0; extra == "dev"
|
|
41
|
+
Provides-Extra: test
|
|
42
|
+
Requires-Dist: pytest>=7.0.0; extra == "test"
|
|
43
|
+
Requires-Dist: pytest-asyncio>=0.21.0; extra == "test"
|
|
44
|
+
|
|
45
|
+
# microsoft-agents-a365-observability-core
|
|
46
|
+
|
|
47
|
+
[](https://pypi.org/project/microsoft-agents-a365-observability-core)
|
|
48
|
+
[](https://pypi.org/project/microsoft-agents-a365-observability-core)
|
|
49
|
+
|
|
50
|
+
Telemetry, tracing, and monitoring components for AI agents built on OpenTelemetry. This package provides structured spans for agent invocation, tool execution, and LLM inference with context propagation and pluggable exporters.
|
|
51
|
+
|
|
52
|
+
## Installation
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
pip install microsoft-agents-a365-observability-core
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## Usage
|
|
59
|
+
|
|
60
|
+
For usage examples and detailed documentation, see the [Observability documentation](https://learn.microsoft.com/microsoft-agent-365/developer/observability?tabs=python) on Microsoft Learn.
|
|
61
|
+
|
|
62
|
+
## Support
|
|
63
|
+
|
|
64
|
+
For issues, questions, or feedback:
|
|
65
|
+
|
|
66
|
+
- File issues in the [GitHub Issues](https://github.com/microsoft/Agent365-python/issues) section
|
|
67
|
+
- See the [main documentation](../../../README.md) for more information
|
|
68
|
+
|
|
69
|
+
## Trademarks
|
|
70
|
+
|
|
71
|
+
*Microsoft, Windows, Microsoft Azure and/or other Microsoft products and services referenced in the documentation may be either trademarks or registered trademarks of Microsoft in the United States and/or other countries. The licenses for this project do not grant you rights to use any Microsoft names, logos, or trademarks. Microsoft's general trademark guidelines can be found at http://go.microsoft.com/fwlink/?LinkID=254653.*
|
|
72
|
+
|
|
73
|
+
## License
|
|
74
|
+
|
|
75
|
+
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
76
|
+
|
|
77
|
+
Licensed under the MIT License - see the [LICENSE](../../../LICENSE.md) file for details.
|
|
78
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
microsoft_agents_a365/observability/core/__init__.py,sha256=1-Jmokc2cQv7p_RB7W22ZEdqQ0Doq8yDENx_Yews2p8,1737
|
|
2
|
+
microsoft_agents_a365/observability/core/agent_details.py,sha256=U0xgrtrnNXrI8yjmBk7teXuMCvIIk0zWEOti_RvJP1o,1147
|
|
3
|
+
microsoft_agents_a365/observability/core/config.py,sha256=-sCfRUQNSk2XHnh-Ez1DSVrXS2vHr_2YD-lZ8byyFjk,8828
|
|
4
|
+
microsoft_agents_a365/observability/core/constants.py,sha256=K__ga_vnsqrOIVzPtW4gWeu8xLJnAxJdkmbMzYYwPXY,4614
|
|
5
|
+
microsoft_agents_a365/observability/core/execute_tool_scope.py,sha256=RcibM_Q-lEhSOpAoRioDao-HiC72W741-SCbcPDWqyI,2989
|
|
6
|
+
microsoft_agents_a365/observability/core/execution_type.py,sha256=Qsf-7_7DzZnRQZ5NHYU31ggfxAjPwneNnda1hOodmG0,303
|
|
7
|
+
microsoft_agents_a365/observability/core/inference_call_details.py,sha256=V1-KQPNq0V36J91ptX96UNRcOW6cy-AV5eIlwbzsrSg,483
|
|
8
|
+
microsoft_agents_a365/observability/core/inference_operation_type.py,sha256=ZLdDdYC0V_0Sff_aTSaiIRVB4a9wEduS7EXpYlme6_M,273
|
|
9
|
+
microsoft_agents_a365/observability/core/inference_scope.py,sha256=87r367uQ4qVp8NpR0na-uQScRR5ID1FlP6c3cmIxvMc,4973
|
|
10
|
+
microsoft_agents_a365/observability/core/invoke_agent_details.py,sha256=PEwkJq-nUz8sxLsbz44hIydGHiO2tHj-sVBkMpZXC1A,389
|
|
11
|
+
microsoft_agents_a365/observability/core/invoke_agent_scope.py,sha256=NJSeKeNmvutn_MZARIGSg80n7HxTW3BazqyXw-9LFlY,6600
|
|
12
|
+
microsoft_agents_a365/observability/core/opentelemetry_scope.py,sha256=I8WQoQkCygC7jZRrP2aHsJScGqQKDVktLlRGxApfiZo,9734
|
|
13
|
+
microsoft_agents_a365/observability/core/request.py,sha256=fcqsmxPl0BMITwbvy5lK5DkDm5YjIXKIwlJTclcdMCs,430
|
|
14
|
+
microsoft_agents_a365/observability/core/source_metadata.py,sha256=ijMIiJGvfepDnBqSuZbGsjvrTivz3f_Ub1azyZsCeMA,321
|
|
15
|
+
microsoft_agents_a365/observability/core/tenant_details.py,sha256=eC5S9Zq5sJrpGFWJLKBXVlj-OipysPSoLKSl-8I5YY0,218
|
|
16
|
+
microsoft_agents_a365/observability/core/tool_call_details.py,sha256=sPDW5yvey9_itpKxoo76pwoncOZyhONt9fy3cDdSYyY,455
|
|
17
|
+
microsoft_agents_a365/observability/core/tool_type.py,sha256=O9snmopwdhBjK5eqwyQU3aSdLZzX88c1UMi7oW7lFHg,271
|
|
18
|
+
microsoft_agents_a365/observability/core/utils.py,sha256=PkoB6J65HhRbiFU2uz_WMn5XHLiRbtvPWzkMWe5Vkos,4850
|
|
19
|
+
microsoft_agents_a365/observability/core/exporters/agent365_exporter.py,sha256=j_u0fykKK7BY0sg1PsEFE4ABoU4HPwEJMjeZ_KZ1fhk,11386
|
|
20
|
+
microsoft_agents_a365/observability/core/exporters/utils.py,sha256=6G09FlUmtpq57415QQal22AMJQi21IZqBE8_4No_Qfg,1877
|
|
21
|
+
microsoft_agents_a365/observability/core/middleware/__init__.py,sha256=v_vLyv0BQOW9pAvuUeL6Q0ZQ3Ji4MdYYcFDfP7CqvMk,177
|
|
22
|
+
microsoft_agents_a365/observability/core/middleware/baggage_builder.py,sha256=RCdaOuXO6T_5zFP1K_xukTuibee2CIIQmYuvvFjXtNw,9538
|
|
23
|
+
microsoft_agents_a365/observability/core/middleware/turn_context_baggage.py,sha256=6IuS8SLbM-W-G5FgHncBurXi9fF-hRaFHjI78Bh3qsI,6698
|
|
24
|
+
microsoft_agents_a365/observability/core/models/__init__.py,sha256=aCOr6sEsQpv9z4cJgWFA4qOs4xJqclqYYnxOVcxiK2Q,75
|
|
25
|
+
microsoft_agents_a365/observability/core/models/agent_type.py,sha256=ZazwwMAQRrYzzN3Ytz69F6thV4R6nemA6JrK-70fyt0,560
|
|
26
|
+
microsoft_agents_a365/observability/core/models/caller_details.py,sha256=8oaRKeGNteZq_RAQShhfUBs0iO-Sr9yjfk13Mv-xSjA,674
|
|
27
|
+
microsoft_agents_a365/observability/core/trace_processor/__init__.py,sha256=GML9CA7ssJPngxpGFPdVlp-0NmhgS4Ke9IGW5vm5Gys,194
|
|
28
|
+
microsoft_agents_a365/observability/core/trace_processor/span_processor.py,sha256=9Sou0m1huEncNcGdU-ThE8b9uPwHosZNSPdldOUdlkU,2513
|
|
29
|
+
microsoft_agents_a365/observability/core/trace_processor/util.py,sha256=-jM4ei60f5HKEDAVvBlZiTmhMhq8hVvvt4SwGgEnPuI,2239
|
|
30
|
+
microsoft_agents_a365_observability_core-0.1.0.dist-info/METADATA,sha256=MBThT80LmnRbrnUkb90Wyvau2hXUlTu2KilAapZTd9I,3872
|
|
31
|
+
microsoft_agents_a365_observability_core-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
32
|
+
microsoft_agents_a365_observability_core-0.1.0.dist-info/top_level.txt,sha256=G3c2_4sy5_EM_BWO67SbK2tKj4G8XFn-QXRbh8g9Lgk,22
|
|
33
|
+
microsoft_agents_a365_observability_core-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
microsoft_agents_a365
|