module NewRelic::Agent::Instrumentation::Curb::Easy::Prepend
Public Instance Methods
header_str()
click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/curb/prepend.rb, line 39 def header_str header_str_with_tracing { super } end
http(verb)
click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/curb/prepend.rb, line 27 def http(verb) http_with_tracing(verb) { super } end
http_head(*args, &blk)
click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/curb/prepend.rb, line 15 def http_head(*args, &blk) http_head_with_tracing { super } end
http_post(*args, &blk)
click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/curb/prepend.rb, line 19 def http_post(*args, &blk) http_post_with_tracing { super } end
http_put(*args, &blk)
click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/curb/prepend.rb, line 23 def http_put(*args, &blk) http_put_with_tracing { super } end
method(verb)
click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/curb/prepend.rb, line 35 def method(verb) method_with_tracing(verb) { super } end
perform()
click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/curb/prepend.rb, line 31 def perform perform_with_tracing { super } end