(span: Span)
| 79 | const SPAN_TTL_MS = 30 * 60 * 1000 // 30 minutes |
| 80 | |
| 81 | function getSpanId(span: Span): string { |
| 82 | return span.spanContext().spanId || '' |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * Lazily start a background interval that evicts orphaned spans from activeSpans. |
no outgoing calls
no test coverage detected