@rudderjs/telescope 5.0.1 → 7.0.0
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 -4
- package/dist/api/routes.js +1 -1
- package/dist/collectors/{live.d.ts → sync.d.ts} +4 -4
- package/dist/collectors/{live.d.ts.map → sync.d.ts.map} +1 -1
- package/dist/collectors/{live.js → sync.js} +8 -8
- package/dist/collectors/{live.js.map → sync.js.map} +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +6 -6
- package/dist/routes.js +1 -1
- package/dist/types.d.ts +3 -3
- package/dist/types.js +2 -2
- package/dist/views/vanilla/columns.js +1 -1
- package/dist/views/vanilla/details/Batch.js +1 -1
- package/dist/views/vanilla/details/Layout.js +1 -1
- package/package.json +28 -28
package/README.md
CHANGED
|
@@ -68,7 +68,7 @@ await Telescope.prune() // prune all
|
|
|
68
68
|
|
|
69
69
|
## Entry Types
|
|
70
70
|
|
|
71
|
-
Telescope records
|
|
71
|
+
Telescope records 19 entry types via the observer-registry pattern — each peer package exports a process-wide observer singleton, and the corresponding collector subscribes at boot. If a peer package isn't installed, its collector silently skips.
|
|
72
72
|
|
|
73
73
|
### Core watchers
|
|
74
74
|
|
|
@@ -88,6 +88,8 @@ Telescope records 17 entry types via the observer-registry pattern — each peer
|
|
|
88
88
|
| `command` | CommandCollector | `@rudderjs/rudder` | CLI command invocations with args, duration, exit code |
|
|
89
89
|
| `http` | HttpCollector | `@rudderjs/http` | Outgoing HTTP requests with timing, headers, response body |
|
|
90
90
|
| `gate` | GateCollector | `@rudderjs/auth` | Authorization decisions — ability, allowed/denied, resolution path (ability/policy/before), timing |
|
|
91
|
+
| `ai` | AiCollector | `@rudderjs/ai` | Agent runs — model, prompt, tool calls, token usage, middleware timing, streamed chunks |
|
|
92
|
+
| `mcp` | McpCollector | `@rudderjs/mcp` | MCP server activity — tool calls, resource reads, prompt renders, server name + timing |
|
|
91
93
|
| `dump` | DumpCollector | `@rudderjs/support` | `dump()` and `dd()` calls with arguments and caller location |
|
|
92
94
|
|
|
93
95
|
### Real-time watchers (differentiators — Laravel Telescope doesn't have these)
|
|
@@ -95,7 +97,7 @@ Telescope records 17 entry types via the observer-registry pattern — each peer
|
|
|
95
97
|
| Type | Collector | Source | Description |
|
|
96
98
|
|------|-----------|--------|-------------|
|
|
97
99
|
| `broadcast` | BroadcastCollector | `@rudderjs/broadcast` | Full WebSocket lifecycle — connections, subscriptions, presence, broadcasts, auth failures. Grouped by `connectionId`. |
|
|
98
|
-
| `
|
|
100
|
+
| `sync` | SyncCollector | `@rudderjs/sync` | Yjs CRDT debugging — document open/close, updates applied, awareness changes (throttled), persistence events, sync errors |
|
|
99
101
|
|
|
100
102
|
## Storage Drivers
|
|
101
103
|
|
|
@@ -131,12 +133,14 @@ export default {
|
|
|
131
133
|
recordCommands: true,
|
|
132
134
|
recordHttp: true,
|
|
133
135
|
recordGate: true,
|
|
136
|
+
recordAi: true,
|
|
137
|
+
recordMcp: true,
|
|
134
138
|
recordDumps: true,
|
|
135
139
|
|
|
136
140
|
// Real-time watchers
|
|
137
141
|
recordBroadcasts: true,
|
|
138
|
-
|
|
139
|
-
|
|
142
|
+
recordSync: true,
|
|
143
|
+
syncAwarenessSampleMs: 500, // throttle Yjs awareness events
|
|
140
144
|
|
|
141
145
|
// Filtering
|
|
142
146
|
ignoreRequests: ['/telescope*', '/health'],
|
package/dist/api/routes.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const ENTRY_TYPES = [
|
|
2
2
|
'request', 'query', 'job', 'exception', 'log',
|
|
3
|
-
'mail', 'notification', 'event', 'cache', 'schedule', 'model', 'command', 'broadcast', '
|
|
3
|
+
'mail', 'notification', 'event', 'cache', 'schedule', 'model', 'command', 'broadcast', 'sync',
|
|
4
4
|
];
|
|
5
5
|
// ─── Handlers ──────────────────────────────────────────────
|
|
6
6
|
//
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import type { Collector, TelescopeStorage } from '../types.js';
|
|
2
|
-
export declare class
|
|
2
|
+
export declare class SyncCollector implements Collector {
|
|
3
3
|
private readonly storage;
|
|
4
4
|
private readonly awarenessSampleMs;
|
|
5
|
-
readonly name = "
|
|
6
|
-
readonly type: "
|
|
5
|
+
readonly name = "Sync Collector";
|
|
6
|
+
readonly type: "sync";
|
|
7
7
|
/** `(docName + '\u0000' + clientId)` → last awareness sample timestamp (ms) */
|
|
8
8
|
private awarenessLastSampleAt;
|
|
9
9
|
constructor(storage: TelescopeStorage, awarenessSampleMs?: number);
|
|
10
10
|
register(): Promise<void>;
|
|
11
11
|
private record;
|
|
12
12
|
}
|
|
13
|
-
//# sourceMappingURL=
|
|
13
|
+
//# sourceMappingURL=sync.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"
|
|
1
|
+
{"version":3,"file":"sync.d.ts","sourceRoot":"","sources":["../../src/collectors/sync.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAA;AA2B9D,qBAAa,aAAc,YAAW,SAAS;IAQ3C,OAAO,CAAC,QAAQ,CAAC,OAAO;IACxB,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IARpC,QAAQ,CAAC,IAAI,oBAAmB;IAChC,QAAQ,CAAC,IAAI,EAAG,MAAM,CAAS;IAE/B,+EAA+E;IAC/E,OAAO,CAAC,qBAAqB,CAA4B;gBAGtC,OAAO,EAAY,gBAAgB,EACnC,iBAAiB,GAAE,MAAY;IAG5C,QAAQ,IAAI,OAAO,CAAC,IAAI,CAAC;IAW/B,OAAO,CAAC,MAAM;CAqCf"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { createEntry } from '../storage.js';
|
|
2
|
-
export class
|
|
2
|
+
export class SyncCollector {
|
|
3
3
|
storage;
|
|
4
4
|
awarenessSampleMs;
|
|
5
|
-
name = '
|
|
6
|
-
type = '
|
|
5
|
+
name = 'Sync Collector';
|
|
6
|
+
type = 'sync';
|
|
7
7
|
/** `(docName + '\u0000' + clientId)` → last awareness sample timestamp (ms) */
|
|
8
8
|
awarenessLastSampleAt = new Map();
|
|
9
9
|
constructor(storage, awarenessSampleMs = 500) {
|
|
@@ -12,11 +12,11 @@ export class LiveCollector {
|
|
|
12
12
|
}
|
|
13
13
|
async register() {
|
|
14
14
|
try {
|
|
15
|
-
const {
|
|
16
|
-
|
|
15
|
+
const { syncObservers } = await import('@rudderjs/sync');
|
|
16
|
+
syncObservers.subscribe((event) => this.record(event));
|
|
17
17
|
}
|
|
18
18
|
catch {
|
|
19
|
-
// @rudderjs/
|
|
19
|
+
// @rudderjs/sync not installed — skip
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
record(event) {
|
|
@@ -54,7 +54,7 @@ export class LiveCollector {
|
|
|
54
54
|
opts.batchId = `doc:${event['docName']}`;
|
|
55
55
|
}
|
|
56
56
|
const { kind: _kind, ...rest } = event;
|
|
57
|
-
this.storage.store(createEntry('
|
|
57
|
+
this.storage.store(createEntry('sync', { kind: event.kind, ...rest }, opts));
|
|
58
58
|
}
|
|
59
59
|
}
|
|
60
|
-
//# sourceMappingURL=
|
|
60
|
+
//# sourceMappingURL=sync.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"
|
|
1
|
+
{"version":3,"file":"sync.js","sourceRoot":"","sources":["../../src/collectors/sync.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export { ScheduleCollector } from './collectors/schedule.js';
|
|
|
15
15
|
export { ModelCollector } from './collectors/model.js';
|
|
16
16
|
export { CommandCollector } from './collectors/command.js';
|
|
17
17
|
export { BroadcastCollector } from './collectors/broadcast.js';
|
|
18
|
-
export {
|
|
18
|
+
export { SyncCollector } from './collectors/sync.js';
|
|
19
19
|
export { HttpCollector } from './collectors/http.js';
|
|
20
20
|
export { GateCollector } from './collectors/gate.js';
|
|
21
21
|
export { DumpCollector } from './collectors/dump.js';
|
package/dist/index.js
CHANGED
|
@@ -13,7 +13,7 @@ import { ScheduleCollector } from './collectors/schedule.js';
|
|
|
13
13
|
import { ModelCollector } from './collectors/model.js';
|
|
14
14
|
import { CommandCollector } from './collectors/command.js';
|
|
15
15
|
import { BroadcastCollector } from './collectors/broadcast.js';
|
|
16
|
-
import {
|
|
16
|
+
import { SyncCollector } from './collectors/sync.js';
|
|
17
17
|
import { HttpCollector } from './collectors/http.js';
|
|
18
18
|
import { GateCollector } from './collectors/gate.js';
|
|
19
19
|
import { DumpCollector } from './collectors/dump.js';
|
|
@@ -35,7 +35,7 @@ export { ScheduleCollector } from './collectors/schedule.js';
|
|
|
35
35
|
export { ModelCollector } from './collectors/model.js';
|
|
36
36
|
export { CommandCollector } from './collectors/command.js';
|
|
37
37
|
export { BroadcastCollector } from './collectors/broadcast.js';
|
|
38
|
-
export {
|
|
38
|
+
export { SyncCollector } from './collectors/sync.js';
|
|
39
39
|
export { HttpCollector } from './collectors/http.js';
|
|
40
40
|
export { GateCollector } from './collectors/gate.js';
|
|
41
41
|
export { DumpCollector } from './collectors/dump.js';
|
|
@@ -123,14 +123,14 @@ export class TelescopeProvider extends ServiceProvider {
|
|
|
123
123
|
recordModels: merged.recordModels ?? defaultConfig.recordModels,
|
|
124
124
|
recordCommands: merged.recordCommands ?? defaultConfig.recordCommands,
|
|
125
125
|
recordBroadcasts: merged.recordBroadcasts ?? defaultConfig.recordBroadcasts,
|
|
126
|
-
|
|
126
|
+
recordSync: merged.recordSync ?? defaultConfig.recordSync,
|
|
127
127
|
recordHttp: merged.recordHttp ?? defaultConfig.recordHttp,
|
|
128
128
|
recordGate: merged.recordGate ?? defaultConfig.recordGate,
|
|
129
129
|
recordDumps: merged.recordDumps ?? defaultConfig.recordDumps,
|
|
130
130
|
recordAi: merged.recordAi ?? defaultConfig.recordAi,
|
|
131
131
|
recordMcp: merged.recordMcp ?? defaultConfig.recordMcp,
|
|
132
132
|
recordViews: merged.recordViews ?? defaultConfig.recordViews,
|
|
133
|
-
|
|
133
|
+
syncAwarenessSampleMs: merged.syncAwarenessSampleMs ?? defaultConfig.syncAwarenessSampleMs,
|
|
134
134
|
ignoreRequests: merged.ignoreRequests ?? defaultConfig.ignoreRequests,
|
|
135
135
|
slowQueryThreshold: merged.slowQueryThreshold ?? defaultConfig.slowQueryThreshold,
|
|
136
136
|
slowAiThreshold: merged.slowAiThreshold ?? defaultConfig.slowAiThreshold,
|
|
@@ -189,8 +189,8 @@ export class TelescopeProvider extends ServiceProvider {
|
|
|
189
189
|
collectors.push(new CommandCollector(storage));
|
|
190
190
|
if (resolved.recordBroadcasts)
|
|
191
191
|
collectors.push(new BroadcastCollector(storage));
|
|
192
|
-
if (resolved.
|
|
193
|
-
collectors.push(new
|
|
192
|
+
if (resolved.recordSync)
|
|
193
|
+
collectors.push(new SyncCollector(storage, resolved.syncAwarenessSampleMs));
|
|
194
194
|
if (resolved.recordHttp)
|
|
195
195
|
collectors.push(new HttpCollector(storage, resolved.hideRequestHeaders));
|
|
196
196
|
if (resolved.recordGate)
|
package/dist/routes.js
CHANGED
|
@@ -3,7 +3,7 @@ import { DetailLayout, detailViews, NotFoundPage, BatchPage } from './views/vani
|
|
|
3
3
|
import { listEntries, showEntry, overview, prune, listBatch, getRecording, toggleRecording, authMiddleware } from './api/routes.js';
|
|
4
4
|
const ENTRY_TYPES = [
|
|
5
5
|
'request', 'query', 'job', 'exception', 'log',
|
|
6
|
-
'mail', 'notification', 'event', 'cache', 'schedule', 'model', 'command', 'broadcast', '
|
|
6
|
+
'mail', 'notification', 'event', 'cache', 'schedule', 'model', 'command', 'broadcast', 'sync',
|
|
7
7
|
'http', 'gate', 'dump', 'ai', 'mcp', 'view',
|
|
8
8
|
];
|
|
9
9
|
/**
|
package/dist/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type EntryType = 'request' | 'query' | 'job' | 'exception' | 'log' | 'mail' | 'notification' | 'event' | 'cache' | 'schedule' | 'model' | 'command' | 'broadcast' | '
|
|
1
|
+
export type EntryType = 'request' | 'query' | 'job' | 'exception' | 'log' | 'mail' | 'notification' | 'event' | 'cache' | 'schedule' | 'model' | 'command' | 'broadcast' | 'sync' | 'http' | 'gate' | 'dump' | 'ai' | 'mcp' | 'view';
|
|
2
2
|
export interface TelescopeEntry {
|
|
3
3
|
id: string;
|
|
4
4
|
batchId: string | null;
|
|
@@ -58,7 +58,7 @@ export interface TelescopeConfig {
|
|
|
58
58
|
recordModels?: boolean | undefined;
|
|
59
59
|
recordCommands?: boolean | undefined;
|
|
60
60
|
recordBroadcasts?: boolean | undefined;
|
|
61
|
-
|
|
61
|
+
recordSync?: boolean | undefined;
|
|
62
62
|
recordHttp?: boolean | undefined;
|
|
63
63
|
recordGate?: boolean | undefined;
|
|
64
64
|
recordDumps?: boolean | undefined;
|
|
@@ -71,7 +71,7 @@ export interface TelescopeConfig {
|
|
|
71
71
|
* window — the rest are dropped. Default `500`. Set to `0` to record
|
|
72
72
|
* every awareness change (only useful for very low-traffic debugging).
|
|
73
73
|
*/
|
|
74
|
-
|
|
74
|
+
syncAwarenessSampleMs?: number | undefined;
|
|
75
75
|
ignoreRequests?: string[] | undefined;
|
|
76
76
|
slowQueryThreshold?: number | undefined;
|
|
77
77
|
/** Duration threshold in ms above which an AI agent run is tagged `slow`. Default `5000`. */
|
package/dist/types.js
CHANGED
|
@@ -19,14 +19,14 @@ export const defaultConfig = {
|
|
|
19
19
|
recordModels: true,
|
|
20
20
|
recordCommands: true,
|
|
21
21
|
recordBroadcasts: true,
|
|
22
|
-
|
|
22
|
+
recordSync: true,
|
|
23
23
|
recordHttp: true,
|
|
24
24
|
recordGate: true,
|
|
25
25
|
recordDumps: true,
|
|
26
26
|
recordAi: true,
|
|
27
27
|
recordMcp: true,
|
|
28
28
|
recordViews: true,
|
|
29
|
-
|
|
29
|
+
syncAwarenessSampleMs: 500,
|
|
30
30
|
ignoreRequests: ['/telescope*', '/health'],
|
|
31
31
|
slowQueryThreshold: 100,
|
|
32
32
|
slowAiThreshold: 5000,
|
|
@@ -113,7 +113,7 @@ function entrySummary(type, c) {
|
|
|
113
113
|
case 'model': return `${c['action'] ?? ''} ${c['model'] ?? ''}`;
|
|
114
114
|
case 'command': return `${c['name'] ?? ''} (exit ${c['exitCode'] ?? '?'})`;
|
|
115
115
|
case 'broadcast': return `${c['kind'] ?? ''}${c['channel'] ? ' ' + c['channel'] : ''}${c['event'] ? ' → ' + c['event'] : ''}`;
|
|
116
|
-
case '
|
|
116
|
+
case 'sync': return `${c['kind'] ?? ''}${c['docName'] ? ' ' + c['docName'] : ''}${c['byteSize'] != null ? ' (' + c['byteSize'] + 'b)' : ''}`;
|
|
117
117
|
default: return '';
|
|
118
118
|
}
|
|
119
119
|
}
|
|
@@ -166,7 +166,7 @@ function entrySummary(type, c) {
|
|
|
166
166
|
case 'gate': return `${c['ability'] ?? ''} → ${c['allowed'] ? 'allowed' : 'denied'}`;
|
|
167
167
|
case 'dump': return `${c['method'] ?? ''}(${c['count'] ?? 0} args)`;
|
|
168
168
|
case 'broadcast': return `${c['kind'] ?? ''}${c['channel'] ? ' ' + c['channel'] : ''}`;
|
|
169
|
-
case '
|
|
169
|
+
case 'sync': return `${c['kind'] ?? ''}${c['docName'] ? ' ' + c['docName'] : ''}`;
|
|
170
170
|
case 'view': return `${c['id'] ?? ''} (${Array.isArray(c['propKeys']) ? c['propKeys'].length : 0} props)`;
|
|
171
171
|
default: return '';
|
|
172
172
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rudderjs/telescope",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"rudderjs": {
|
|
5
5
|
"provider": "TelescopeProvider",
|
|
6
6
|
"stage": "monitoring"
|
|
@@ -25,26 +25,26 @@
|
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@rudderjs/
|
|
29
|
-
"@rudderjs/
|
|
28
|
+
"@rudderjs/contracts": "^0.1.0",
|
|
29
|
+
"@rudderjs/core": "^0.1.1"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
|
-
"@rudderjs/
|
|
33
|
-
"@rudderjs/
|
|
34
|
-
"@rudderjs/log": "0.0.7",
|
|
35
|
-
"@rudderjs/orm": "0.1.1",
|
|
36
|
-
"@rudderjs/
|
|
37
|
-
"@rudderjs/
|
|
38
|
-
"@rudderjs/
|
|
39
|
-
"@rudderjs/
|
|
40
|
-
"@rudderjs/
|
|
41
|
-
"@rudderjs/
|
|
42
|
-
"@rudderjs/
|
|
43
|
-
"@rudderjs/
|
|
44
|
-
"@rudderjs/
|
|
45
|
-
"@rudderjs/auth": "3.
|
|
46
|
-
"@rudderjs/ai": "0.0.7",
|
|
47
|
-
"@rudderjs/mcp": "3.0.1"
|
|
32
|
+
"@rudderjs/rudder": "^0.0.3",
|
|
33
|
+
"@rudderjs/router": "^0.3.0",
|
|
34
|
+
"@rudderjs/log": "^0.0.7",
|
|
35
|
+
"@rudderjs/orm": "^0.1.1",
|
|
36
|
+
"@rudderjs/queue": "^3.0.2",
|
|
37
|
+
"@rudderjs/cache": "^0.0.12",
|
|
38
|
+
"@rudderjs/mail": "^0.0.11",
|
|
39
|
+
"@rudderjs/broadcast": "^0.0.8",
|
|
40
|
+
"@rudderjs/schedule": "^0.0.12",
|
|
41
|
+
"@rudderjs/middleware": "^0.0.13",
|
|
42
|
+
"@rudderjs/sync": "^0.2.0",
|
|
43
|
+
"@rudderjs/notification": "^0.0.12",
|
|
44
|
+
"@rudderjs/http": "^0.0.2",
|
|
45
|
+
"@rudderjs/auth": "^3.2.0",
|
|
46
|
+
"@rudderjs/ai": "^0.0.7",
|
|
47
|
+
"@rudderjs/mcp": "^3.0.1"
|
|
48
48
|
},
|
|
49
49
|
"peerDependenciesMeta": {
|
|
50
50
|
"@rudderjs/rudder": {
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"@rudderjs/broadcast": {
|
|
75
75
|
"optional": true
|
|
76
76
|
},
|
|
77
|
-
"@rudderjs/
|
|
77
|
+
"@rudderjs/sync": {
|
|
78
78
|
"optional": true
|
|
79
79
|
},
|
|
80
80
|
"@rudderjs/http": {
|
|
@@ -97,14 +97,14 @@
|
|
|
97
97
|
"@types/node": "^20.0.0",
|
|
98
98
|
"@types/better-sqlite3": "^7.6.0",
|
|
99
99
|
"typescript": "^5.4.0",
|
|
100
|
-
"@rudderjs/rudder": "0.0.3",
|
|
101
|
-
"@rudderjs/broadcast": "0.0.
|
|
102
|
-
"@rudderjs/
|
|
103
|
-
"@rudderjs/
|
|
104
|
-
"@rudderjs/
|
|
105
|
-
"@rudderjs/
|
|
106
|
-
"@rudderjs/
|
|
107
|
-
"@rudderjs/
|
|
100
|
+
"@rudderjs/rudder": "^0.0.3",
|
|
101
|
+
"@rudderjs/broadcast": "^0.0.8",
|
|
102
|
+
"@rudderjs/sync": "^0.2.0",
|
|
103
|
+
"@rudderjs/auth": "^3.2.0",
|
|
104
|
+
"@rudderjs/ai": "^0.0.7",
|
|
105
|
+
"@rudderjs/mcp": "^3.0.1",
|
|
106
|
+
"@rudderjs/http": "^0.0.2",
|
|
107
|
+
"@rudderjs/support": "^0.0.4"
|
|
108
108
|
},
|
|
109
109
|
"author": "Suleiman Shahbari",
|
|
110
110
|
"scripts": {
|