module Kernel

def require(path)

def require(path)
  res = require_without_apm(path)
  begin
    ElasticAPM::Injectors.hook_into(path)
  rescue ::Exception
  end
  res
end