# File lib/new_relic/agent/datastores/redis.rb, line 71
        def self.append_command_with_args(result, command_with_args)
          result << command_with_args.first.to_s

          if command_with_args.size > 1
            command_with_args[ALL_BUT_FIRST].each do |arg|
              ellipsize(result, arg)

              break if result.length >= MAXIMUM_COMMAND_LENGTH
            end
          end

          result
        end