class Facter::Resolvers::Solaris::Processors
Private Class Methods
collect_kstat_info(fact_name)
click to toggle source
# File lib/facter/resolvers/solaris/processors.rb, line 14 def collect_kstat_info(fact_name) return unless File.executable?('/usr/bin/kstat') kstat_output = Facter::Core::Execution.execute('/usr/bin/kstat -m cpu_info', logger: log) return if kstat_output.empty? parse_output(kstat_output.chomp) @fact_list[fact_name] end
parse_output(output)
click to toggle source
# File lib/facter/resolvers/solaris/processors.rb, line 24 def parse_output(output) @fact_list[:logical_count] = output.scan(/module/).size @fact_list[:physical_count] = output.scan(/chip_id .*/).uniq.size @fact_list[:speed] = output.scan(/current_clock_Hz .*/).first.gsub(/[a-zA-z\s]+/, '').to_i @fact_list[:models] = output.scan(/brand .*/).map { |elem| elem.gsub(/brand(\s+)/, '') } end
post_resolve(fact_name)
click to toggle source
# File lib/facter/resolvers/solaris/processors.rb, line 10 def post_resolve(fact_name) @fact_list.fetch(fact_name) { collect_kstat_info(fact_name) } end