@warmdrift/kgauto-compiler 2.0.0-alpha.6 → 2.0.0-alpha.61
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 +158 -46
- package/dist/brain-proxy.d.mts +113 -0
- package/dist/brain-proxy.d.ts +113 -0
- package/dist/brain-proxy.js +189 -0
- package/dist/brain-proxy.mjs +6 -0
- package/dist/chunk-3RMLZCUK.mjs +190 -0
- package/dist/chunk-IIMPJZNH.mjs +694 -0
- package/dist/chunk-IUWFML6Z.mjs +165 -0
- package/dist/chunk-NBO4R5PC.mjs +313 -0
- package/dist/chunk-P3TOAEG4.mjs +56 -0
- package/dist/chunk-QKXTMVCT.mjs +1470 -0
- package/dist/chunk-RO22VFIF.mjs +29 -0
- package/dist/glassbox/index.d.mts +59 -0
- package/dist/glassbox/index.d.ts +59 -0
- package/dist/glassbox/index.js +312 -0
- package/dist/glassbox/index.mjs +12 -0
- package/dist/glassbox-routes/format.d.mts +24 -0
- package/dist/glassbox-routes/format.d.ts +24 -0
- package/dist/glassbox-routes/format.js +86 -0
- package/dist/glassbox-routes/format.mjs +18 -0
- package/dist/glassbox-routes/index.d.mts +191 -0
- package/dist/glassbox-routes/index.d.ts +191 -0
- package/dist/glassbox-routes/index.js +2714 -0
- package/dist/glassbox-routes/index.mjs +663 -0
- package/dist/glassbox-routes/react/index.d.mts +74 -0
- package/dist/glassbox-routes/react/index.d.ts +74 -0
- package/dist/glassbox-routes/react/index.js +819 -0
- package/dist/glassbox-routes/react/index.mjs +754 -0
- package/dist/index.d.mts +2236 -17
- package/dist/index.d.ts +2236 -17
- package/dist/index.js +7402 -1596
- package/dist/index.mjs +3580 -164
- package/dist/ir-DAKlQsVb.d.mts +1386 -0
- package/dist/ir-DmUuJsWc.d.ts +1386 -0
- package/dist/key-health.d.mts +131 -0
- package/dist/key-health.d.ts +131 -0
- package/dist/key-health.js +215 -0
- package/dist/key-health.mjs +6 -0
- package/dist/profiles.d.mts +292 -2
- package/dist/profiles.d.ts +292 -2
- package/dist/profiles.js +1081 -16
- package/dist/profiles.mjs +9 -1
- package/dist/types-B8X1Pyhx.d.ts +149 -0
- package/dist/types-CssWqd0X.d.mts +131 -0
- package/dist/types-DR62iPcO.d.ts +131 -0
- package/dist/types-MRMBUqzY.d.mts +149 -0
- package/package.json +54 -8
- package/dist/chunk-MBEI5UOM.mjs +0 -409
- package/dist/profiles-CQnLkQ7b.d.ts +0 -611
- package/dist/profiles-zm6diETo.d.mts +0 -611
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import {
|
|
2
|
+
appChannel,
|
|
3
|
+
getPubSub,
|
|
4
|
+
traceChannel
|
|
5
|
+
} from "./chunk-NBO4R5PC.mjs";
|
|
6
|
+
|
|
7
|
+
// src/glassbox/subscribe.ts
|
|
8
|
+
function emptyStream() {
|
|
9
|
+
return new ReadableStream({
|
|
10
|
+
start(controller) {
|
|
11
|
+
controller.close();
|
|
12
|
+
}
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
function subscribe(traceId) {
|
|
16
|
+
if (!traceId) return emptyStream();
|
|
17
|
+
return getPubSub().subscribe(traceChannel(traceId));
|
|
18
|
+
}
|
|
19
|
+
function subscribeApp({
|
|
20
|
+
appId
|
|
21
|
+
}) {
|
|
22
|
+
if (!appId) return emptyStream();
|
|
23
|
+
return getPubSub().subscribe(appChannel(appId));
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export {
|
|
27
|
+
subscribe,
|
|
28
|
+
subscribeApp
|
|
29
|
+
};
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { G as GlassboxEvent } from '../types-CssWqd0X.mjs';
|
|
2
|
+
export { A as AdvisoryFiredData, C as CompileDoneData, a as CompileStartData, E as ExecuteAttemptData, b as ExecuteSuccessData, F as FallbackWalkedData, c as GLASSBOX_STREAM_TTL_MS, d as GlassboxEventKind, e as GlassboxPubSub } from '../types-CssWqd0X.mjs';
|
|
3
|
+
import '../ir-DAKlQsVb.mjs';
|
|
4
|
+
import '../dialect.mjs';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* subscribe(traceId) — public Glass-Box subscription export.
|
|
8
|
+
*
|
|
9
|
+
* Consumer route handlers (e.g. Vercel Edge `/api/glassbox/stream`) import
|
|
10
|
+
* this and bridge the ReadableStream to SSE. The browser-side panel then
|
|
11
|
+
* renders events in real time:
|
|
12
|
+
*
|
|
13
|
+
* import { subscribe } from '@warmdrift/kgauto-compiler/glassbox';
|
|
14
|
+
*
|
|
15
|
+
* export async function GET(req: Request) {
|
|
16
|
+
* const { searchParams } = new URL(req.url);
|
|
17
|
+
* const traceId = searchParams.get('traceId');
|
|
18
|
+
* if (!traceId) return new Response('missing traceId', { status: 400 });
|
|
19
|
+
* const stream = subscribe(traceId);
|
|
20
|
+
* // ... bridge ReadableStream<GlassboxEvent> → SSE here ...
|
|
21
|
+
* }
|
|
22
|
+
*
|
|
23
|
+
* Stream behavior:
|
|
24
|
+
* - Emits events for `traceId` as they're published.
|
|
25
|
+
* - Closes cleanly 60s after the last event (rolling TTL).
|
|
26
|
+
* - If no events arrive within 60s of subscription, closes empty.
|
|
27
|
+
* - Multiple subscribers on the same traceId all fan out.
|
|
28
|
+
*
|
|
29
|
+
* No replay: subscribe() picks up only events published AFTER subscription.
|
|
30
|
+
* Replay is the brain-poll surface's job (see design doc).
|
|
31
|
+
*/
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Subscribe to Glass-Box events for a traceId. Returns a ReadableStream
|
|
35
|
+
* that yields GlassboxEvent objects until the per-trace TTL elapses.
|
|
36
|
+
*
|
|
37
|
+
* Cancelling the stream (consumer disconnect, AbortController, etc.) tears
|
|
38
|
+
* down the subscription cleanly via the underlying adapter.
|
|
39
|
+
*/
|
|
40
|
+
declare function subscribe(traceId: string): ReadableStream<GlassboxEvent>;
|
|
41
|
+
/**
|
|
42
|
+
* Subscribe to Glass-Box events for ALL traces under an appId — the
|
|
43
|
+
* "tail-all" surface (alpha.26). Backs the extension's default Live mode:
|
|
44
|
+
* rather than needing a specific traceId ahead of time, the panel sees
|
|
45
|
+
* every event for the configured consumer as calls happen.
|
|
46
|
+
*
|
|
47
|
+
* Per-app routing fires only when emit call-sites pass `appId` (the typed
|
|
48
|
+
* builders thread `ir.appId` automatically). Per-trace channel continues to
|
|
49
|
+
* fire for `subscribe(traceId)` callers — both arms are independent.
|
|
50
|
+
*
|
|
51
|
+
* Cross-tenant isolation: the consumer's `/api/glassbox/stream` uses the
|
|
52
|
+
* factory's configured appId — no caller-supplied `?appId=` URL parameter,
|
|
53
|
+
* so a consumer cannot subscribe to another consumer's stream.
|
|
54
|
+
*/
|
|
55
|
+
declare function subscribeApp({ appId, }: {
|
|
56
|
+
appId: string;
|
|
57
|
+
}): ReadableStream<GlassboxEvent>;
|
|
58
|
+
|
|
59
|
+
export { GlassboxEvent, subscribe, subscribeApp };
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { G as GlassboxEvent } from '../types-DR62iPcO.js';
|
|
2
|
+
export { A as AdvisoryFiredData, C as CompileDoneData, a as CompileStartData, E as ExecuteAttemptData, b as ExecuteSuccessData, F as FallbackWalkedData, c as GLASSBOX_STREAM_TTL_MS, d as GlassboxEventKind, e as GlassboxPubSub } from '../types-DR62iPcO.js';
|
|
3
|
+
import '../ir-DmUuJsWc.js';
|
|
4
|
+
import '../dialect.js';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* subscribe(traceId) — public Glass-Box subscription export.
|
|
8
|
+
*
|
|
9
|
+
* Consumer route handlers (e.g. Vercel Edge `/api/glassbox/stream`) import
|
|
10
|
+
* this and bridge the ReadableStream to SSE. The browser-side panel then
|
|
11
|
+
* renders events in real time:
|
|
12
|
+
*
|
|
13
|
+
* import { subscribe } from '@warmdrift/kgauto-compiler/glassbox';
|
|
14
|
+
*
|
|
15
|
+
* export async function GET(req: Request) {
|
|
16
|
+
* const { searchParams } = new URL(req.url);
|
|
17
|
+
* const traceId = searchParams.get('traceId');
|
|
18
|
+
* if (!traceId) return new Response('missing traceId', { status: 400 });
|
|
19
|
+
* const stream = subscribe(traceId);
|
|
20
|
+
* // ... bridge ReadableStream<GlassboxEvent> → SSE here ...
|
|
21
|
+
* }
|
|
22
|
+
*
|
|
23
|
+
* Stream behavior:
|
|
24
|
+
* - Emits events for `traceId` as they're published.
|
|
25
|
+
* - Closes cleanly 60s after the last event (rolling TTL).
|
|
26
|
+
* - If no events arrive within 60s of subscription, closes empty.
|
|
27
|
+
* - Multiple subscribers on the same traceId all fan out.
|
|
28
|
+
*
|
|
29
|
+
* No replay: subscribe() picks up only events published AFTER subscription.
|
|
30
|
+
* Replay is the brain-poll surface's job (see design doc).
|
|
31
|
+
*/
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Subscribe to Glass-Box events for a traceId. Returns a ReadableStream
|
|
35
|
+
* that yields GlassboxEvent objects until the per-trace TTL elapses.
|
|
36
|
+
*
|
|
37
|
+
* Cancelling the stream (consumer disconnect, AbortController, etc.) tears
|
|
38
|
+
* down the subscription cleanly via the underlying adapter.
|
|
39
|
+
*/
|
|
40
|
+
declare function subscribe(traceId: string): ReadableStream<GlassboxEvent>;
|
|
41
|
+
/**
|
|
42
|
+
* Subscribe to Glass-Box events for ALL traces under an appId — the
|
|
43
|
+
* "tail-all" surface (alpha.26). Backs the extension's default Live mode:
|
|
44
|
+
* rather than needing a specific traceId ahead of time, the panel sees
|
|
45
|
+
* every event for the configured consumer as calls happen.
|
|
46
|
+
*
|
|
47
|
+
* Per-app routing fires only when emit call-sites pass `appId` (the typed
|
|
48
|
+
* builders thread `ir.appId` automatically). Per-trace channel continues to
|
|
49
|
+
* fire for `subscribe(traceId)` callers — both arms are independent.
|
|
50
|
+
*
|
|
51
|
+
* Cross-tenant isolation: the consumer's `/api/glassbox/stream` uses the
|
|
52
|
+
* factory's configured appId — no caller-supplied `?appId=` URL parameter,
|
|
53
|
+
* so a consumer cannot subscribe to another consumer's stream.
|
|
54
|
+
*/
|
|
55
|
+
declare function subscribeApp({ appId, }: {
|
|
56
|
+
appId: string;
|
|
57
|
+
}): ReadableStream<GlassboxEvent>;
|
|
58
|
+
|
|
59
|
+
export { GlassboxEvent, subscribe, subscribeApp };
|
|
@@ -0,0 +1,312 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/glassbox/index.ts
|
|
21
|
+
var glassbox_exports = {};
|
|
22
|
+
__export(glassbox_exports, {
|
|
23
|
+
GLASSBOX_STREAM_TTL_MS: () => GLASSBOX_STREAM_TTL_MS,
|
|
24
|
+
subscribe: () => subscribe,
|
|
25
|
+
subscribeApp: () => subscribeApp
|
|
26
|
+
});
|
|
27
|
+
module.exports = __toCommonJS(glassbox_exports);
|
|
28
|
+
|
|
29
|
+
// src/glassbox/types.ts
|
|
30
|
+
var GLASSBOX_STREAM_TTL_MS = 6e4;
|
|
31
|
+
|
|
32
|
+
// src/glassbox/pubsub-memory.ts
|
|
33
|
+
var MemoryPubSub = class {
|
|
34
|
+
subscribers = /* @__PURE__ */ new Map();
|
|
35
|
+
async publish(channelKey, event) {
|
|
36
|
+
const subs = this.subscribers.get(channelKey);
|
|
37
|
+
if (!subs || subs.size === 0) return;
|
|
38
|
+
for (const sub of subs) {
|
|
39
|
+
if (sub.closed) continue;
|
|
40
|
+
try {
|
|
41
|
+
sub.controller.enqueue(event);
|
|
42
|
+
} catch {
|
|
43
|
+
sub.closed = true;
|
|
44
|
+
continue;
|
|
45
|
+
}
|
|
46
|
+
this.refreshTtl(channelKey, sub);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
subscribe(channelKey) {
|
|
50
|
+
const self = this;
|
|
51
|
+
let sub;
|
|
52
|
+
return new ReadableStream({
|
|
53
|
+
start(controller) {
|
|
54
|
+
sub = {
|
|
55
|
+
controller,
|
|
56
|
+
ttlTimer: setTimeout(() => {
|
|
57
|
+
self.closeSubscriber(channelKey, sub);
|
|
58
|
+
}, GLASSBOX_STREAM_TTL_MS),
|
|
59
|
+
closed: false
|
|
60
|
+
};
|
|
61
|
+
let set = self.subscribers.get(channelKey);
|
|
62
|
+
if (!set) {
|
|
63
|
+
set = /* @__PURE__ */ new Set();
|
|
64
|
+
self.subscribers.set(channelKey, set);
|
|
65
|
+
}
|
|
66
|
+
set.add(sub);
|
|
67
|
+
},
|
|
68
|
+
cancel() {
|
|
69
|
+
if (sub) self.removeSubscriber(channelKey, sub);
|
|
70
|
+
}
|
|
71
|
+
});
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* Refresh the rolling TTL for a subscriber after an event lands. Replaces
|
|
75
|
+
* the existing timer with a fresh 60s one.
|
|
76
|
+
*/
|
|
77
|
+
refreshTtl(channelKey, sub) {
|
|
78
|
+
clearTimeout(sub.ttlTimer);
|
|
79
|
+
sub.ttlTimer = setTimeout(() => {
|
|
80
|
+
this.closeSubscriber(channelKey, sub);
|
|
81
|
+
}, GLASSBOX_STREAM_TTL_MS);
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* Close the subscriber's stream cleanly and remove from the fan-out set.
|
|
85
|
+
* Idempotent — safe to call multiple times.
|
|
86
|
+
*/
|
|
87
|
+
closeSubscriber(channelKey, sub) {
|
|
88
|
+
if (sub.closed) return;
|
|
89
|
+
sub.closed = true;
|
|
90
|
+
clearTimeout(sub.ttlTimer);
|
|
91
|
+
try {
|
|
92
|
+
sub.controller.close();
|
|
93
|
+
} catch {
|
|
94
|
+
}
|
|
95
|
+
this.removeSubscriber(channelKey, sub);
|
|
96
|
+
}
|
|
97
|
+
removeSubscriber(channelKey, sub) {
|
|
98
|
+
clearTimeout(sub.ttlTimer);
|
|
99
|
+
const set = this.subscribers.get(channelKey);
|
|
100
|
+
if (!set) return;
|
|
101
|
+
set.delete(sub);
|
|
102
|
+
if (set.size === 0) this.subscribers.delete(channelKey);
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* Test-only reset. Tears down all subscribers, clears all state. Calling
|
|
106
|
+
* outside of tests is harmless but cancels every active stream.
|
|
107
|
+
*/
|
|
108
|
+
_reset() {
|
|
109
|
+
for (const [, set] of this.subscribers) {
|
|
110
|
+
for (const sub of set) {
|
|
111
|
+
this.closeSubscriber("", sub);
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
this.subscribers.clear();
|
|
115
|
+
}
|
|
116
|
+
};
|
|
117
|
+
|
|
118
|
+
// src/glassbox/pubsub-upstash.ts
|
|
119
|
+
var UpstashPubSub = class {
|
|
120
|
+
url;
|
|
121
|
+
token;
|
|
122
|
+
fetchImpl;
|
|
123
|
+
blockMs;
|
|
124
|
+
maxLen;
|
|
125
|
+
constructor(cfg) {
|
|
126
|
+
this.url = cfg.url.replace(/\/$/, "");
|
|
127
|
+
this.token = cfg.token;
|
|
128
|
+
this.fetchImpl = cfg.fetchImpl ?? globalThis.fetch.bind(globalThis);
|
|
129
|
+
this.blockMs = cfg.blockMs ?? 100;
|
|
130
|
+
this.maxLen = cfg.maxLen ?? 100;
|
|
131
|
+
}
|
|
132
|
+
async publish(channelKey, event) {
|
|
133
|
+
const key = channelKey;
|
|
134
|
+
const payload = JSON.stringify(event);
|
|
135
|
+
await this.cmd([
|
|
136
|
+
"XADD",
|
|
137
|
+
key,
|
|
138
|
+
"MAXLEN",
|
|
139
|
+
"~",
|
|
140
|
+
String(this.maxLen),
|
|
141
|
+
"*",
|
|
142
|
+
"event",
|
|
143
|
+
payload
|
|
144
|
+
]);
|
|
145
|
+
await this.cmd(["EXPIRE", key, String(Math.ceil(GLASSBOX_STREAM_TTL_MS / 1e3))]);
|
|
146
|
+
}
|
|
147
|
+
subscribe(channelKey) {
|
|
148
|
+
const key = channelKey;
|
|
149
|
+
const self = this;
|
|
150
|
+
let cursor = "$";
|
|
151
|
+
let cancelled = false;
|
|
152
|
+
let ttlDeadline = Date.now() + GLASSBOX_STREAM_TTL_MS;
|
|
153
|
+
return new ReadableStream({
|
|
154
|
+
async start(controller) {
|
|
155
|
+
try {
|
|
156
|
+
while (!cancelled && Date.now() < ttlDeadline) {
|
|
157
|
+
const resp = await self.cmd([
|
|
158
|
+
"XREAD",
|
|
159
|
+
"BLOCK",
|
|
160
|
+
String(self.blockMs),
|
|
161
|
+
"STREAMS",
|
|
162
|
+
key,
|
|
163
|
+
cursor
|
|
164
|
+
]);
|
|
165
|
+
if (cancelled) break;
|
|
166
|
+
const parsed = parseXReadResult(resp.result);
|
|
167
|
+
if (parsed.entries.length === 0) {
|
|
168
|
+
continue;
|
|
169
|
+
}
|
|
170
|
+
for (const entry of parsed.entries) {
|
|
171
|
+
const evt = decodeEvent(entry.fields);
|
|
172
|
+
if (evt) {
|
|
173
|
+
try {
|
|
174
|
+
controller.enqueue(evt);
|
|
175
|
+
} catch {
|
|
176
|
+
cancelled = true;
|
|
177
|
+
break;
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
cursor = entry.id;
|
|
181
|
+
}
|
|
182
|
+
ttlDeadline = Date.now() + GLASSBOX_STREAM_TTL_MS;
|
|
183
|
+
}
|
|
184
|
+
} catch (err) {
|
|
185
|
+
if (!cancelled) {
|
|
186
|
+
try {
|
|
187
|
+
controller.error(err);
|
|
188
|
+
} catch {
|
|
189
|
+
}
|
|
190
|
+
return;
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
try {
|
|
194
|
+
controller.close();
|
|
195
|
+
} catch {
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
cancel() {
|
|
199
|
+
cancelled = true;
|
|
200
|
+
}
|
|
201
|
+
});
|
|
202
|
+
}
|
|
203
|
+
async cmd(args) {
|
|
204
|
+
const res = await this.fetchImpl(this.url, {
|
|
205
|
+
method: "POST",
|
|
206
|
+
headers: {
|
|
207
|
+
Authorization: `Bearer ${this.token}`,
|
|
208
|
+
"Content-Type": "application/json"
|
|
209
|
+
},
|
|
210
|
+
body: JSON.stringify(args)
|
|
211
|
+
});
|
|
212
|
+
if (!res.ok) {
|
|
213
|
+
throw new Error(`Upstash ${args[0]} failed: HTTP ${res.status}`);
|
|
214
|
+
}
|
|
215
|
+
const json = await res.json();
|
|
216
|
+
if (json.error) {
|
|
217
|
+
throw new Error(`Upstash ${args[0]} failed: ${json.error}`);
|
|
218
|
+
}
|
|
219
|
+
return json;
|
|
220
|
+
}
|
|
221
|
+
};
|
|
222
|
+
function traceChannel(traceId) {
|
|
223
|
+
return `glassbox:trace:${traceId}`;
|
|
224
|
+
}
|
|
225
|
+
function appChannel(appId) {
|
|
226
|
+
return `glassbox:app:${appId}`;
|
|
227
|
+
}
|
|
228
|
+
function decodeEvent(fields) {
|
|
229
|
+
const raw = fields["event"];
|
|
230
|
+
if (!raw) return void 0;
|
|
231
|
+
try {
|
|
232
|
+
const parsed = JSON.parse(raw);
|
|
233
|
+
if (typeof parsed.kind === "string" && typeof parsed.at === "number") {
|
|
234
|
+
return parsed;
|
|
235
|
+
}
|
|
236
|
+
return void 0;
|
|
237
|
+
} catch {
|
|
238
|
+
return void 0;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
function parseXReadResult(raw) {
|
|
242
|
+
if (!Array.isArray(raw)) return { entries: [] };
|
|
243
|
+
const entries = [];
|
|
244
|
+
for (const stream of raw) {
|
|
245
|
+
if (!Array.isArray(stream) || stream.length < 2) continue;
|
|
246
|
+
const streamEntries = stream[1];
|
|
247
|
+
if (!Array.isArray(streamEntries)) continue;
|
|
248
|
+
for (const entry of streamEntries) {
|
|
249
|
+
if (!Array.isArray(entry) || entry.length < 2) continue;
|
|
250
|
+
const id = String(entry[0]);
|
|
251
|
+
const flat = entry[1];
|
|
252
|
+
if (!Array.isArray(flat)) continue;
|
|
253
|
+
const fields = {};
|
|
254
|
+
for (let i = 0; i < flat.length; i += 2) {
|
|
255
|
+
const k = flat[i];
|
|
256
|
+
const v = flat[i + 1];
|
|
257
|
+
if (typeof k === "string") fields[k] = String(v ?? "");
|
|
258
|
+
}
|
|
259
|
+
entries.push({ id, fields });
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
return { entries };
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
// src/glassbox/emit.ts
|
|
266
|
+
var activePubSub;
|
|
267
|
+
function getPubSub() {
|
|
268
|
+
if (activePubSub) return activePubSub;
|
|
269
|
+
const url = readEnv("UPSTASH_REDIS_URL");
|
|
270
|
+
const token = readEnv("UPSTASH_REDIS_TOKEN");
|
|
271
|
+
if (url && token) {
|
|
272
|
+
activePubSub = new UpstashPubSub({ url, token });
|
|
273
|
+
} else {
|
|
274
|
+
activePubSub = new MemoryPubSub();
|
|
275
|
+
}
|
|
276
|
+
return activePubSub;
|
|
277
|
+
}
|
|
278
|
+
function readEnv(key) {
|
|
279
|
+
try {
|
|
280
|
+
if (typeof process !== "undefined" && process.env) {
|
|
281
|
+
const v = process.env[key];
|
|
282
|
+
return v && v.trim() !== "" ? v : void 0;
|
|
283
|
+
}
|
|
284
|
+
} catch {
|
|
285
|
+
}
|
|
286
|
+
return void 0;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
// src/glassbox/subscribe.ts
|
|
290
|
+
function emptyStream() {
|
|
291
|
+
return new ReadableStream({
|
|
292
|
+
start(controller) {
|
|
293
|
+
controller.close();
|
|
294
|
+
}
|
|
295
|
+
});
|
|
296
|
+
}
|
|
297
|
+
function subscribe(traceId) {
|
|
298
|
+
if (!traceId) return emptyStream();
|
|
299
|
+
return getPubSub().subscribe(traceChannel(traceId));
|
|
300
|
+
}
|
|
301
|
+
function subscribeApp({
|
|
302
|
+
appId
|
|
303
|
+
}) {
|
|
304
|
+
if (!appId) return emptyStream();
|
|
305
|
+
return getPubSub().subscribe(appChannel(appId));
|
|
306
|
+
}
|
|
307
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
308
|
+
0 && (module.exports = {
|
|
309
|
+
GLASSBOX_STREAM_TTL_MS,
|
|
310
|
+
subscribe,
|
|
311
|
+
subscribeApp
|
|
312
|
+
});
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { T as TraceHealth } from '../types-MRMBUqzY.mjs';
|
|
2
|
+
import '../ir-DAKlQsVb.mjs';
|
|
3
|
+
import '../dialect.mjs';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Pure formatting helpers for Glass-Box trace display.
|
|
7
|
+
*
|
|
8
|
+
* Zero deps, no React, no design tokens. Safe to import from any consumer
|
|
9
|
+
* (React component, server route, CLI, Edge worker).
|
|
10
|
+
*
|
|
11
|
+
* Extracted from the alpha.32 tt-intelligence reference component port in
|
|
12
|
+
* alpha.35 so multiple consumer dashboards can render trace data with
|
|
13
|
+
* matching formatting without re-implementing each helper.
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
declare function formatAgo(iso: string, now?: number): string;
|
|
17
|
+
declare function shortTraceId(traceId: string): string;
|
|
18
|
+
declare function formatCost(usd: number | undefined | null): string;
|
|
19
|
+
declare function formatMs(ms: number | undefined | null): string;
|
|
20
|
+
declare function formatOrDash(v: number | string | undefined | null): string;
|
|
21
|
+
declare function inputRatioLabel(status: TraceHealth['inputRatioStatus']): string;
|
|
22
|
+
declare function formatMutation(mutation: string): string;
|
|
23
|
+
|
|
24
|
+
export { formatAgo, formatCost, formatMs, formatMutation, formatOrDash, inputRatioLabel, shortTraceId };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { T as TraceHealth } from '../types-B8X1Pyhx.js';
|
|
2
|
+
import '../ir-DmUuJsWc.js';
|
|
3
|
+
import '../dialect.js';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Pure formatting helpers for Glass-Box trace display.
|
|
7
|
+
*
|
|
8
|
+
* Zero deps, no React, no design tokens. Safe to import from any consumer
|
|
9
|
+
* (React component, server route, CLI, Edge worker).
|
|
10
|
+
*
|
|
11
|
+
* Extracted from the alpha.32 tt-intelligence reference component port in
|
|
12
|
+
* alpha.35 so multiple consumer dashboards can render trace data with
|
|
13
|
+
* matching formatting without re-implementing each helper.
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
declare function formatAgo(iso: string, now?: number): string;
|
|
17
|
+
declare function shortTraceId(traceId: string): string;
|
|
18
|
+
declare function formatCost(usd: number | undefined | null): string;
|
|
19
|
+
declare function formatMs(ms: number | undefined | null): string;
|
|
20
|
+
declare function formatOrDash(v: number | string | undefined | null): string;
|
|
21
|
+
declare function inputRatioLabel(status: TraceHealth['inputRatioStatus']): string;
|
|
22
|
+
declare function formatMutation(mutation: string): string;
|
|
23
|
+
|
|
24
|
+
export { formatAgo, formatCost, formatMs, formatMutation, formatOrDash, inputRatioLabel, shortTraceId };
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/glassbox-routes/format.ts
|
|
21
|
+
var format_exports = {};
|
|
22
|
+
__export(format_exports, {
|
|
23
|
+
formatAgo: () => formatAgo,
|
|
24
|
+
formatCost: () => formatCost,
|
|
25
|
+
formatMs: () => formatMs,
|
|
26
|
+
formatMutation: () => formatMutation,
|
|
27
|
+
formatOrDash: () => formatOrDash,
|
|
28
|
+
inputRatioLabel: () => inputRatioLabel,
|
|
29
|
+
shortTraceId: () => shortTraceId
|
|
30
|
+
});
|
|
31
|
+
module.exports = __toCommonJS(format_exports);
|
|
32
|
+
function formatAgo(iso, now = Date.now()) {
|
|
33
|
+
const t = Date.parse(iso);
|
|
34
|
+
if (Number.isNaN(t)) return iso;
|
|
35
|
+
const sec = Math.max(0, Math.floor((now - t) / 1e3));
|
|
36
|
+
if (sec < 60) return `${sec}s ago`;
|
|
37
|
+
if (sec < 3600) return `${Math.floor(sec / 60)}m ago`;
|
|
38
|
+
if (sec < 86400) return `${Math.floor(sec / 3600)}h ago`;
|
|
39
|
+
return `${Math.floor(sec / 86400)}d ago`;
|
|
40
|
+
}
|
|
41
|
+
function shortTraceId(traceId) {
|
|
42
|
+
return traceId.slice(-6);
|
|
43
|
+
}
|
|
44
|
+
function formatCost(usd) {
|
|
45
|
+
if (usd === void 0 || usd === null || Number.isNaN(usd)) return "\u2014";
|
|
46
|
+
if (usd === 0) return "$0.0000";
|
|
47
|
+
if (usd < 0.01) return `$${usd.toFixed(4)}`;
|
|
48
|
+
return `$${usd.toFixed(3)}`;
|
|
49
|
+
}
|
|
50
|
+
function formatMs(ms) {
|
|
51
|
+
if (ms === void 0 || ms === null) return "\u2014";
|
|
52
|
+
if (ms < 1e3) return `${ms}ms`;
|
|
53
|
+
return `${(ms / 1e3).toFixed(1)}s`;
|
|
54
|
+
}
|
|
55
|
+
function formatOrDash(v) {
|
|
56
|
+
if (v === void 0 || v === null) return "\u2014";
|
|
57
|
+
if (typeof v === "number") return v.toLocaleString();
|
|
58
|
+
return v;
|
|
59
|
+
}
|
|
60
|
+
function inputRatioLabel(status) {
|
|
61
|
+
switch (status) {
|
|
62
|
+
case "green":
|
|
63
|
+
return "healthy";
|
|
64
|
+
case "yellow":
|
|
65
|
+
return "borderline";
|
|
66
|
+
case "red":
|
|
67
|
+
return "input-heavy";
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
function formatMutation(mutation) {
|
|
71
|
+
const m = /^(.*)-(\d+)-to-(\d+)$/.exec(mutation);
|
|
72
|
+
if (m) {
|
|
73
|
+
return `${m[1]} (${m[2]} \u2192 ${m[3]})`;
|
|
74
|
+
}
|
|
75
|
+
return mutation;
|
|
76
|
+
}
|
|
77
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
78
|
+
0 && (module.exports = {
|
|
79
|
+
formatAgo,
|
|
80
|
+
formatCost,
|
|
81
|
+
formatMs,
|
|
82
|
+
formatMutation,
|
|
83
|
+
formatOrDash,
|
|
84
|
+
inputRatioLabel,
|
|
85
|
+
shortTraceId
|
|
86
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import {
|
|
2
|
+
formatAgo,
|
|
3
|
+
formatCost,
|
|
4
|
+
formatMs,
|
|
5
|
+
formatMutation,
|
|
6
|
+
formatOrDash,
|
|
7
|
+
inputRatioLabel,
|
|
8
|
+
shortTraceId
|
|
9
|
+
} from "../chunk-P3TOAEG4.mjs";
|
|
10
|
+
export {
|
|
11
|
+
formatAgo,
|
|
12
|
+
formatCost,
|
|
13
|
+
formatMs,
|
|
14
|
+
formatMutation,
|
|
15
|
+
formatOrDash,
|
|
16
|
+
inputRatioLabel,
|
|
17
|
+
shortTraceId
|
|
18
|
+
};
|