This repository was archived by the owner on Nov 10, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-26
lines changed Expand file tree Collapse file tree 3 files changed +3
-26
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ export * from './propagation/NoopTextMapPropagator';
22
22
export * from './propagation/TextMapPropagator' ;
23
23
export * from './trace/attributes' ;
24
24
export * from './trace/Event' ;
25
- export * from './trace/link_context' ;
26
25
export * from './trace/link' ;
27
26
export * from './trace/NoopTracer' ;
28
27
export * from './trace/NoopTracerProvider' ;
Original file line number Diff line number Diff line change 15
15
*/
16
16
17
17
import { SpanAttributes } from './attributes' ;
18
- import { LinkContext } from './link_context ' ;
18
+ import { SpanContext } from './span_context ' ;
19
19
20
20
/**
21
21
* A pointer from the current {@link Span} to another span in the same trace or
@@ -33,8 +33,8 @@ import { LinkContext } from './link_context';
33
33
* Service Provider) can be correlated.
34
34
*/
35
35
export interface Link {
36
- /** The {@link LinkContext } of a linked span. */
37
- context : LinkContext ;
36
+ /** The {@link SpanContext } of a linked span. */
37
+ context : SpanContext ;
38
38
/** A set of {@link SpanAttributes} on the link. */
39
39
attributes ?: SpanAttributes ;
40
40
}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments