module RorVsWild::Plugin::Redis::V4

Public Instance Methods

process(commands, &block) click to toggle source
Calls superclass method
# File lib/rorvswild/plugin/redis.rb, line 16
def process(commands, &block)
  string = commands.map(&:first).join("\n")
  RorVsWild.agent.measure_section(string, kind: "redis") do
    super(commands, &block)
  end
end