-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathnodeRuntimeMetrics.test.ts
More file actions
370 lines (303 loc) · 13.4 KB
/
nodeRuntimeMetrics.test.ts
File metadata and controls
370 lines (303 loc) · 13.4 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
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';
import { metrics } from '@sentry/core';
import { nodeRuntimeMetricsIntegration } from '../../src/integrations/nodeRuntimeMetrics';
const { mockHistogram, mockMonitorEventLoopDelay, mockPerformance } = vi.hoisted(() => {
const mockHistogram = {
min: 2_000_000,
max: 20_000_000,
mean: 10_000_000,
percentile: vi.fn((p: number) => {
if (p === 50) return 8_000_000;
if (p === 90) return 15_000_000;
if (p === 99) return 19_000_000;
return 0;
}),
enable: vi.fn(),
reset: vi.fn(),
disable: vi.fn(),
};
const mockMonitorEventLoopDelay = vi.fn(() => mockHistogram);
const mockElu = { idle: 700, active: 300, utilization: 0.3 };
const mockEluDelta = { idle: 700, active: 300, utilization: 0.3 };
const mockPerformance = {
eventLoopUtilization: vi.fn((curr?: object, _prev?: object) => {
if (curr) return mockEluDelta;
return mockElu;
}),
};
return { mockHistogram, mockMonitorEventLoopDelay, mockPerformance };
});
vi.mock('perf_hooks', () => ({
monitorEventLoopDelay: mockMonitorEventLoopDelay,
performance: mockPerformance,
}));
vi.mock('@sentry/core', async () => {
const actual = await vi.importActual('@sentry/core');
return { ...actual };
});
describe('nodeRuntimeMetricsIntegration', () => {
let gaugeSpy: ReturnType<typeof vi.spyOn>;
let countSpy: ReturnType<typeof vi.spyOn>;
beforeEach(() => {
vi.useFakeTimers();
gaugeSpy = vi.spyOn(metrics, 'gauge');
countSpy = vi.spyOn(metrics, 'count');
vi.spyOn(process, 'cpuUsage').mockReturnValue({ user: 500_000, system: 200_000 });
vi.spyOn(process, 'memoryUsage').mockReturnValue({
rss: 50_000_000,
heapTotal: 30_000_000,
heapUsed: 20_000_000,
external: 1_000_000,
arrayBuffers: 500_000,
});
mockHistogram.percentile.mockClear();
mockHistogram.enable.mockClear();
mockHistogram.reset.mockClear();
mockMonitorEventLoopDelay.mockClear();
mockPerformance.eventLoopUtilization.mockClear();
});
afterEach(() => {
vi.useRealTimers();
vi.restoreAllMocks();
});
it('has the correct name', () => {
const integration = nodeRuntimeMetricsIntegration();
expect(integration.name).toBe('NodeRuntimeMetrics');
});
describe('setup', () => {
it('initializes event loop delay histogram with resolution 10', () => {
const integration = nodeRuntimeMetricsIntegration();
integration.setup();
expect(mockMonitorEventLoopDelay).toHaveBeenCalledWith({ resolution: 10 });
expect(mockHistogram.enable).toHaveBeenCalledOnce();
});
it('does not throw if monitorEventLoopDelay is unavailable (e.g. Bun)', () => {
mockMonitorEventLoopDelay.mockImplementationOnce(() => {
throw new Error('NotImplementedError');
});
const integration = nodeRuntimeMetricsIntegration();
expect(() => integration.setup()).not.toThrow();
});
it('starts a collection interval', () => {
const integration = nodeRuntimeMetricsIntegration({ collectionIntervalMs: 1_000 });
integration.setup();
expect(gaugeSpy).not.toHaveBeenCalled();
vi.advanceTimersByTime(1_000);
expect(gaugeSpy).toHaveBeenCalled();
});
});
const ORIGIN = { attributes: { 'sentry.origin': 'auto.node.runtime_metrics' } };
const BYTE = { unit: 'byte', attributes: { 'sentry.origin': 'auto.node.runtime_metrics' } };
const SECOND = { unit: 'second', attributes: { 'sentry.origin': 'auto.node.runtime_metrics' } };
describe('metric collection — defaults', () => {
it('emits cpu utilization (default on)', () => {
const integration = nodeRuntimeMetricsIntegration({ collectionIntervalMs: 1_000 });
integration.setup();
vi.advanceTimersByTime(1_000);
expect(gaugeSpy).toHaveBeenCalledWith('node.runtime.cpu.utilization', expect.any(Number), ORIGIN);
});
it('does not emit cpu.user / cpu.system by default (opt-in)', () => {
const integration = nodeRuntimeMetricsIntegration({ collectionIntervalMs: 1_000 });
integration.setup();
vi.advanceTimersByTime(1_000);
expect(gaugeSpy).not.toHaveBeenCalledWith('node.runtime.cpu.user', expect.anything(), expect.anything());
expect(gaugeSpy).not.toHaveBeenCalledWith('node.runtime.cpu.system', expect.anything(), expect.anything());
});
it('emits cpu.user / cpu.system when cpuTime is opted in', () => {
const integration = nodeRuntimeMetricsIntegration({
collectionIntervalMs: 1_000,
collect: { cpuTime: true },
});
integration.setup();
vi.advanceTimersByTime(1_000);
expect(gaugeSpy).toHaveBeenCalledWith('node.runtime.cpu.user', expect.any(Number), SECOND);
expect(gaugeSpy).toHaveBeenCalledWith('node.runtime.cpu.system', expect.any(Number), SECOND);
});
it('emits mem.rss, mem.heap_used, mem.heap_total (default on)', () => {
const integration = nodeRuntimeMetricsIntegration({ collectionIntervalMs: 1_000 });
integration.setup();
vi.advanceTimersByTime(1_000);
expect(gaugeSpy).toHaveBeenCalledWith('node.runtime.mem.rss', 50_000_000, BYTE);
expect(gaugeSpy).toHaveBeenCalledWith('node.runtime.mem.heap_used', 20_000_000, BYTE);
expect(gaugeSpy).toHaveBeenCalledWith('node.runtime.mem.heap_total', 30_000_000, BYTE);
});
it('does not emit mem.external / mem.array_buffers by default (opt-in)', () => {
const integration = nodeRuntimeMetricsIntegration({ collectionIntervalMs: 1_000 });
integration.setup();
vi.advanceTimersByTime(1_000);
expect(gaugeSpy).not.toHaveBeenCalledWith('node.runtime.mem.external', expect.anything(), expect.anything());
expect(gaugeSpy).not.toHaveBeenCalledWith('node.runtime.mem.array_buffers', expect.anything(), expect.anything());
});
it('emits mem.external / mem.array_buffers when opted in', () => {
const integration = nodeRuntimeMetricsIntegration({
collectionIntervalMs: 1_000,
collect: { memExternal: true },
});
integration.setup();
vi.advanceTimersByTime(1_000);
expect(gaugeSpy).toHaveBeenCalledWith('node.runtime.mem.external', 1_000_000, BYTE);
expect(gaugeSpy).toHaveBeenCalledWith('node.runtime.mem.array_buffers', 500_000, BYTE);
});
it('emits event_loop.delay.p50 and p99 (default on) and resets histogram', () => {
const integration = nodeRuntimeMetricsIntegration({ collectionIntervalMs: 1_000 });
integration.setup();
vi.advanceTimersByTime(1_000);
expect(gaugeSpy).toHaveBeenCalledWith('node.runtime.event_loop.delay.p50', expect.any(Number), SECOND);
expect(gaugeSpy).toHaveBeenCalledWith('node.runtime.event_loop.delay.p99', expect.any(Number), SECOND);
expect(mockHistogram.reset).toHaveBeenCalledOnce();
});
it('does not emit min/max/mean/p90 event loop delay by default (opt-in)', () => {
const integration = nodeRuntimeMetricsIntegration({ collectionIntervalMs: 1_000 });
integration.setup();
vi.advanceTimersByTime(1_000);
for (const suffix of ['min', 'max', 'mean', 'p90']) {
expect(gaugeSpy).not.toHaveBeenCalledWith(
`node.runtime.event_loop.delay.${suffix}`,
expect.anything(),
expect.anything(),
);
}
});
it('emits all opt-in event loop delay percentiles when enabled', () => {
const integration = nodeRuntimeMetricsIntegration({
collectionIntervalMs: 1_000,
collect: {
eventLoopDelayMin: true,
eventLoopDelayMax: true,
eventLoopDelayMean: true,
eventLoopDelayP90: true,
},
});
integration.setup();
vi.advanceTimersByTime(1_000);
// min: (2_000_000 - 10_000_000) clamped to 0 → 0s
expect(gaugeSpy).toHaveBeenCalledWith('node.runtime.event_loop.delay.min', 0, SECOND);
// max: (20_000_000 - 10_000_000) / 1e9 → 0.01s
expect(gaugeSpy).toHaveBeenCalledWith('node.runtime.event_loop.delay.max', 0.01, SECOND);
expect(gaugeSpy).toHaveBeenCalledWith('node.runtime.event_loop.delay.mean', 0, SECOND);
expect(gaugeSpy).toHaveBeenCalledWith('node.runtime.event_loop.delay.p90', expect.any(Number), SECOND);
});
it('emits event loop utilization metric', () => {
const integration = nodeRuntimeMetricsIntegration({ collectionIntervalMs: 1_000 });
integration.setup();
vi.advanceTimersByTime(1_000);
expect(gaugeSpy).toHaveBeenCalledWith('node.runtime.event_loop.utilization', 0.3, ORIGIN);
});
it('emits uptime counter', () => {
const integration = nodeRuntimeMetricsIntegration({ collectionIntervalMs: 1_000 });
integration.setup();
vi.advanceTimersByTime(1_000);
expect(countSpy).toHaveBeenCalledWith('node.runtime.process.uptime', expect.any(Number), SECOND);
});
it('does not emit event loop delay metrics if monitorEventLoopDelay threw', () => {
mockMonitorEventLoopDelay.mockImplementationOnce(() => {
throw new Error('NotImplementedError');
});
const integration = nodeRuntimeMetricsIntegration({ collectionIntervalMs: 1_000 });
integration.setup();
vi.advanceTimersByTime(1_000);
expect(gaugeSpy).not.toHaveBeenCalledWith(
'node.runtime.event_loop.delay.p99',
expect.anything(),
expect.anything(),
);
});
});
describe('opt-out', () => {
it('skips cpu.utilization when cpuUtilization is false', () => {
const integration = nodeRuntimeMetricsIntegration({
collectionIntervalMs: 1_000,
collect: { cpuUtilization: false },
});
integration.setup();
vi.advanceTimersByTime(1_000);
expect(gaugeSpy).not.toHaveBeenCalledWith('node.runtime.cpu.utilization', expect.anything(), expect.anything());
});
it('skips mem.rss when memRss is false', () => {
const integration = nodeRuntimeMetricsIntegration({
collectionIntervalMs: 1_000,
collect: { memRss: false },
});
integration.setup();
vi.advanceTimersByTime(1_000);
expect(gaugeSpy).not.toHaveBeenCalledWith('node.runtime.mem.rss', expect.anything(), expect.anything());
});
it('skips event loop delay metrics when all delay flags are false', () => {
const integration = nodeRuntimeMetricsIntegration({
collectionIntervalMs: 1_000,
collect: { eventLoopDelayP50: false, eventLoopDelayP99: false },
});
integration.setup();
expect(mockMonitorEventLoopDelay).not.toHaveBeenCalled();
vi.advanceTimersByTime(1_000);
for (const suffix of ['min', 'max', 'mean', 'p50', 'p90', 'p99']) {
expect(gaugeSpy).not.toHaveBeenCalledWith(
`node.runtime.event_loop.delay.${suffix}`,
expect.anything(),
expect.anything(),
);
}
});
it('skips only p99 but still emits p50 when eventLoopDelayP99 is false', () => {
const integration = nodeRuntimeMetricsIntegration({
collectionIntervalMs: 1_000,
collect: { eventLoopDelayP99: false },
});
integration.setup();
vi.advanceTimersByTime(1_000);
expect(gaugeSpy).not.toHaveBeenCalledWith(
'node.runtime.event_loop.delay.p99',
expect.anything(),
expect.anything(),
);
expect(gaugeSpy).toHaveBeenCalledWith('node.runtime.event_loop.delay.p50', expect.any(Number), SECOND);
});
it('skips event loop utilization when eventLoopUtilization is false', () => {
const integration = nodeRuntimeMetricsIntegration({
collectionIntervalMs: 1_000,
collect: { eventLoopUtilization: false },
});
integration.setup();
vi.advanceTimersByTime(1_000);
expect(gaugeSpy).not.toHaveBeenCalledWith(
'node.runtime.event_loop.utilization',
expect.anything(),
expect.anything(),
);
});
it('skips uptime when uptime is false', () => {
const integration = nodeRuntimeMetricsIntegration({
collectionIntervalMs: 1_000,
collect: { uptime: false },
});
integration.setup();
vi.advanceTimersByTime(1_000);
expect(countSpy).not.toHaveBeenCalledWith('node.runtime.process.uptime', expect.anything(), expect.anything());
});
it('enforces minimum collectionIntervalMs of 1000ms and warns', () => {
const warnSpy = vi.spyOn(console, 'warn').mockImplementation(() => {});
const integration = nodeRuntimeMetricsIntegration({ collectionIntervalMs: 100 });
integration.setup();
expect(warnSpy).toHaveBeenCalledWith(expect.stringContaining('collectionIntervalMs'));
expect(warnSpy).toHaveBeenCalledWith(expect.stringContaining('1000'));
// Should fire at the minimum 1000ms, not at 100ms
vi.advanceTimersByTime(100);
expect(gaugeSpy).not.toHaveBeenCalled();
vi.advanceTimersByTime(900);
expect(gaugeSpy).toHaveBeenCalled();
warnSpy.mockRestore();
});
it('falls back to default when collectionIntervalMs is NaN', () => {
const warnSpy = vi.spyOn(console, 'warn').mockImplementation(() => {});
const integration = nodeRuntimeMetricsIntegration({ collectionIntervalMs: NaN });
integration.setup();
expect(warnSpy).toHaveBeenCalledWith(expect.stringContaining('collectionIntervalMs'));
// Should fire at the default 30000ms, not at 1000ms
vi.advanceTimersByTime(1000);
expect(gaugeSpy).not.toHaveBeenCalled();
vi.advanceTimersByTime(29_000);
expect(gaugeSpy).toHaveBeenCalled();
warnSpy.mockRestore();
});
});
});