(ctx context.Context)
| 772 | } |
| 773 | |
| 774 | func jaegerSpanID(ctx context.Context) string { |
| 775 | spanContext, ok := getSpanContext(ctx) |
| 776 | if !ok { |
| 777 | return "" |
| 778 | } |
| 779 | |
| 780 | return spanContext.SpanID().String() |
| 781 | } |
| 782 | |
| 783 | func jaegerTraceID(ctx context.Context) string { |
| 784 | spanContext, ok := getSpanContext(ctx) |
no test coverage detected