openclaw-apm-tracing 0.5.0-beta.2 → 0.5.0-beta.3
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 +11 -1
- package/dist/index.js +952 -918
- package/dist/index.js.map +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -86,8 +86,17 @@ openclaw plugins inspect openclaw-apm-tracing --runtime
|
|
|
86
86
|
|
|
87
87
|
```
|
|
88
88
|
[openclaw-apm-tracing] Plugin registered (service mode)
|
|
89
|
+
[openclaw-apm-tracing] Typed hooks registered during plugin register(): count=19
|
|
89
90
|
[openclaw-apm-tracing] Attaching to global TracerProvider
|
|
90
|
-
[openclaw-apm-tracing]
|
|
91
|
+
[openclaw-apm-tracing] Service started (hooksRegistered=19, activeStates=0)
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
收到消息后应出现(示例):
|
|
95
|
+
|
|
96
|
+
```
|
|
97
|
+
[openclaw-apm-tracing] [message_received] key=xxx:...
|
|
98
|
+
[openclaw-apm-tracing] [before_agent_start] ...
|
|
99
|
+
[openclaw-apm-tracing] [llm_input] ...
|
|
91
100
|
```
|
|
92
101
|
|
|
93
102
|
## 开发
|
|
@@ -112,6 +121,7 @@ openclaw plugins install openclaw-apm-tracing@beta
|
|
|
112
121
|
|
|
113
122
|
## 版本
|
|
114
123
|
|
|
124
|
+
- **v0.5.0-beta.3** — 将 typed hook 注册从 `service.start()` 移到 `register()`,修复运行时 hook 不触发;增加注册计数日志
|
|
115
125
|
- **v0.5.0-beta.2** — 去掉 scope,npm 包名 `openclaw-apm-tracing`
|
|
116
126
|
- **v0.5.0-beta.1** — scoped 包 `@klauslin/openclaw-apm-tracing` / 插件 ID `openclaw-apm-tracing`
|
|
117
127
|
- **v0.5.0-beta.0** — 初版 beta(旧名 `@klauslin/openclaw-tencent-plugin`)
|