File tree Expand file tree Collapse file tree 2 files changed +0
-10
lines changed Expand file tree Collapse file tree 2 files changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,6 @@ export class Span implements SpanInterface {
120
120
protected _endTime ?: number | undefined ;
121
121
/** Internal keeper of the status */
122
122
protected _status ?: SpanStatusType | string | undefined ;
123
- protected _exclusiveTime ?: number ;
124
123
125
124
private _logMessage ?: string ;
126
125
@@ -165,9 +164,6 @@ export class Span implements SpanInterface {
165
164
if ( spanContext . endTimestamp ) {
166
165
this . _endTime = spanContext . endTimestamp ;
167
166
}
168
- if ( spanContext . exclusiveTime ) {
169
- this . _exclusiveTime = spanContext . exclusiveTime ;
170
- }
171
167
}
172
168
173
169
// This rule conflicts with another eslint rule :(
@@ -635,7 +631,6 @@ export class Span implements SpanInterface {
635
631
trace_id : this . _traceId ,
636
632
origin : this . _attributes [ SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ] as SpanOrigin | undefined ,
637
633
_metrics_summary : getMetricSummaryJsonForSpan ( this ) ,
638
- exclusive_time : this . _exclusiveTime ,
639
634
measurements : this . _attributes [ SEMANTIC_ATTRIBUTE_MEASUREMENTS ] as Measurements | undefined ,
640
635
} ) ;
641
636
}
Original file line number Diff line number Diff line change @@ -181,11 +181,6 @@ export interface SpanContext {
181
181
* The origin of the span, giving context about what created the span.
182
182
*/
183
183
origin ?: SpanOrigin | undefined ;
184
-
185
- /**
186
- * Exclusive time in milliseconds.
187
- */
188
- exclusiveTime ?: number ;
189
184
}
190
185
191
186
/** Span holding trace_id, span_id */
You can’t perform that action at this time.
0 commit comments