* Starts and returns a new Span representing a logical unit of work. * * This method do NOT modify the current Context by default. In result, any inner span will not * automatically set its parent context to the span created by this method unless manually activate * context via `tracer.g
(type: SpanTypes)
| 144 | * handles context activation. (ref: https://github.com/open-telemetry/opentelemetry-js/issues/1923) |
| 145 | */ |
| 146 | startSpan(type: SpanTypes): Span |
| 147 | startSpan(type: SpanTypes, options: TracerSpanOptions): Span |
| 148 | |
| 149 | /** |
no outgoing calls
no test coverage detected