module NewRelic::Agent::Instrumentation::Redis::Prepend
Public Instance Methods
call(*args, &block)
click to toggle source
Defined in version 4.x, 3.x
Calls superclass method
# File lib/new_relic/agent/instrumentation/redis/prepend.rb, line 16 def call(*args, &block) call_with_tracing(args[0]) { super } end
call_pipeline(*args, &block)
click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/redis/prepend.rb, line 20 def call_pipeline(*args, &block) call_pipeline_with_tracing(args[0]) { super } end
call_v(*args, &block)
click to toggle source
Defined in version 5.x+
Calls superclass method
# File lib/new_relic/agent/instrumentation/redis/prepend.rb, line 11 def call_v(*args, &block) call_with_tracing(args[0]) { super } end
connect(*args, &block)
click to toggle source
Calls superclass method
# File lib/new_relic/agent/instrumentation/redis/prepend.rb, line 24 def connect(*args, &block) connect_with_tracing { super } end