Class: Wakame::Packets::MonitoringOutput

Inherits:
ResponseBase show all
Defined in:
lib/wakame/packets.rb

Constant Summary

Constants included from AttributeHelper

AttributeHelper::CONVERT_CLASSES, AttributeHelper::PRIMITIVE_CLASSES

Instance Attribute Summary collapse

Attributes inherited from ResponseBase

#agent_id, #responded_at

Instance Method Summary collapse

Methods inherited from ResponseBase

#marshal

Methods included from AttributeHelper

#dump_attrs

Constructor Details

#initialize(agent, svc_id, outputs) ⇒ MonitoringOutput

Returns a new instance of MonitoringOutput.



88
89
90
91
92
# File 'lib/wakame/packets.rb', line 88

def initialize(agent, svc_id, outputs)
  super(agent)
  @svc_id = svc_id
  @outputs = outputs
end

Instance Attribute Details

#outputsObject (readonly)

Returns the value of attribute outputs.



87
88
89
# File 'lib/wakame/packets.rb', line 87

def outputs
  @outputs
end

#svc_idObject (readonly)

Returns the value of attribute svc_id.



87
88
89
# File 'lib/wakame/packets.rb', line 87

def svc_id
  @svc_id
end