@telemetry-dev/omp 0.1.1 → 0.1.2
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.
- package/README.md +3 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -68,7 +68,9 @@ invoke_agent
|
|
|
68
68
|
|
|
69
69
|
Every span and log reads `ctx.sessionManager.getSessionId()` when its event fires and records it as
|
|
70
70
|
`gen_ai.conversation.id`, so session switches, branches, and tree navigation attach telemetry to the
|
|
71
|
-
correct session.
|
|
71
|
+
correct session. All prompt spans with the same nonempty session id and API key share one trace.
|
|
72
|
+
Each `invoke_agent` span is a sibling in start order. Logs also have `gen_ai.agent.name` and the omp
|
|
73
|
+
event type as `eventName`. Without a session id or API key, the SDK does not join the prompt spans.
|
|
72
74
|
|
|
73
75
|
`agent_end` closes any unfinished tool spans and starts an asynchronous flush. `session_shutdown`
|
|
74
76
|
closes an unfinished agent loop and awaits a final flush before the process exits.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telemetry-dev/omp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Oh My Pi (omp) coding-agent telemetry integration for telemetry.dev.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agents",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@opentelemetry/api": "^1.9.1",
|
|
47
|
-
"@telemetry-dev/sdk": "^0.1.
|
|
47
|
+
"@telemetry-dev/sdk": "^0.1.2"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@oh-my-pi/pi-coding-agent": "17.1.8",
|