@damngamerz/pi-otel 0.1.2 → 0.1.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/CHANGELOG.md CHANGED
@@ -2,6 +2,25 @@
2
2
 
3
3
  All notable changes to this project will be documented here.
4
4
 
5
+ ## 0.1.4
6
+
7
+ - docs: add Grafana dashboard screenshots to README and pi package gallery preview
8
+ - docs: correct Grafana dashboard URL to `pi-local-otel`
9
+ - build: bump @biomejs/biome to 2.5.8
10
+ - build: bump @earendil-works/pi-ai to 0.84.1
11
+ - build: bump @earendil-works/pi-coding-agent to 0.84.2
12
+ - build: bump tsx to 4.23.12
13
+ - build: bump github/codeql-action to 4.37.7
14
+
15
+ ## 0.1.3
16
+
17
+ - build: bump opentelemetry group (sdk 2.10, otlp-http 0.221)
18
+ - build: bump @earendil-works/pi-ai to 0.83.0
19
+ - build: bump @earendil-works/pi-coding-agent to 0.83.0
20
+ - build: bump @biomejs/biome to 2.5.6
21
+ - build: bump actions/checkout to 7.0.1
22
+ - build: bump github/codeql-action to 4.37.4
23
+
5
24
  ## 0.1.2
6
25
 
7
26
  - feat: tolerant JSON parser fallback for judge responses
package/README.md CHANGED
@@ -19,7 +19,11 @@ Remote evaluation changes that boundary by sending the latest user request and a
19
19
 
20
20
  ![pi-otel Grafana dashboard](./examples/grafana-lgtm/dashboard-screenshot.png)
21
21
 
22
- The example telemetry Grafana stack ships with a pre-built dashboard showing real-time telemetry.
22
+ The example telemetry Grafana stack ships with a prebuilt dashboard showing real-time telemetry.
23
+
24
+ ![pi-otel trace timeline](./examples/grafana-lgtm/dashboard-tracing.png)
25
+
26
+ *Trace timeline showing correlated `gen_ai.query`, `gen_ai.response`, and `gen_ai.evaluation.result` events.*
23
27
 
24
28
  ## Install
25
29
 
@@ -40,7 +44,7 @@ cd examples/grafana-lgtm
40
44
  docker compose up -d
41
45
  ```
42
46
 
43
- Open <http://127.0.0.1:33000/d/damngamerz-pi-otel/atdamngamerz-pi-otel>.
47
+ Open <http://127.0.0.1:33000/d/pi-local-otel/pi-local-opentelemetry>.
44
48
 
45
49
  The extension exports OTLP/HTTP to `http://127.0.0.1:4318` by default.
46
50
 
@@ -8,7 +8,7 @@ This optional Compose stack provides Grafana, Tempo, Prometheus, Loki, and an Op
8
8
  docker compose up -d
9
9
  ```
10
10
 
11
- Open <http://127.0.0.1:33000/d/damngamerz-pi-otel/atdamngamerz-pi-otel>.
11
+ Open <http://127.0.0.1:33000/d/pi-local-otel/pi-local-opentelemetry>.
12
12
 
13
13
  Default endpoints:
14
14
 
@@ -1,6 +1,6 @@
1
1
  {
2
- "title": "@damngamerz/pi-otel",
3
- "uid": "damngamerz-pi-otel",
2
+ "title": "Pi Local OpenTelemetry",
3
+ "uid": "pi-local-otel",
4
4
  "schemaVersion": 38,
5
5
  "version": 1,
6
6
  "editable": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@damngamerz/pi-otel",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Privacy-conscious OpenTelemetry traces, metrics, and optional LLM evaluation for Pi",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -52,7 +52,7 @@
52
52
  "extensions": [
53
53
  "./dist/index.js"
54
54
  ],
55
- "image": "https://pi.dev/packages/@damngamerz/pi-otel"
55
+ "image": "https://raw.githubusercontent.com/damngamerz/pi-otel/main/examples/grafana-lgtm/dashboard-screenshot.png"
56
56
  },
57
57
  "scripts": {
58
58
  "clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
@@ -72,19 +72,19 @@
72
72
  },
73
73
  "dependencies": {
74
74
  "@opentelemetry/api": "1.9.1",
75
- "@opentelemetry/exporter-metrics-otlp-http": "0.220.0",
76
- "@opentelemetry/exporter-trace-otlp-http": "0.220.0",
77
- "@opentelemetry/resources": "2.9.0",
78
- "@opentelemetry/sdk-metrics": "2.9.0",
79
- "@opentelemetry/sdk-trace-base": "2.9.0",
80
- "@opentelemetry/sdk-trace-node": "2.9.0"
75
+ "@opentelemetry/exporter-metrics-otlp-http": "0.221.0",
76
+ "@opentelemetry/exporter-trace-otlp-http": "0.221.0",
77
+ "@opentelemetry/resources": "2.10.0",
78
+ "@opentelemetry/sdk-metrics": "2.10.0",
79
+ "@opentelemetry/sdk-trace-base": "2.10.0",
80
+ "@opentelemetry/sdk-trace-node": "2.10.0"
81
81
  },
82
82
  "devDependencies": {
83
- "@biomejs/biome": "2.5.4",
84
- "@earendil-works/pi-ai": "0.80.10",
85
- "@earendil-works/pi-coding-agent": "0.80.10",
83
+ "@biomejs/biome": "2.5.8",
84
+ "@earendil-works/pi-ai": "0.84.1",
85
+ "@earendil-works/pi-coding-agent": "0.84.2",
86
86
  "@types/node": "25.9.5",
87
- "tsx": "4.23.1",
87
+ "tsx": "4.23.12",
88
88
  "typescript": "7.0.2"
89
89
  }
90
90
  }