-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathlinkederrors.ts
76 lines (66 loc) · 1.97 KB
/
linkederrors.ts
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
import { addGlobalEventProcessor, getCurrentHub } from '@sentry/core';
import { Event, EventHint, Exception, ExtendedError, Integration } from '@sentry/types';
import { exceptionFromStacktrace } from '../parsers';
import { _computeStackTrace } from '../tracekit';
const DEFAULT_KEY = 'cause';
const DEFAULT_LIMIT = 5;
/** Adds SDK info to an event. */
export class LinkedErrors implements Integration {
/**
* @inheritDoc
*/
public readonly name: string = LinkedErrors.id;
/**
* @inheritDoc
*/
public static id: string = 'LinkedErrors';
/**
* @inheritDoc
*/
private readonly _key: string;
/**
* @inheritDoc
*/
private readonly _limit: number;
/**
* @inheritDoc
*/
public constructor(options: { key?: string; limit?: number } = {}) {
this._key = options.key || DEFAULT_KEY;
this._limit = options.limit || DEFAULT_LIMIT;
}
/**
* @inheritDoc
*/
public setupOnce(): void {
addGlobalEventProcessor((event: Event, hint?: EventHint) => {
const self = getCurrentHub().getIntegration(LinkedErrors);
if (self) {
return self._handler(event, hint);
}
return event;
});
}
/**
* @inheritDoc
*/
private _handler(event: Event, hint?: EventHint): Event | null {
if (!event.exception || !event.exception.values || !hint || !(hint.originalException instanceof Error)) {
return event;
}
const linkedErrors = this._walkErrorTree(hint.originalException, this._key);
event.exception.values = [...linkedErrors, ...event.exception.values];
return event;
}
/**
* @inheritDoc
*/
private _walkErrorTree(error: ExtendedError, key: string, stack: Exception[] = []): Exception[] {
if (!(error[key] instanceof Error) || stack.length + 1 >= this._limit) {
return stack;
}
const stacktrace = _computeStackTrace(error[key]);
const exception = exceptionFromStacktrace(stacktrace);
return this._walkErrorTree(error[key], key, [exception, ...stack]);
}
}