LoongSuite Qwen-Agent Instrumentation
Project description
OpenTelemetry Qwen-Agent Instrumentation
OpenTelemetry instrumentation for the Qwen-Agent framework.
Installation
pip install opentelemetry-distro opentelemetry-exporter-otlp
opentelemetry-bootstrap -a install
pip install "qwen-agent >= 0.0.20"
pip install ./util/opentelemetry-util-genai
# Install this instrumentation (from the LoongSuite repo)
pip install ./instrumentation-loongsuite/loongsuite-instrumentation-qwen-agent
Published package name:
pip install loongsuite-instrumentation-qwen-agent
Usage
Auto-instrumentation
With loongsuite-instrumentation-qwen-agent installed, the opentelemetry_instrumentor entry point qwen_agent is registered for use with the OpenTelemetry distro.
opentelemetry-instrument \
--traces_exporter console \
python your_qwen_agent_app.py
Manual instrumentation
from opentelemetry.instrumentation.qwen_agent import QwenAgentInstrumentor
from opentelemetry.sdk.trace import TracerProvider
from opentelemetry.sdk.trace.export import ConsoleSpanExporter, SimpleSpanProcessor
from qwen_agent.agents import Assistant
provider = TracerProvider()
provider.add_span_processor(SimpleSpanProcessor(ConsoleSpanExporter()))
QwenAgentInstrumentor().instrument(tracer_provider=provider)
bot = Assistant(
llm={"model": "qwen-max", "model_type": "qwen_dashscope"},
name="my-assistant",
)
for _ in bot.run([{"role": "user", "content": "Hello!"}]):
pass
QwenAgentInstrumentor().uninstrument()
Configuration
Export to an OTLP backend
export OTEL_SERVICE_NAME=my-qwen-agent-app
export OTEL_EXPORTER_OTLP_PROTOCOL=http/protobuf
export OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=<trace_endpoint>
# Optional: metrics / logs if you configure exporters globally
export OTEL_EXPORTER_OTLP_METRICS_ENDPOINT=<metrics_endpoint>
opentelemetry-instrument python your_app.py
GenAI semantic conventions and content capture
# Enable experimental GenAI semantic conventions (recommended for this instrumentation)
export OTEL_SEMCONV_STABILITY_OPT_IN=gen_ai_latest_experimental
# Message content capture (same env vars as other GenAI instrumentations in this repo)
export OTEL_INSTRUMENTATION_GENAI_CAPTURE_MESSAGE_CONTENT=SPAN_ONLY
# EVENT_ONLY | SPAN_AND_EVENT | NO_CONTENT
Supported components
| Area | Instrumented API | Span / operation |
|---|---|---|
| Agent | Agent.run |
invoke_agent |
| LLM | BaseChatModel.chat |
chat |
| ReAct | Agent._call_llm |
react step (agents with tools) |
| Tools | Agent._call_tool |
execute_tool |
Agent.run_nonstream() is not wrapped separately; it calls run() internally, so you still get a single invoke_agent span per run.
Model backends (inferred from model_type / class name): DashScope, OpenAI-compatible APIs, Azure OpenAI, and other Qwen-Agent–supported backends.
Visualization
Export telemetry to:
- Alibaba Cloud ARMS / Managed Service for OpenTelemetry
- AgentScope Studio or any OTLP-compatible collector
- Any OpenTelemetry-compatible backend (Jaeger, Zipkin, etc.)
License
Apache License 2.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file loongsuite_instrumentation_qwen_agent-0.5.0-py3-none-any.whl.
File metadata
- Download URL: loongsuite_instrumentation_qwen_agent-0.5.0-py3-none-any.whl
- Upload date:
- Size: 13.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f783777b5f3e661cf3da4b2aff1eae2663f452421cd6f3a77262be8e01aad7d
|
|
| MD5 |
ff52f44deb721e045235fc5fc40b0dc4
|
|
| BLAKE2b-256 |
58518a58aa4b2b7dcbf00e6e23f823245cbf2850b6935dc5c5a1813937e02c88
|