func bench_makeSpan()

in Sources/_TracingBenchmarks/SpanAttributesDSLBenchmark.swift [87:92]


func bench_makeSpan(times: Int) throws {
    for _ in 0 ..< times {
        let span = InstrumentationSystem.tracer.startSpan("something", baggage: .topLevel)
        _ = span
    }
}