-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtranslate.test.js
More file actions
459 lines (432 loc) · 16.2 KB
/
Copy pathtranslate.test.js
File metadata and controls
459 lines (432 loc) · 16.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
const assert = require('node:assert');
const { test } = require('node:test');
const {
translateOtlpLogs,
translateJaegerTraces,
translateOtlpTraces,
} = require('./translate');
test('translates a single OTLP log record to one event', () => {
const payload = {
resourceLogs: [{
resource: {
attributes: [{ key: 'service.name', value: { stringValue: 'agent-gateway' } }],
},
scopeLogs: [{
logRecords: [{
timeUnixNano: '1713816000000000000',
eventName: 'request.denied',
attributes: [
{ key: 'agent.id', value: { stringValue: 'agent-abc' } },
{ key: 'http.host', value: { stringValue: 'docstore.example.com' } },
{ key: 'denial.reason', value: { stringValue: 'permission denied' } },
],
}],
}],
}],
};
const events = translateOtlpLogs(payload);
assert.strictEqual(events.length, 1);
assert.deepStrictEqual(events[0], {
source: 'agent-gateway',
event_type: 'request.denied',
timestamp: '2024-04-22T20:00:00.000Z',
attributes: {
'agent.id': 'agent-abc',
'http.host': 'docstore.example.com',
'denial.reason': 'permission denied',
},
});
});
test('returns empty array for empty payload', () => {
assert.deepStrictEqual(translateOtlpLogs({}), []);
assert.deepStrictEqual(translateOtlpLogs({ resourceLogs: [] }), []);
});
test('handles multiple resources and multiple records', () => {
const payload = {
resourceLogs: [
{
resource: { attributes: [{ key: 'service.name', value: { stringValue: 'svc-a' } }] },
scopeLogs: [{
logRecords: [
{ timeUnixNano: '1000000000', eventName: 'a.one', attributes: [] },
{ timeUnixNano: '2000000000', eventName: 'a.two', attributes: [] },
],
}],
},
{
resource: { attributes: [{ key: 'service.name', value: { stringValue: 'svc-b' } }] },
scopeLogs: [{
logRecords: [
{ timeUnixNano: '3000000000', eventName: 'b.one', attributes: [] },
],
}],
},
],
};
const events = translateOtlpLogs(payload);
assert.strictEqual(events.length, 3);
assert.strictEqual(events[0].source, 'svc-a');
assert.strictEqual(events[2].source, 'svc-b');
});
test('flattens int and bool attribute values', () => {
const payload = {
resourceLogs: [{
resource: { attributes: [{ key: 'service.name', value: { stringValue: 'svc' } }] },
scopeLogs: [{ logRecords: [{
timeUnixNano: '1000000000',
eventName: 'permission.checked',
attributes: [
{ key: 'permission.allowed', value: { boolValue: true } },
{ key: 'count', value: { intValue: '42' } },
],
}] }],
}],
};
const [ev] = translateOtlpLogs(payload);
assert.strictEqual(ev.attributes['permission.allowed'], true);
assert.strictEqual(ev.attributes['count'], 42);
});
test('skips records with no eventName (ambient startup logs)', () => {
const payload = {
resourceLogs: [{
resource: { attributes: [{ key: 'service.name', value: { stringValue: 'svc' } }] },
scopeLogs: [{
logRecords: [
{ timeUnixNano: '1000000000', body: { stringValue: 'User device listening on 0.0.0.0:8081' }, attributes: [] },
{ timeUnixNano: '2000000000', eventName: 'demo.reset', attributes: [] },
{ timeUnixNano: '3000000000', eventName: 'not_dotted', attributes: [] },
],
}],
}],
};
const events = translateOtlpLogs(payload);
assert.strictEqual(events.length, 1);
assert.strictEqual(events[0].event_type, 'demo.reset');
});
test('skips appender-synthesized event names (e.g. "event crates/.../main.rs:450")', () => {
const payload = {
resourceLogs: [{
resource: { attributes: [{ key: 'service.name', value: { stringValue: 'agent-gateway' } }] },
scopeLogs: [{
logRecords: [
{ timeUnixNano: '1000000000', eventName: 'event crates/agent-gateway/src/main.rs:450', attributes: [] },
{ timeUnixNano: '2000000000', eventName: 'demo.reset', attributes: [] },
{ timeUnixNano: '3000000000', eventName: 'Foo.Bar', attributes: [] },
{ timeUnixNano: '4000000000', eventName: 'hello world', attributes: [] },
],
}],
}],
};
const events = translateOtlpLogs(payload);
assert.strictEqual(events.length, 1);
assert.strictEqual(events[0].event_type, 'demo.reset');
});
test('falls back to observedTimeUnixNano when timeUnixNano is missing or zero', () => {
const payload = {
resourceLogs: [{
resource: { attributes: [{ key: 'service.name', value: { stringValue: 'svc' } }] },
scopeLogs: [{
logRecords: [
{ timeUnixNano: '0', observedTimeUnixNano: '1713816000000000000', eventName: 'demo.reset', attributes: [] },
{ observedTimeUnixNano: '1713816000000000000', eventName: 'demo.again', attributes: [] },
],
}],
}],
};
const events = translateOtlpLogs(payload);
assert.strictEqual(events.length, 2);
assert.strictEqual(events[0].timestamp, '2024-04-22T20:00:00.000Z');
assert.strictEqual(events[1].timestamp, '2024-04-22T20:00:00.000Z');
});
// ─── translateJaegerTraces ────────────────────────────────────────────────
function jaegerTrace(spans, processes) {
return { data: [{ traceID: 't1', spans, processes }] };
}
test('translateJaegerTraces: 2-span trace becomes a request.allowed event', () => {
const sidecar = {
spanID: 'sc1',
operationName: 'sidecar CONNECT',
references: [],
processID: 'p1',
startTime: 1713816000_000_000,
tags: [
{ key: 'source_identity', value: 'agent-alpha' },
{ key: 'dest_authority', value: 'api.anthropic.com:443' },
],
};
const gateway = {
spanID: 'gw1',
operationName: 'gateway CONNECT',
references: [{ refType: 'CHILD_OF', spanID: 'sc1' }],
processID: 'p2',
startTime: 1713816000_000_500,
tags: [
{ key: 'dest_authority', value: 'api.anthropic.com:443' },
{ key: 'otel.status_code', value: 'OK' },
],
};
const payload = jaegerTrace([sidecar, gateway], {
p1: { serviceName: 'agent_gateway_sidecar' },
p2: { serviceName: 'agent_gateway' },
});
const events = translateJaegerTraces(payload);
assert.strictEqual(events.length, 1);
assert.deepStrictEqual(events[0], {
source: 'agent-gateway',
event_type: 'request.allowed',
timestamp: '2024-04-22T20:00:00.001Z',
attributes: {
'agent.id': 'agent-alpha',
'http.host': 'api.anthropic.com:443',
},
});
});
test('translateJaegerTraces: error tag produces request.denied with denial.reason', () => {
const sidecar = {
spanID: 'sc1',
operationName: 'sidecar CONNECT',
references: [],
processID: 'p1',
startTime: 1713816000_000_000,
tags: [{ key: 'source_identity', value: 'agent-alpha' }],
};
const gateway = {
spanID: 'gw1',
operationName: 'gateway CONNECT',
references: [{ spanID: 'sc1' }],
processID: 'p2',
startTime: 1713816000_000_500,
tags: [
{ key: 'dest_authority', value: 'evil.example.com:443' },
{ key: 'error', value: true },
{ key: 'otel.status_code', value: 'ERROR' },
],
};
const payload = jaegerTrace([sidecar, gateway], {
p1: { serviceName: 'agent_gateway_sidecar' },
p2: { serviceName: 'agent_gateway' },
});
const [ev] = translateJaegerTraces(payload);
assert.strictEqual(ev.event_type, 'request.denied');
assert.strictEqual(ev.attributes['agent.id'], 'agent-alpha');
assert.strictEqual(ev.attributes['http.host'], 'evil.example.com:443');
assert.strictEqual(ev.attributes['denial.reason'], 'ERROR');
});
test('translateJaegerTraces: sidecar-only trace yields no events', () => {
const sidecar = {
spanID: 'sc1',
operationName: 'sidecar CONNECT',
references: [],
processID: 'p1',
startTime: 1713816000_000_000,
tags: [{ key: 'source_identity', value: 'agent-alpha' }],
};
const payload = jaegerTrace([sidecar], { p1: { serviceName: 'agent_gateway_sidecar' } });
assert.deepStrictEqual(translateJaegerTraces(payload), []);
});
test('translateJaegerTraces: empty payloads', () => {
assert.deepStrictEqual(translateJaegerTraces({}), []);
assert.deepStrictEqual(translateJaegerTraces({ data: [] }), []);
});
test('translateJaegerTraces: parses real fixture', () => {
const fs = require('node:fs');
const path = require('node:path');
const fixture = path.join(__dirname, 'traces-1777683017707.json');
if (!fs.existsSync(fixture)) return; // skip when sample dump isn't present
const payload = JSON.parse(fs.readFileSync(fixture, 'utf8'));
const events = translateJaegerTraces(payload);
// Every gateway CONNECT span becomes one event; the dump has 17 of them.
assert.strictEqual(events.length, 17);
// Every event has a destination host. agent.id is best-effort: it comes
// from the parent sidecar span, which is sometimes absent (the dump has
// a couple of traces with only a gateway span). Those events get an
// empty agent.id, which is fine for the dashboard's purposes.
for (const ev of events) {
assert.match(ev.event_type, /^request\.(allowed|denied)$/);
assert.ok(ev.attributes['http.host']);
}
const withAgent = events.filter(e => e.attributes['agent.id']);
assert.ok(withAgent.length > 0, 'at least some events should have agent.id');
});
// ─── translateOtlpTraces ────────────────────────────────────────────────
function otlpAttrs(o) {
return Object.entries(o).map(([key, v]) => {
if (typeof v === 'string') return { key, value: { stringValue: v } };
if (typeof v === 'boolean') return { key, value: { boolValue: v } };
if (typeof v === 'number') return { key, value: { intValue: String(v) } };
return { key, value: { stringValue: String(v) } };
});
}
test('translateOtlpTraces: sidecar parent + gateway child becomes one allowed event', () => {
const payload = {
resourceSpans: [
{
resource: { attributes: otlpAttrs({ 'service.name': 'agent_gateway_sidecar' }) },
scopeSpans: [{
spans: [{
traceId: 'abc', spanId: 'sc1', name: 'sidecar CONNECT',
startTimeUnixNano: '1713816000000000000',
attributes: otlpAttrs({
source_identity: 'agent-alpha',
dest_authority: 'api.anthropic.com:443',
}),
}],
}],
},
{
resource: { attributes: otlpAttrs({ 'service.name': 'agent_gateway' }) },
scopeSpans: [{
spans: [{
traceId: 'abc', spanId: 'gw1', parentSpanId: 'sc1', name: 'gateway CONNECT',
startTimeUnixNano: '1713816000500000000',
attributes: otlpAttrs({ dest_authority: 'api.anthropic.com:443' }),
status: { code: 1 },
}],
}],
},
],
};
const events = translateOtlpTraces(payload);
assert.strictEqual(events.length, 1);
assert.deepStrictEqual(events[0], {
source: 'agent-gateway',
event_type: 'request.allowed',
timestamp: '2024-04-22T20:00:00.500Z',
attributes: {
'agent.id': 'agent-alpha',
'http.host': 'api.anthropic.com:443',
},
});
});
test('translateOtlpTraces: status.code === 2 yields request.denied', () => {
const payload = {
resourceSpans: [{
resource: { attributes: otlpAttrs({ 'service.name': 'agent_gateway' }) },
scopeSpans: [{
spans: [{
spanId: 'gw1', name: 'gateway CONNECT',
startTimeUnixNano: '1000000000',
attributes: otlpAttrs({ dest_authority: 'evil.example.com:443' }),
status: { code: 2, message: 'permission denied' },
}],
}],
}],
};
const [ev] = translateOtlpTraces(payload);
assert.strictEqual(ev.event_type, 'request.denied');
assert.strictEqual(ev.attributes['http.host'], 'evil.example.com:443');
assert.strictEqual(ev.attributes['denial.reason'], 'permission denied');
});
test('translateOtlpTraces: accepts proto-name STATUS_CODE_ERROR string', () => {
const payload = {
resourceSpans: [{
resource: { attributes: otlpAttrs({ 'service.name': 'agent_gateway' }) },
scopeSpans: [{
spans: [{
spanId: 'gw1', name: 'gateway CONNECT',
startTimeUnixNano: '1000000000',
attributes: otlpAttrs({ dest_authority: 'foo:443' }),
status: { code: 'STATUS_CODE_ERROR' },
}],
}],
}],
};
const [ev] = translateOtlpTraces(payload);
assert.strictEqual(ev.event_type, 'request.denied');
});
test('translateOtlpTraces: only emits gateway CONNECT spans', () => {
const payload = {
resourceSpans: [{
resource: { attributes: otlpAttrs({ 'service.name': 'agent_gateway_sidecar' }) },
scopeSpans: [{
spans: [
{ spanId: 'sc1', name: 'sidecar CONNECT', startTimeUnixNano: '1', attributes: [] },
{ spanId: 'sc2', name: 'something else', startTimeUnixNano: '2', attributes: [] },
],
}],
}],
};
assert.deepStrictEqual(translateOtlpTraces(payload), []);
});
test('translateOtlpTraces: empty payload', () => {
assert.deepStrictEqual(translateOtlpTraces({}), []);
assert.deepStrictEqual(translateOtlpTraces({ resourceSpans: [] }), []);
});
test('translateOtlpTraces: CONNECT allowed span event yields request.allowed with source_identity', () => {
const payload = {
resourceSpans: [{
resource: { attributes: otlpAttrs({ 'service.name': 'agent_gateway' }) },
scopeSpans: [{
spans: [{
spanId: 'gw1', name: 'gateway CONNECT',
startTimeUnixNano: '1713816000000000000',
attributes: otlpAttrs({ dest_authority: 'api.anthropic.com:443' }),
events: [{
name: 'CONNECT allowed',
timeUnixNano: '1713816000100000000',
attributes: otlpAttrs({ source_identity: 'agent-alpha', policy_decision: 'allow' }),
}],
}],
}],
}],
};
const events = translateOtlpTraces(payload);
assert.strictEqual(events.length, 1);
assert.deepStrictEqual(events[0], {
source: 'agent-gateway',
event_type: 'request.allowed',
timestamp: '2024-04-22T20:00:00.000Z',
attributes: { 'agent.id': 'agent-alpha', 'http.host': 'api.anthropic.com:443' },
});
});
test('translateOtlpTraces: CONNECT denied span event yields request.denied with deny_reason', () => {
const payload = {
resourceSpans: [{
resource: { attributes: otlpAttrs({ 'service.name': 'agent_gateway' }) },
scopeSpans: [{
spans: [{
spanId: 'gw1', name: 'gateway CONNECT',
startTimeUnixNano: '1000000000',
attributes: otlpAttrs({ dest_authority: 'evil.example.com:443' }),
events: [{
name: 'CONNECT denied',
timeUnixNano: '1000100000',
attributes: otlpAttrs({
source_identity: 'agent-alpha',
deny_reason: 'no active permission found',
policy_decision: 'deny',
}),
}],
}],
}],
}],
};
const [ev] = translateOtlpTraces(payload);
assert.strictEqual(ev.event_type, 'request.denied');
assert.strictEqual(ev.attributes['agent.id'], 'agent-alpha');
assert.strictEqual(ev.attributes['http.host'], 'evil.example.com:443');
assert.strictEqual(ev.attributes['denial.reason'], 'no active permission found');
});
test('translateOtlpTraces: CONNECT denied without source_identity leaves agent.id empty', () => {
const payload = {
resourceSpans: [{
resource: { attributes: otlpAttrs({ 'service.name': 'agent_gateway' }) },
scopeSpans: [{
spans: [{
spanId: 'gw1', name: 'gateway CONNECT',
startTimeUnixNano: '1000000000',
attributes: otlpAttrs({ dest_authority: 'evil.example.com:443' }),
events: [{
name: 'CONNECT denied',
timeUnixNano: '1000100000',
attributes: otlpAttrs({ deny_reason: 'missing required extension', policy_decision: 'deny' }),
}],
}],
}],
}],
};
const [ev] = translateOtlpTraces(payload);
assert.strictEqual(ev.event_type, 'request.denied');
assert.strictEqual(ev.attributes['agent.id'], '');
assert.strictEqual(ev.attributes['denial.reason'], 'missing required extension');
});