autotel-devtools 5.1.0 → 6.0.1
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 +8 -3
- package/dist/cli.cjs +121 -26
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +121 -26
- package/dist/cli.js.map +1 -1
- package/dist/{error-aggregator-BkO0l8ak.d.ts → error-aggregator-CAk_pt3Z.d.ts} +1 -1
- package/dist/{error-aggregator-CtZmjm-k.d.cts → error-aggregator-CbLiuot4.d.cts} +1 -1
- package/dist/{exporter-qIQPDw29.d.cts → exporter-DjLkU621.d.cts} +17 -0
- package/dist/{exporter-qIQPDw29.d.ts → exporter-DjLkU621.d.ts} +17 -0
- package/dist/genai/index.d.cts +9 -0
- package/dist/genai/index.d.ts +9 -0
- package/dist/index.cjs +83 -15
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +83 -15
- package/dist/index.js.map +1 -1
- package/dist/server/exporter.cjs +12 -1
- package/dist/server/exporter.cjs.map +1 -1
- package/dist/server/exporter.d.cts +1 -1
- package/dist/server/exporter.d.ts +1 -1
- package/dist/server/exporter.js +12 -1
- package/dist/server/exporter.js.map +1 -1
- package/dist/server/index.cjs +35 -3
- package/dist/server/index.cjs.map +1 -1
- package/dist/server/index.d.cts +3 -3
- package/dist/server/index.d.ts +3 -3
- package/dist/server/index.js +35 -3
- package/dist/server/index.js.map +1 -1
- package/dist/widget.global.js +13 -2
- package/package.json +12 -14
- package/skills/autotel-devtools/SKILL.md +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "autotel-devtools",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.1",
|
|
4
4
|
"description": "Standalone OTLP receiver with web UI for local development",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -48,13 +48,10 @@
|
|
|
48
48
|
"widget"
|
|
49
49
|
],
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@preact/signals": "^2.9.1",
|
|
52
51
|
"clsx": "^2.1.1",
|
|
53
|
-
"lucide
|
|
54
|
-
"markdown-to-jsx": "^9.8.1",
|
|
55
|
-
"preact": "^10.29.2",
|
|
52
|
+
"@lucide/svelte": "^1.17.0",
|
|
56
53
|
"protobufjs": "^8.4.2",
|
|
57
|
-
"
|
|
54
|
+
"svelte": "^5.46.4",
|
|
58
55
|
"tailwind-merge": "^3.6.0",
|
|
59
56
|
"ws": "^8.21.0"
|
|
60
57
|
},
|
|
@@ -65,35 +62,35 @@
|
|
|
65
62
|
"@opentelemetry/otlp-transformer": "^0.218.0",
|
|
66
63
|
"@opentelemetry/sdk-logs": "^0.218.0",
|
|
67
64
|
"@opentelemetry/sdk-trace-base": "^2.7.1",
|
|
68
|
-
"@preact/preset-vite": "^2.10.5",
|
|
69
65
|
"@storybook/addon-a11y": "^10.4.1",
|
|
70
|
-
"@storybook/addon-docs": "^10.4.1",
|
|
71
66
|
"@storybook/addon-vitest": "^10.4.1",
|
|
72
|
-
"@storybook/
|
|
67
|
+
"@storybook/svelte-vite": "^10.4.1",
|
|
68
|
+
"@sveltejs/vite-plugin-svelte": "^7.1.2",
|
|
73
69
|
"@tailwindcss/postcss": "^4.3.0",
|
|
74
70
|
"@tailwindcss/vite": "^4.3.0",
|
|
75
71
|
"@testing-library/jest-dom": "^6.9.1",
|
|
76
|
-
"@testing-library/
|
|
72
|
+
"@testing-library/svelte": "^5.2.6",
|
|
77
73
|
"@types/node": "^25.9.1",
|
|
78
74
|
"@types/ws": "^8.18.1",
|
|
79
75
|
"@vitest/browser-playwright": "4.1.7",
|
|
80
76
|
"@vitest/coverage-v8": "4.1.7",
|
|
81
77
|
"eslint-plugin-storybook": "^10.4.1",
|
|
78
|
+
"eslint-plugin-svelte": "^3.19.0",
|
|
82
79
|
"jsdom": "^29.1.1",
|
|
83
80
|
"playwright": "^1.60.0",
|
|
84
81
|
"postcss": "^8.5.15",
|
|
85
|
-
"react": "^19.2.6",
|
|
86
|
-
"react-dom": "^19.2.6",
|
|
87
82
|
"storybook": "^10.4.1",
|
|
83
|
+
"svelte-check": "^4.1.4",
|
|
88
84
|
"tailwindcss": "^4.3.0",
|
|
89
85
|
"tsup": "^8.5.1",
|
|
90
86
|
"typescript": "^6.0.3",
|
|
91
87
|
"vite": "^8.0.14",
|
|
92
88
|
"vitest": "^4.1.7",
|
|
89
|
+
"vitest-browser-svelte": "^2.1.1",
|
|
93
90
|
"vitest-mock-extended": "^4.0.0"
|
|
94
91
|
},
|
|
95
92
|
"peerDependencies": {
|
|
96
|
-
"autotel": "3.
|
|
93
|
+
"autotel": "3.4.1"
|
|
97
94
|
},
|
|
98
95
|
"peerDependenciesMeta": {
|
|
99
96
|
"autotel": {
|
|
@@ -109,9 +106,10 @@
|
|
|
109
106
|
"scripts": {
|
|
110
107
|
"build": "tsup && vite build --config vite.widget.config.ts",
|
|
111
108
|
"dev": "tsup --watch",
|
|
112
|
-
"type-check": "tsc --noEmit",
|
|
109
|
+
"type-check": "svelte-check --tsconfig ./tsconfig.json && tsc --noEmit",
|
|
113
110
|
"lint": "eslint src/",
|
|
114
111
|
"test": "vitest run --config vitest.config.ts && vitest run --config vitest.storybook.config.ts",
|
|
112
|
+
"test:storybook": "vitest run --config vitest.storybook.config.ts",
|
|
115
113
|
"test:watch": "vitest --config vitest.config.ts",
|
|
116
114
|
"test:dist": "node scripts/check-dist-esm.mjs",
|
|
117
115
|
"storybook": "storybook dev -p 6006",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: autotel-devtools
|
|
3
3
|
description: >
|
|
4
|
-
Standalone OTLP receiver with a
|
|
4
|
+
Standalone OTLP receiver with a Svelte web UI for local-dev observability. Use when a developer wants to see OpenTelemetry traces, logs, metrics, and service maps streaming from a running app without setting up Jaeger/Tempo/Prometheus — either as a CLI dashboard or an embedded `<autotel-devtools>` widget.
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# autotel-devtools
|
|
@@ -98,12 +98,14 @@ export const loadUser = trace(ctx => async (id: string) => {
|
|
|
98
98
|
## CLI
|
|
99
99
|
|
|
100
100
|
```bash
|
|
101
|
+
npx autotel-devtools 4319 # port as bare positional
|
|
101
102
|
npx autotel-devtools --port 4319 --host 0.0.0.0 --title "My App"
|
|
102
103
|
```
|
|
103
104
|
|
|
104
|
-
| Flag | Short | Purpose |
|
|
105
|
+
| Arg / Flag | Short | Purpose |
|
|
105
106
|
| --- | --- | --- |
|
|
106
|
-
|
|
|
107
|
+
| `[port]` | — | Listen port shorthand for `--port` (explicit `--port` wins) |
|
|
108
|
+
| `--port` | `-p` | Listen port (default 4318); walks to next free port if taken |
|
|
107
109
|
| `--host` | `-H` | Bind host (default 127.0.0.1) |
|
|
108
110
|
| `--title` | `-t` | Dashboard title |
|
|
109
111
|
|