Skip to content
Discussion options

You must be logged in to vote

Hey, there are 2 options:

  1. Using SpanBuilder:
Tracer[F].spanBuilder("span").addLink(spanContext).build.use { span =>
  ...
}
  1. Attaching a link to an existing span:
Tracer[F].span)("span").use { span =>
  span.addLink(spanContext)
}

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@coffius
Comment options

Answer selected by coffius
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants