alias_method(:<%= @method.downcase %>_without_new_relic, :<%= @method.downcase %>)

def <%= @method.downcase %><%= “(#{@args})” unless @args.empty? %>

<%= @method.downcase %>_with_new_relic<%= "(#{@args})" unless @args.empty? %> do
  <%= @method.downcase %>_without_new_relic<%= "(#{@args})" unless @args.empty? %>
end

end