module NewRelic::Agent::Instrumentation::Ethon::Easy::Prepend

Public Instance Methods

fabricate(url, action_name, options) click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/ethon/prepend.rb, line 11
def fabricate(url, action_name, options)
  fabricate_with_tracing(url, action_name, options) { super }
end
headers=(headers) click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/ethon/prepend.rb, line 15
def headers=(headers)
  headers_equals_with_tracing(headers) { super }
end
perform(*args) click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/ethon/prepend.rb, line 19
def perform(*args)
  perform_with_tracing(*args) { super }
end