progress-observability 1.1.4__tar.gz
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.
- progress_observability-1.1.4/.gitignore +38 -0
- progress_observability-1.1.4/.python-version +1 -0
- progress_observability-1.1.4/LICENSE +7 -0
- progress_observability-1.1.4/PKG-INFO +68 -0
- progress_observability-1.1.4/README.md +50 -0
- progress_observability-1.1.4/notices.txt +1424 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/.gitignore +20 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/README.md +131 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/pyproject.toml +40 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/direct_provider_calls/tests/cassettes/test_multi_model_agents_ollama_dpc/instrument_auto-gemma2-2b-qwen2.5-3b.yaml +164 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/direct_provider_calls/tests/cassettes/test_multi_model_agents_openai_dpc/instrument_auto-gpt-4.1-nano-gpt-4o-mini.yaml +209 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/direct_provider_calls/tests/cassettes/test_multi_model_agents_openai_dpc/instrument_auto-gpt-4o-gpt-4o-mini.yaml +194 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/direct_provider_calls/tests/cassettes/test_multi_model_agents_openai_dpc/instrument_openai-gpt-4.1-nano-gpt-4o-mini.yaml +211 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/direct_provider_calls/tests/cassettes/test_multi_model_agents_openai_dpc/instrument_openai-gpt-4o-gpt-4o-mini.yaml +199 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/direct_provider_calls/tests/cassettes/test_simple_agents_bedrock_dpc/simple_agent_cs45-bedrock.yaml +57 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/direct_provider_calls/tests/cassettes/test_simple_agents_ollama_dpc/simple_agent_gemma2-2b.yaml +71 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/direct_provider_calls/tests/cassettes/test_simple_agents_ollama_dpc/simple_agent_qwen2.5-3b.yaml +71 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/direct_provider_calls/tests/cassettes/test_simple_agents_openai_dpc/simple_agent_gpt-4.1-nano.yaml +95 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/direct_provider_calls/tests/cassettes/test_simple_agents_openai_dpc/simple_agent_gpt-4o-mini.yaml +93 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/direct_provider_calls/tests/cassettes/test_simple_agents_openai_dpc/simple_agent_gpt-4o.yaml +93 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/direct_provider_calls/tests/cassettes/test_two_provider_agent_anthropic_openai_dpc/instrument_auto-cs4-0514-gpt4o.yaml +249 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/direct_provider_calls/tests/cassettes/test_two_provider_agent_ollama_openai_dpc/instrument_auto-gpt-4o-mini-gemma2-2b.yaml +191 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/direct_provider_calls/tests/conftest.py +15 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/direct_provider_calls/tests/test_multi_model_agents_ollama_dpc.py +141 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/direct_provider_calls/tests/test_multi_model_agents_openai_dpc.py +143 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/direct_provider_calls/tests/test_simple_agents_bedrock_dpc.py +155 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/direct_provider_calls/tests/test_simple_agents_ollama_dpc.py +124 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/direct_provider_calls/tests/test_simple_agents_openai_dpc.py +126 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/direct_provider_calls/tests/test_two_provider_agent_anthropic_openai_dpc.py +159 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/direct_provider_calls/tests/test_two_provider_agent_ollama_openai_dpc.py +156 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_haystack/tests/cassettes/test_multi_model_agents_ollama_fh/instrument_auto-gemma2-2b-qwen2.5-3b.yaml +111 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_haystack/tests/cassettes/test_multi_model_agents_openai_fh/instrument_auto-gpt-4.1-nano-gpt-4o-mini.yaml +218 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_haystack/tests/cassettes/test_multi_model_agents_openai_fh/instrument_auto-gpt-4o-gpt-4o-mini.yaml +206 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_haystack/tests/cassettes/test_simple_agents_bedrock_fh/simple_agent_cs45-bedrock.yaml +53 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_haystack/tests/cassettes/test_simple_agents_ollama_fh/simple_agent_gemma2-2b.yaml +37 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_haystack/tests/cassettes/test_simple_agents_ollama_fh/simple_agent_qwen2.5-3b.yaml +37 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_haystack/tests/cassettes/test_simple_agents_openai_fh/simple_agent_gpt-4.1-nano.yaml +87 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_haystack/tests/cassettes/test_simple_agents_openai_fh/simple_agent_gpt-4o-mini.yaml +87 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_haystack/tests/cassettes/test_simple_agents_openai_fh/simple_agent_gpt-4o.yaml +87 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_haystack/tests/cassettes/test_two_provider_agent_anthropic_openai_fh/instrument_auto-cs35-1022-gpt4o.yaml +227 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_haystack/tests/cassettes/test_two_provider_agent_ollama_openai_fh/instrument_auto-gemma2-2b-gpt-4.1-nano.yaml +172 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_haystack/tests/cassettes/test_two_provider_agent_ollama_openai_fh/instrument_auto-qwen2.5-3b-gpt-4.1-nano.yaml +147 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_haystack/tests/conftest.py +21 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_haystack/tests/test_multi_model_agents_ollama_fh.py +145 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_haystack/tests/test_multi_model_agents_openai_fh.py +155 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_haystack/tests/test_simple_agents_bedrock_fh.py +147 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_haystack/tests/test_simple_agents_ollama_fh.py +123 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_haystack/tests/test_simple_agents_openai_fh.py +126 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_haystack/tests/test_two_provider_agent_anthropic_openai_fh.py +169 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_haystack/tests/test_two_provider_agent_ollama_openai_fh.py +165 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/cassettes/test_multi_model_agents_ollama_fl/instrument_auto-gemma2-2b-qwen2.5-3b.yaml +1953 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/cassettes/test_multi_model_agents_openai_fl/instrument_auto-gpt-4.1-nano-gpt-4o-mini.yaml +185 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/cassettes/test_multi_model_agents_openai_fl/instrument_auto-gpt-4o-gpt-4o-mini.yaml +205 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/cassettes/test_simple_agents_anthropic_fl/simple_agent_claude-sonnet-4-20250514.yaml +108 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/cassettes/test_simple_agents_bedrock_fl/simple_agent_cs45-bedrock.yaml +45 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/cassettes/test_simple_agents_ollama_fl/simple_agent_gemma2-2b.yaml +43 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/cassettes/test_simple_agents_ollama_fl/simple_agent_qwen2.5-3b.yaml +57 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/cassettes/test_simple_agents_openai_fl/simple_agent_gpt-4.1-nano.yaml +87 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/cassettes/test_simple_agents_openai_fl/simple_agent_gpt-4o-mini.yaml +87 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/cassettes/test_simple_agents_openai_fl/simple_agent_gpt-4o.yaml +87 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/cassettes/test_two_provider_agent_anthropic_bedrock_fl/instrument_auto-cs4-0514-cs45-bedrock.yaml +198 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/cassettes/test_two_provider_agent_anthropic_openai_fl/instrument_auto-cs4-0514-gpt4o.yaml +275 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/cassettes/test_two_provider_agent_ollama_openai_fl/instrument_auto-gemma2-2b-gpt-4.1-nano.yaml +463 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/cassettes/test_two_provider_agent_ollama_openai_fl/instrument_auto-qwen2.5-3b-gpt-4.1-nano.yaml +164 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/conftest.py +19 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/test_multi_model_agents_ollama_fl.py +131 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/test_multi_model_agents_openai_fl.py +152 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/test_simple_agents_anthropic_fl.py +114 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/test_simple_agents_bedrock_fl.py +81 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/test_simple_agents_ollama_fl.py +76 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/test_simple_agents_openai_fl.py +79 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/test_two_provider_agent_anthropic_bedrock_fl.py +144 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/test_two_provider_agent_anthropic_openai_fl.py +153 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_langchain/tests/test_two_provider_agent_ollama_openai_fl.py +150 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_llama_index/tests/cassettes/test_multi_model_agents_ollama_fllamaInd/instrument_auto-gemma2-2b-qwen2.5-3b.yaml +670 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_llama_index/tests/cassettes/test_multi_model_agents_openai_fllamaInd/instrument_auto-gpt-4.1-nano-gpt-4o-mini.yaml +204 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_llama_index/tests/cassettes/test_multi_model_agents_openai_fllamaInd/instrument_auto-gpt-4o-gpt-4o-mini.yaml +198 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_llama_index/tests/cassettes/test_simple_agent_anthropic_fllamaInd/simple_agent_claude-3-5-haiku-20241022.yaml +108 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_llama_index/tests/cassettes/test_simple_agent_anthropic_fllamaInd/simple_agent_claude-3-5-sonnet-20241022.yaml +110 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_llama_index/tests/cassettes/test_simple_agents_bedrock_fllamaInd/simple_agent_cs45-bedrock.yaml +58 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_llama_index/tests/cassettes/test_simple_agents_ollama_fllamaInd/simple_agent_gemma2-2b.yaml +316 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_llama_index/tests/cassettes/test_simple_agents_ollama_fllamaInd/simple_agent_qwen2.5-3b.yaml +333 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_llama_index/tests/cassettes/test_simple_agents_openai_fllamaInd/simple_agent_gpt-4.1-nano.yaml +96 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_llama_index/tests/cassettes/test_simple_agents_openai_fllamaInd/simple_agent_gpt-4o-mini.yaml +100 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_llama_index/tests/cassettes/test_simple_agents_openai_fllamaInd/simple_agent_gpt-4o.yaml +102 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_llama_index/tests/cassettes/test_two_provider_agent_anthropic_openai_fllamaInd/instrument_auto-cs35-1022-gpt4o.yaml +224 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_llama_index/tests/cassettes/test_two_provider_agent_ollama_openai_fllamaInd/instrument_auto-gemma2-2b-gpt41n.yaml +427 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_llama_index/tests/cassettes/test_two_provider_agent_ollama_openai_fllamaInd/instrument_auto-qwen25-3b-gpt41n.yaml +430 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_llama_index/tests/conftest.py +20 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_llama_index/tests/test_multi_model_agents_ollama_fllamaInd.py +135 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_llama_index/tests/test_multi_model_agents_openai_fllamaInd.py +149 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_llama_index/tests/test_simple_agent_anthropic_fllamaInd.py +145 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_llama_index/tests/test_simple_agents_bedrock_fllamaInd.py +135 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_llama_index/tests/test_simple_agents_ollama_fllamaInd.py +116 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_llama_index/tests/test_simple_agents_openai_fllamaInd.py +125 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_llama_index/tests/test_two_provider_agent_anthropic_openai_fllamaInd.py +165 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/framework_llama_index/tests/test_two_provider_agent_ollama_openai_fllamaInd.py +161 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/general_tests/block_instruments.py +218 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/general_tests/cassettes/block_instruments/blocking_test.yaml +85 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/general_tests/cassettes/block_instruments/multiple_blocking.yaml +83 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/general_tests/cassettes/block_instruments/normal_test.yaml +85 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/general_tests/cassettes/block_instruments/partial_blocking.yaml +85 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/general_tests/cassettes/block_instruments/two_provider_block_ollama.yaml +484 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/general_tests/cassettes/block_instruments/two_provider_block_openai.yaml +582 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/general_tests/conftest.py +13 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/general_tests/test_edge_cases.py +138 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/general_tests/test_isolated.py +77 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/test_utils/conftest_shared.py +321 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/src/test_utils/llm_span_helpers.py +180 -0
- progress_observability-1.1.4/progress.python.instrumentation.tests/uv.lock +2853 -0
- progress_observability-1.1.4/pyproject.toml +44 -0
- progress_observability-1.1.4/run-sample.sh +37 -0
- progress_observability-1.1.4/sample_apps/.env.example +5 -0
- progress_observability-1.1.4/sample_apps/README.md +13 -0
- progress_observability-1.1.4/sample_apps/pyproject.toml +14 -0
- progress_observability-1.1.4/sample_apps/test_azure_langchain.py +42 -0
- progress_observability-1.1.4/sample_apps/uv.lock +2766 -0
- progress_observability-1.1.4/src/progress/observability/__init__.py +22 -0
- progress_observability-1.1.4/src/progress/observability/constants.py +31 -0
- progress_observability-1.1.4/src/progress/observability/decorators.py +288 -0
- progress_observability-1.1.4/src/progress/observability/enums.py +51 -0
- progress_observability-1.1.4/src/progress/observability/exceptions.py +61 -0
- progress_observability-1.1.4/src/progress/observability/helpers.py +143 -0
- progress_observability-1.1.4/src/progress/observability/model_fix_processor.py +804 -0
- progress_observability-1.1.4/src/progress/observability/sdk.py +296 -0
- progress_observability-1.1.4/uv.lock +2251 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*.pyo
|
|
5
|
+
*.pyd
|
|
6
|
+
|
|
7
|
+
# Virtual Environment
|
|
8
|
+
.venv/
|
|
9
|
+
|
|
10
|
+
# Build
|
|
11
|
+
build/
|
|
12
|
+
dist/
|
|
13
|
+
*.egg-info/
|
|
14
|
+
*.whl
|
|
15
|
+
*.tar.gz
|
|
16
|
+
|
|
17
|
+
# Environment Variables
|
|
18
|
+
.env
|
|
19
|
+
|
|
20
|
+
# Coverage
|
|
21
|
+
.coverage
|
|
22
|
+
*.cover
|
|
23
|
+
|
|
24
|
+
# IDEs
|
|
25
|
+
.vscode/
|
|
26
|
+
.idea/
|
|
27
|
+
|
|
28
|
+
# macOS
|
|
29
|
+
.DS_Store
|
|
30
|
+
|
|
31
|
+
# Logs
|
|
32
|
+
*.log
|
|
33
|
+
|
|
34
|
+
# Project specific
|
|
35
|
+
json_logs/
|
|
36
|
+
collector.log
|
|
37
|
+
.claude
|
|
38
|
+
.cline
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.11
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Copyright (c) 2025 Progress Software Corporation
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
4
|
+
|
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
6
|
+
|
|
7
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: progress-observability
|
|
3
|
+
Version: 1.1.4
|
|
4
|
+
Summary: Progress Observability instrumentation for Python agents
|
|
5
|
+
Project-URL: Homepage, https://github.com/telerik/agentclarity
|
|
6
|
+
Project-URL: Repository, https://github.com/telerik/agentclarity
|
|
7
|
+
Project-URL: Documentation, https://docs.telerik.com/agentclarity
|
|
8
|
+
Project-URL: Bug Reports, https://github.com/telerik/agentclarity/issues
|
|
9
|
+
License: MIT
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
License-File: notices.txt
|
|
12
|
+
Requires-Python: <4.0.0,>=3.10.0
|
|
13
|
+
Requires-Dist: traceloop-sdk==0.49.5
|
|
14
|
+
Provides-Extra: dev
|
|
15
|
+
Requires-Dist: autopep8>=2.3.1; extra == 'dev'
|
|
16
|
+
Requires-Dist: flake8>=7.1.0; extra == 'dev'
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# Progress Observability Instrumentation (Python)
|
|
20
|
+
|
|
21
|
+
Zero-intrusion telemetry for AI agents and LLM apps. Built on Traceloop SDK and OpenTelemetry with a simple one-line init and optional decorators.
|
|
22
|
+
|
|
23
|
+
## Installation
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
pip install progress-observability
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Or from wheel file:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
pip install progress_observability-x.y.z-py3-none-any.whl
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Quick Start
|
|
36
|
+
|
|
37
|
+
```python
|
|
38
|
+
from progress.observability import Observability, ObservabilityInstruments
|
|
39
|
+
|
|
40
|
+
# Initialize once at process start
|
|
41
|
+
Observability.instrument(
|
|
42
|
+
app_name="my-app",
|
|
43
|
+
api_key="<your-api-key>",
|
|
44
|
+
# endpoint="https://collector.observability.progress.com:443" # Optional: has default
|
|
45
|
+
)
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## Configuration
|
|
49
|
+
|
|
50
|
+
Environment overrides (optional):
|
|
51
|
+
|
|
52
|
+
- `OBSERVABILITY_APP_NAME`
|
|
53
|
+
- `OBSERVABILITY_ENDPOINT`
|
|
54
|
+
- `OBSERVABILITY_API_KEY`
|
|
55
|
+
|
|
56
|
+
Auth headers are added automatically for HTTP(S) endpoints when api_key is provided.
|
|
57
|
+
|
|
58
|
+
## Package Structure
|
|
59
|
+
|
|
60
|
+
```text
|
|
61
|
+
src/progress/observability/
|
|
62
|
+
├── __init__.py # Package entry point
|
|
63
|
+
├── sdk.py # Main Observability SDK
|
|
64
|
+
├── decorators.py # @task, @workflow, @agent, @tool decorators
|
|
65
|
+
├── constants.py # Environment variables and constants
|
|
66
|
+
├── enums.py # ObservabilityInstruments enum
|
|
67
|
+
└── helpers.py # Helper functions
|
|
68
|
+
```
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# Progress Observability Instrumentation (Python)
|
|
2
|
+
|
|
3
|
+
Zero-intrusion telemetry for AI agents and LLM apps. Built on Traceloop SDK and OpenTelemetry with a simple one-line init and optional decorators.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install progress-observability
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Or from wheel file:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
pip install progress_observability-x.y.z-py3-none-any.whl
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Quick Start
|
|
18
|
+
|
|
19
|
+
```python
|
|
20
|
+
from progress.observability import Observability, ObservabilityInstruments
|
|
21
|
+
|
|
22
|
+
# Initialize once at process start
|
|
23
|
+
Observability.instrument(
|
|
24
|
+
app_name="my-app",
|
|
25
|
+
api_key="<your-api-key>",
|
|
26
|
+
# endpoint="https://collector.observability.progress.com:443" # Optional: has default
|
|
27
|
+
)
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Configuration
|
|
31
|
+
|
|
32
|
+
Environment overrides (optional):
|
|
33
|
+
|
|
34
|
+
- `OBSERVABILITY_APP_NAME`
|
|
35
|
+
- `OBSERVABILITY_ENDPOINT`
|
|
36
|
+
- `OBSERVABILITY_API_KEY`
|
|
37
|
+
|
|
38
|
+
Auth headers are added automatically for HTTP(S) endpoints when api_key is provided.
|
|
39
|
+
|
|
40
|
+
## Package Structure
|
|
41
|
+
|
|
42
|
+
```text
|
|
43
|
+
src/progress/observability/
|
|
44
|
+
├── __init__.py # Package entry point
|
|
45
|
+
├── sdk.py # Main Observability SDK
|
|
46
|
+
├── decorators.py # @task, @workflow, @agent, @tool decorators
|
|
47
|
+
├── constants.py # Environment variables and constants
|
|
48
|
+
├── enums.py # ObservabilityInstruments enum
|
|
49
|
+
└── helpers.py # Helper functions
|
|
50
|
+
```
|