class NewRelic::Agent::Commands::AgentCommand

Attributes

arguments[R]
id[R]
name[R]

Public Class Methods

new(raw_collector_command) click to toggle source
# File lib/new_relic/agent/commands/agent_command.rb, line 11
def initialize(raw_collector_command)
  @id = raw_collector_command[0]
  @name = raw_collector_command[1]['name']
  @arguments = raw_collector_command[1]['arguments']
end