Open
Description
Currently, the best way to how to remove the span and disable implicit child spans for a particular code path is probably this
try (Scope ignored = TracingContextUtils.currentContextWith(DefaultSpan.getInvalid())) {
// Since scoped span is invalid, no tracing happens.
}
This should be documented, possibly with a helper somewhere, something like Scope withTracingDisabled()
.