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