Class: Chef::RunStatus

Inherits:
Object show all
Defined in:
lib/chef/run_status.rb

Overview

Chef::RunStatus

Tracks various aspects of a Chef run, including the Node and RunContext, start and end time, and any Exception that stops the run. RunStatus objects are passed to any notification or exception handlers at the completion of a Chef run.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(node, events) ⇒ RunStatus

Returns a new instance of RunStatus.



40
41
42
43
# File 'lib/chef/run_status.rb', line 40

def initialize(node, events)
  @node = node
  @events = events
end

Instance Attribute Details

#end_timeObject (readonly)

Returns the value of attribute end_time.



34
35
36
# File 'lib/chef/run_status.rb', line 34

def end_time
  @end_time
end

#eventsObject (readonly)

Returns the value of attribute events.



26
27
28
# File 'lib/chef/run_status.rb', line 26

def events
  @events
end

#exceptionObject

Returns the value of attribute exception.



36
37
38
# File 'lib/chef/run_status.rb', line 36

def exception
  @exception
end

#run_contextObject

Returns the value of attribute run_context.



28
29
30
# File 'lib/chef/run_status.rb', line 28

def run_context
  @run_context
end

#start_timeObject (readonly)

Returns the value of attribute start_time.



32
33
34
# File 'lib/chef/run_status.rb', line 32

def start_time
  @start_time
end

Instance Method Details

#all_resourcesObject

The list of all resources in the current run context’s resource_collection



70
71
72
# File 'lib/chef/run_status.rb', line 70

def all_resources
  @run_context && @run_context.resource_collection.all_resources
end

#backtraceObject

The backtrace from exception, if any



81
82
83
# File 'lib/chef/run_status.rb', line 81

def backtrace
  @exception && @exception.backtrace
end

#elapsed_timeObject

The elapsed time between start_time and end_time. Returns nil if either value is not set.



61
62
63
64
65
66
67
# File 'lib/chef/run_status.rb', line 61

def elapsed_time
  if @start_time && @end_time
    @end_time - @start_time
  else
    nil
  end
end

#failed?Boolean

Did the Chef run fail?

Returns:

  • (Boolean)


86
87
88
# File 'lib/chef/run_status.rb', line 86

def failed?
  !success?
end

#formatted_exceptionObject

Returns a string of the format “ExceptionClass: message” or nil if no exception is set.



120
121
122
# File 'lib/chef/run_status.rb', line 120

def formatted_exception
  @exception && "#{@exception.class.name}: #{@exception.message}"
end

#nodeObject



45
46
47
# File 'lib/chef/run_status.rb', line 45

def node
  @node
end

#start_clockObject

sets start_time to the current time.



50
51
52
# File 'lib/chef/run_status.rb', line 50

def start_clock
  @start_time = Time.now
end

#stop_clockObject

sets end_time to the current time



55
56
57
# File 'lib/chef/run_status.rb', line 55

def stop_clock
  @end_time = Time.now
end

#success?Boolean

Did the chef run succeed? returns true if no exception has been set.

Returns:

  • (Boolean)


91
92
93
# File 'lib/chef/run_status.rb', line 91

def success?
  @exception.nil?
end

#to_hashObject

A Hash representation of the RunStatus, with the following (Symbol) keys:

  • :node

  • :success

  • :start_time

  • :end_time

  • :elapsed_time

  • :all_resources

  • :updated_resources

  • :exception

  • :backtrace



105
106
107
108
109
110
111
112
113
114
115
116
# File 'lib/chef/run_status.rb', line 105

def to_hash
  # use a flat hash here so we can't errors from intermediate values being nil
  { :node => node,
    :success => success?,
    :start_time => start_time,
    :end_time => end_time,
    :elapsed_time => elapsed_time,
    :all_resources => all_resources,
    :updated_resources => updated_resources,
    :exception => formatted_exception,
    :backtrace => backtrace}
end

#updated_resourcesObject

The list of all resources in the current run context’s resource_collection that are marked as updated



76
77
78
# File 'lib/chef/run_status.rb', line 76

def updated_resources
  @run_context && @run_context.resource_collection.select { |r| r.updated }
end