Module: Puppet::ReportAllTheThings::EventMixin
- Included in:
- Transaction::Event
- Defined in:
- lib/puppet/reportallthethings/helper.rb
Instance Method Summary (collapse)
Instance Method Details
- (Object) to_data_hash
72 73 74 75 76 77 78 79 80 81 82 83 84 |
# File 'lib/puppet/reportallthethings/helper.rb', line 72 def to_data_hash { 'audited' => @audited, 'property' => @property, 'previous_value' => @previous_value, 'desired_value' => @desired_value, 'historical_value' => @historical_value, 'message' => @message, 'name' => @name, 'status' => @status, 'time' => @time.iso8601(9), } end |