Class: Chef::Knife::Status

Inherits:
Chef::Knife show all
Defined in:
lib/chef/knife/status.rb

Constant Summary

Constants inherited from Chef::Knife

DEFAULT_SUBCOMMAND_FILES

Instance Attribute Summary

Attributes inherited from Chef::Knife

#name_args

Instance Method Summary collapse

Methods inherited from Chef::Knife

#ask_question, #bulk_delete, category, #configure_chef, #confirm, #create_object, #delete_object, #edit_data, #edit_object, #file_exists_and_is_readable?, #format_for_display, #format_list_for_display, guess_category, inherited, #initialize, list_commands, load_commands, #load_from_file, #msg, msg, #output, #parse_options, #pretty_print, #rest, run, #show_usage, snake_case_name, #stdin, #stdout, subcommand_category, subcommand_class_from, subcommands, subcommands_by_category, unnamed?

Methods included from Mixin::ConvertToClassName

#convert_to_class_name, #convert_to_snake_case, #filename_to_qualified_string, #snake_case_basename

Constructor Details

This class inherits a constructor from Chef::Knife

Instance Method Details

#highlineObject



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

def highline
  @h ||= HighLine.new
end

#runObject



38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'lib/chef/knife/status.rb', line 38

def run
  all_nodes = []
  q = Chef::Search::Query.new
  query = @name_args[0] || "*:*"
  q.search(:node, query) do |node|
    all_nodes << node
  end
  all_nodes.sort { |n1, n2| (n1["ohai_time"] or 0) <=> (n2["ohai_time"] or 0) }.each do |node|
    if node.has_key?("ec2")
      fqdn = node['ec2']['public_hostname']
      ipaddress = node['ec2']['public_ipv4']
    else
      fqdn = node['fqdn']
      ipaddress = node['ipaddress']
    end
    hours, minutes, seconds = time_difference_in_hms(node["ohai_time"])
    hours_text   = "#{hours} hour#{hours == 1 ? ' ' : 's'}"
    minutes_text = "#{minutes} minute#{minutes == 1 ? ' ' : 's'}"
    run_list = ", #{node.run_list}." if config[:run_list]
    if hours > 24
      color = "RED"
      text = hours_text
    elsif hours >= 1
      color = "YELLOW"
      text = hours_text
    else
      color = "GREEN"
      text = minutes_text
    end

    highline.say("<%= color('#{text}', #{color}) %> ago, #{node.name}, #{node['platform']} #{node['platform_version']}, #{fqdn}, #{ipaddress}#{run_list}")
  end

end

#time_difference_in_hms(unix_time) ⇒ Object

:nodoc: TODO: this is duplicated from StatusHelper in the Webui. dedup.



75
76
77
78
79
80
81
82
83
# File 'lib/chef/knife/status.rb', line 75

def time_difference_in_hms(unix_time)
  now = Time.now.to_i
  difference = now - unix_time.to_i
  hours = (difference / 3600).to_i
  difference = difference % 3600
  minutes = (difference / 60).to_i
  seconds = (difference % 60)
  return [hours, minutes, seconds]
end