-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathspan.ts
342 lines (306 loc) · 7.93 KB
/
span.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
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
/* eslint-disable max-lines */
import { Primitive, Span as SpanInterface, SpanContext, Transaction } from '@sentry/types';
import { dropUndefinedKeys, timestampWithMs, uuid4 } from '@sentry/utils';
import { SpanStatus } from './spanstatus';
/**
* Keeps track of finished spans for a given transaction
* @internal
* @hideconstructor
* @hidden
*/
export class SpanRecorder {
public spans: Span[] = [];
private readonly _maxlen: number;
public constructor(maxlen: number = 1000) {
this._maxlen = maxlen;
}
/**
* This is just so that we don't run out of memory while recording a lot
* of spans. At some point we just stop and flush out the start of the
* trace tree (i.e.the first n spans with the smallest
* start_timestamp).
*/
public add(span: Span): void {
if (this.spans.length > this._maxlen) {
span.spanRecorder = undefined;
} else {
this.spans.push(span);
}
}
}
/**
* Span contains all data about a span
*/
export class Span implements SpanInterface {
/**
* @inheritDoc
*/
public traceId: string = uuid4();
/**
* @inheritDoc
*/
public spanId: string = uuid4().substring(16);
/**
* @inheritDoc
*/
public parentSpanId?: string;
/**
* Internal keeper of the status
*/
public status?: SpanStatus | string;
/**
* @inheritDoc
*/
public sampled?: boolean;
/**
* Timestamp in seconds when the span was created.
*/
public startTimestamp: number = timestampWithMs();
/**
* Timestamp in seconds when the span ended.
*/
public endTimestamp?: number;
/**
* @inheritDoc
*/
public op?: string;
/**
* @inheritDoc
*/
public description?: string;
/**
* @inheritDoc
*/
public tags: { [key: string]: Primitive } = {};
/**
* @inheritDoc
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
public data: { [key: string]: any } = {};
/**
* List of spans that were finalized
*/
public spanRecorder?: SpanRecorder;
/**
* @inheritDoc
*/
public transaction?: Transaction;
/**
* You should never call the constructor manually, always use `Sentry.startTransaction()`
* or call `startChild()` on an existing span.
* @internal
* @hideconstructor
* @hidden
*/
public constructor(spanContext?: SpanContext) {
if (!spanContext) {
return this;
}
if (spanContext.traceId) {
this.traceId = spanContext.traceId;
}
if (spanContext.spanId) {
this.spanId = spanContext.spanId;
}
if (spanContext.parentSpanId) {
this.parentSpanId = spanContext.parentSpanId;
}
// We want to include booleans as well here
if ('sampled' in spanContext) {
this.sampled = spanContext.sampled;
}
if (spanContext.op) {
this.op = spanContext.op;
}
if (spanContext.description) {
this.description = spanContext.description;
}
if (spanContext.data) {
this.data = spanContext.data;
}
if (spanContext.tags) {
this.tags = spanContext.tags;
}
if (spanContext.status) {
this.status = spanContext.status;
}
if (spanContext.startTimestamp) {
this.startTimestamp = spanContext.startTimestamp;
}
if (spanContext.endTimestamp) {
this.endTimestamp = spanContext.endTimestamp;
}
}
/**
* @inheritDoc
* @deprecated
*/
public child(
spanContext?: Pick<SpanContext, Exclude<keyof SpanContext, 'spanId' | 'sampled' | 'traceId' | 'parentSpanId'>>,
): Span {
return this.startChild(spanContext);
}
/**
* @inheritDoc
*/
public startChild(
spanContext?: Pick<SpanContext, Exclude<keyof SpanContext, 'spanId' | 'sampled' | 'traceId' | 'parentSpanId'>>,
): Span {
const childSpan = new Span({
...spanContext,
parentSpanId: this.spanId,
sampled: this.sampled,
traceId: this.traceId,
});
childSpan.spanRecorder = this.spanRecorder;
if (childSpan.spanRecorder) {
childSpan.spanRecorder.add(childSpan);
}
childSpan.transaction = this.transaction;
return childSpan;
}
/**
* @inheritDoc
*/
public setTag(key: string, value: Primitive): this {
this.tags = { ...this.tags, [key]: value };
return this;
}
/**
* @inheritDoc
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/explicit-module-boundary-types
public setData(key: string, value: any): this {
this.data = { ...this.data, [key]: value };
return this;
}
/**
* @inheritDoc
*/
public setStatus(value: SpanStatus): this {
this.status = value;
return this;
}
/**
* @inheritDoc
*/
public setHttpStatus(httpStatus: number): this {
this.setTag('http.status_code', String(httpStatus));
const spanStatus = SpanStatus.fromHttpCode(httpStatus);
if (spanStatus !== SpanStatus.UnknownError) {
this.setStatus(spanStatus);
}
return this;
}
/**
* @inheritDoc
*/
public isSuccess(): boolean {
return this.status === SpanStatus.Ok;
}
/**
* @inheritDoc
*/
public finish(endTimestamp?: number): void {
this.endTimestamp = typeof endTimestamp === 'number' ? endTimestamp : timestampWithMs();
}
/**
* @inheritDoc
*/
public toTraceparent(): string {
let sampledString = '';
if (this.sampled !== undefined) {
sampledString = this.sampled ? '-1' : '-0';
}
return `${this.traceId}-${this.spanId}${sampledString}`;
}
/**
* @inheritDoc
*/
public toContext(): SpanContext {
return dropUndefinedKeys({
data: this.data,
description: this.description,
endTimestamp: this.endTimestamp,
op: this.op,
parentSpanId: this.parentSpanId,
sampled: this.sampled,
spanId: this.spanId,
startTimestamp: this.startTimestamp,
status: this.status,
tags: this.tags,
traceId: this.traceId,
});
}
/**
* @inheritDoc
*/
public updateWithContext(spanContext: SpanContext): this {
this.data = spanContext.data ?? {};
this.description = spanContext.description;
this.endTimestamp = spanContext.endTimestamp;
this.op = spanContext.op;
this.parentSpanId = spanContext.parentSpanId;
this.sampled = spanContext.sampled;
this.spanId = spanContext.spanId ?? this.spanId;
this.startTimestamp = spanContext.startTimestamp ?? this.startTimestamp;
this.status = spanContext.status;
this.tags = spanContext.tags ?? {};
this.traceId = spanContext.traceId ?? this.traceId;
return this;
}
/**
* @inheritDoc
*/
public getTraceContext(): {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
data?: { [key: string]: any };
description?: string;
op?: string;
parent_span_id?: string;
span_id: string;
status?: string;
tags?: { [key: string]: Primitive };
trace_id: string;
} {
return dropUndefinedKeys({
data: Object.keys(this.data).length > 0 ? this.data : undefined,
description: this.description,
op: this.op,
parent_span_id: this.parentSpanId,
span_id: this.spanId,
status: this.status,
tags: Object.keys(this.tags).length > 0 ? this.tags : undefined,
trace_id: this.traceId,
});
}
/**
* @inheritDoc
*/
public toJSON(): {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
data?: { [key: string]: any };
description?: string;
op?: string;
parent_span_id?: string;
span_id: string;
start_timestamp: number;
status?: string;
tags?: { [key: string]: Primitive };
timestamp?: number;
trace_id: string;
} {
return dropUndefinedKeys({
data: Object.keys(this.data).length > 0 ? this.data : undefined,
description: this.description,
op: this.op,
parent_span_id: this.parentSpanId,
span_id: this.spanId,
start_timestamp: this.startTimestamp,
status: this.status,
tags: Object.keys(this.tags).length > 0 ? this.tags : undefined,
timestamp: this.endTimestamp,
trace_id: this.traceId,
});
}
}