class ImageProcessing::Builder

def instrument

def instrument
  return yield unless options[:instrumenter]
  result = nil
  options[:instrumenter].call(**pipeline_options) { result = yield }
  result
end