Appearance
Qwen Code
Qwen Code has native OpenTelemetry support.
Automatic Setup
bash
flowstate-telemetry install --tool qwen-codeThis configures telemetry in ~/.qwen/settings.json.
Manual Setup
Add the following to ~/.qwen/settings.json:
json
{
"telemetry": {
"endpoint": "https://otel.flowstate.inc",
"apiKey": "YOUR_TELEMETRY_KEY"
}
}To enable prompt capture, add "logPrompts": true to the telemetry block.
What Gets Captured
| Event | Data Collected |
|---|---|
| Chat requests | Model, input/output tokens, cost |
| File operations | Files modified, lines changed |
| Tool calls | Tool name, success/failure |
Limitations
- Prompt capture is opt-in (
--promptsflag orlogPrompts: true)