Sha256: 86af916b1ce53823916908633f1980c6563d9e89f91edc1d1611641a8f3b0207
Contents?: true
Size: 514 Bytes
Versions: 3
Compression:
Stored size: 514 Bytes
Contents
# encoding: utf-8 # This file is distributed under New Relic's license terms. # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details. module NewRelic module Agent module Commands class AgentCommand attr_reader :id, :name, :arguments def initialize(collector_command) @id = collector_command[0] @name = collector_command[1]["name"] @arguments = collector_command[1]["arguments"] end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems