# File lib/puppet/transaction/report.rb, line 26
26:     def initialize
27:         @metrics = {}
28:         @logs = []
29: 
30:         @records = Hash.new do |hash, key|
31:             hash[key] = []
32:         end
33: 
34:         @host = Puppet[:certname]
35:     end