Convert opencode transcripts to otel (or agent) traces
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update README: Add MCP semantic conventions PR link to References section, update usage examples for clap CLI, correct MCP conventions status to merged

rektide b04e5293 2b7b81f7

+23 -5
+23 -5
README.md
··· 5 5 ## Usage 6 6 7 7 ```bash 8 - cargo run -- --path <log-file> 8 + # Export a log file to OpenTelemetry traces 9 + exp2span export <log-file> 10 + 11 + # Validate a log file format 12 + exp2span validate <log-file> 13 + 14 + # Show log metadata and statistics 15 + exp2span info <log-file> 16 + 17 + # With verbose output 18 + exp2span --verbose export <log-file> 19 + 20 + # With dry-run mode (no actual export) 21 + exp2span export --dry-run <log-file> 9 22 ``` 10 23 11 - ## MCP Semantic Conventions Found 24 + ## MCP Semantic Conventions 12 25 13 - The OpenTelemetry semantic conventions repository has recent additions for **Model Context Protocol (MCP)** instrumentation: 26 + This project implements the OpenTelemetry semantic conventions for **Model Context Protocol (MCP)**: 14 27 15 - - **Commit**: `c8400846 MCP semantic conventions (#2083)` 16 - - **Status**: Development 28 + - **PR**: [#2083](https://github.com/open-telemetry/semantic-conventions/pull/2083) 29 + - **Status**: Merged (Jan 12, 2026) 30 + - **Author**: lmolkova 17 31 - **File**: `.test-agent/sem/docs/gen-ai/mcp.md` 18 32 19 33 ### Key Attributes ··· 59 73 - `regex` - Log parsing 60 74 - `chrono` - Timestamp handling 61 75 - `serde_json` - JSON parsing 76 + 77 + ## References 78 + 79 + - [MCP Semantic Conventions (PR #2083)](https://github.com/open-telemetry/semantic-conventions/pull/2083) - Official OpenTelemetry semantic conventions for Model Context Protocol