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