Codebase list golang-github-go-kit-kit / a9292cd
Zipkin NewChildSpan bugfix NewChildSpan did not properly take into account the sampling and debug settings from the parent span. Bas van Beek 7 years ago
1 changed file(s) with 3 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
271271 traceID: span.traceID,
272272 spanID: newID(),
273273 parentSpanID: span.spanID,
274 debug: span.debug,
275 sampled: span.sampled,
276 runSampler: span.runSampler,
274277 }
275278 childSpan.Annotate(ClientSend)
276279 for _, option := range options {