Class: Chef::ResourceReporter::ResourceReport
- Defined in:
- lib/chef/resource_reporter.rb
Instance Attribute Summary collapse
-
#action ⇒ Object
Returns the value of attribute action.
-
#current_resource ⇒ Object
Returns the value of attribute current_resource.
-
#elapsed_time ⇒ Object
Returns the value of attribute elapsed_time.
-
#exception ⇒ Object
Returns the value of attribute exception.
-
#new_resource ⇒ Object
Returns the value of attribute new_resource.
Class Method Summary collapse
- .new_for_exception(new_resource, action) ⇒ Object
- .new_with_current_state(new_resource, action, current_resource) ⇒ Object
Instance Method Summary collapse
Instance Attribute Details
#action ⇒ Object
Returns the value of attribute action
30 31 32 |
# File 'lib/chef/resource_reporter.rb', line 30 def action @action end |
#current_resource ⇒ Object
Returns the value of attribute current_resource
30 31 32 |
# File 'lib/chef/resource_reporter.rb', line 30 def current_resource @current_resource end |
#elapsed_time ⇒ Object
Returns the value of attribute elapsed_time
30 31 32 |
# File 'lib/chef/resource_reporter.rb', line 30 def elapsed_time @elapsed_time end |
#exception ⇒ Object
Returns the value of attribute exception
30 31 32 |
# File 'lib/chef/resource_reporter.rb', line 30 def exception @exception end |
#new_resource ⇒ Object
Returns the value of attribute new_resource
30 31 32 |
# File 'lib/chef/resource_reporter.rb', line 30 def new_resource @new_resource end |
Class Method Details
.new_for_exception(new_resource, action) ⇒ Object
44 45 46 47 48 49 |
# File 'lib/chef/resource_reporter.rb', line 44 def self.new_for_exception(new_resource, action) report = new report.new_resource = new_resource report.action = action report end |
.new_with_current_state(new_resource, action, current_resource) ⇒ Object
36 37 38 39 40 41 42 |
# File 'lib/chef/resource_reporter.rb', line 36 def self.new_with_current_state(new_resource, action, current_resource) report = new report.new_resource = new_resource report.action = action report.current_resource = current_resource report end |
Instance Method Details
#finish ⇒ Object
74 75 76 |
# File 'lib/chef/resource_reporter.rb', line 74 def finish self.elapsed_time = new_resource.elapsed_time end |
#for_json ⇒ Object
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/chef/resource_reporter.rb', line 51 def for_json as_hash = {} as_hash["type"] = new_resource.class.dsl_name as_hash["name"] = new_resource.name as_hash["id"] = new_resource.identity as_hash["after"] = new_resource.state as_hash["before"] = current_resource ? current_resource.state : {} as_hash["duration"] = (elapsed_time * 1000).to_i.to_s as_hash["delta"] = new_resource.diff if new_resource.respond_to?("diff") as_hash["delta"] = "" if as_hash["delta"].nil? # TODO: rename as "action" as_hash["result"] = action.to_s if success? else #as_hash["result"] = "failed" end as_hash["cookbook_name"] = new_resource.cookbook_name as_hash["cookbook_version"] = new_resource.cookbook_version.version as_hash end |
#success? ⇒ Boolean
78 79 80 |
# File 'lib/chef/resource_reporter.rb', line 78 def success? !self.exception end |