@openclaw/diagnostics-prometheus 2026.5.28-beta.3 → 2026.5.28-beta.4
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 +27 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +6 -5
package/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# @openclaw/diagnostics-prometheus
|
|
2
|
+
|
|
3
|
+
Official Prometheus diagnostics exporter for OpenClaw.
|
|
4
|
+
|
|
5
|
+
This plugin exposes OpenClaw Gateway runtime metrics in Prometheus text format for Prometheus, Grafana, VictoriaMetrics, and compatible scrapers.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
openclaw plugins install @openclaw/diagnostics-prometheus
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Restart the Gateway after installing or updating the plugin.
|
|
14
|
+
|
|
15
|
+
## Configure
|
|
16
|
+
|
|
17
|
+
Enable the plugin and set the scrape endpoint options in `plugins.entries.diagnostics-prometheus.config`.
|
|
18
|
+
|
|
19
|
+
The full config surface, metric names, and scrape examples live in the docs:
|
|
20
|
+
|
|
21
|
+
- https://docs.openclaw.ai/gateway/prometheus
|
|
22
|
+
|
|
23
|
+
## Package
|
|
24
|
+
|
|
25
|
+
- Plugin id: `diagnostics-prometheus`
|
|
26
|
+
- Package: `@openclaw/diagnostics-prometheus`
|
|
27
|
+
- Minimum OpenClaw host: `2026.4.25`
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/diagnostics-prometheus",
|
|
3
|
-
"version": "2026.5.28-beta.
|
|
3
|
+
"version": "2026.5.28-beta.4",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@openclaw/diagnostics-prometheus",
|
|
9
|
-
"version": "2026.5.28-beta.
|
|
9
|
+
"version": "2026.5.28-beta.4"
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
12
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/diagnostics-prometheus",
|
|
3
|
-
"version": "2026.5.28-beta.
|
|
3
|
+
"version": "2026.5.28-beta.4",
|
|
4
4
|
"description": "OpenClaw diagnostics Prometheus exporter for runtime metrics.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"minHostVersion": ">=2026.4.25"
|
|
19
19
|
},
|
|
20
20
|
"compat": {
|
|
21
|
-
"pluginApi": ">=2026.5.28-beta.
|
|
21
|
+
"pluginApi": ">=2026.5.28-beta.4"
|
|
22
22
|
},
|
|
23
23
|
"build": {
|
|
24
|
-
"openclawVersion": "2026.5.28-beta.
|
|
24
|
+
"openclawVersion": "2026.5.28-beta.4"
|
|
25
25
|
},
|
|
26
26
|
"release": {
|
|
27
27
|
"publishToClawHub": true,
|
|
@@ -34,10 +34,11 @@
|
|
|
34
34
|
"files": [
|
|
35
35
|
"dist/**",
|
|
36
36
|
"openclaw.plugin.json",
|
|
37
|
-
"npm-shrinkwrap.json"
|
|
37
|
+
"npm-shrinkwrap.json",
|
|
38
|
+
"README.md"
|
|
38
39
|
],
|
|
39
40
|
"peerDependencies": {
|
|
40
|
-
"openclaw": ">=2026.5.28-beta.
|
|
41
|
+
"openclaw": ">=2026.5.28-beta.4"
|
|
41
42
|
},
|
|
42
43
|
"peerDependenciesMeta": {
|
|
43
44
|
"openclaw": {
|