class HTTP::Features::Instrumentation::NullInstrumenter

def instrument(name, payload = {})

def instrument(name, payload = {})
  start(name, payload)
  begin
    yield payload if block_given?
  ensure
    finish name, payload
  end
end