class Aws::Telemetry::NoOpTracer

No-op implementation for {TracerBase}.

def current_span

def current_span
  NoOpSpan.new
end

def in_span(name, attributes: nil, kind: nil)

def in_span(name, attributes: nil, kind: nil)
  yield NoOpSpan.new
end

def start_span(name, with_parent: nil, attributes: nil, kind: nil)

def start_span(name, with_parent: nil, attributes: nil, kind: nil)
  NoOpSpan.new
end