manifest 5.1.4 → 5.1.5
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 +5 -5
- package/dist/index.js +13 -13
- package/openclaw.plugin.json +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,21 +6,21 @@ Observability plugin for [OpenClaw](https://github.com/open-claw/open-claw). Col
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
openclaw plugins install manifest
|
|
9
|
-
openclaw config set plugins.entries.manifest.config.apiKey "
|
|
9
|
+
openclaw config set plugins.entries.manifest.config.apiKey "mnfst_YOUR_KEY"
|
|
10
10
|
openclaw gateway restart
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
Or with environment variables:
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
export MANIFEST_API_KEY=
|
|
16
|
+
export MANIFEST_API_KEY=mnfst_YOUR_KEY
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
## Configuration
|
|
20
20
|
|
|
21
21
|
| Option | Type | Default | Description |
|
|
22
22
|
|--------|------|---------|-------------|
|
|
23
|
-
| `apiKey` | string | env `MANIFEST_API_KEY` | Agent API key (`
|
|
23
|
+
| `apiKey` | string | env `MANIFEST_API_KEY` | Agent API key (`mnfst_*`) |
|
|
24
24
|
| `endpoint` | string | `https://app.manifest.build/api/v1/otlp` | OTLP endpoint URL |
|
|
25
25
|
| `serviceName` | string | `openclaw-gateway` | OpenTelemetry service name |
|
|
26
26
|
| `captureContent` | boolean | `false` | Include message content in spans |
|
|
@@ -92,7 +92,7 @@ Local testing:
|
|
|
92
92
|
|
|
93
93
|
```bash
|
|
94
94
|
openclaw plugins install -l ./packages/openclaw-plugin
|
|
95
|
-
openclaw config set plugins.entries.manifest.config.apiKey "
|
|
95
|
+
openclaw config set plugins.entries.manifest.config.apiKey "mnfst_YOUR_KEY"
|
|
96
96
|
openclaw config set plugins.entries.manifest.config.endpoint "http://localhost:3001/otlp/v1"
|
|
97
97
|
openclaw gateway restart
|
|
98
98
|
```
|
|
@@ -100,7 +100,7 @@ openclaw gateway restart
|
|
|
100
100
|
## Troubleshooting
|
|
101
101
|
|
|
102
102
|
**No spans appearing?**
|
|
103
|
-
- Check your API key starts with `
|
|
103
|
+
- Check your API key starts with `mnfst_`
|
|
104
104
|
- Verify the endpoint is reachable: `curl -I http://your-endpoint/v1/traces`
|
|
105
105
|
- Disable `diagnostics-otel` if enabled: `openclaw plugins disable diagnostics-otel`
|
|
106
106
|
|