Sha256: 4e34526a5bff0966f6382ea5228efc4faf3d19b76480d14adb8f066399a4a9ba
Contents?: true
Size: 1.82 KB
Versions: 6
Compression:
Stored size: 1.82 KB
Contents
# frozen_string_literal: true module Facter module Resolvers module Aix class Memory < BaseResolver # :hardware @semaphore = Mutex.new @fact_list ||= {} class << self private def post_resolve(fact_name) @fact_list.fetch(fact_name) { execute_svmon(fact_name) } end def execute_svmon(fact_name) result = Facter::Core::Execution.execute('svmon', logger: log) return if result.empty? @fact_list[:system] = @fact_list[:swap] = {} pagesize = call_pagesize.to_i return if pagesize.zero? result.each_line do |line| @fact_list[:system] = populate_system(line, pagesize) if line.include?('memory') @fact_list[:swap] = populate_swap(line, pagesize) if line =~ /pg\sspace/ end @fact_list[fact_name] end def call_pagesize Facter::Core::Execution.execute('pagesize', logger: log).strip end def populate_system(content, pagesize) content = content.split(' ') total = content[1].to_i * pagesize used = content[2].to_i * pagesize { available_bytes: content[3].to_i * pagesize, total_bytes: total, used_bytes: used, capacity: FilesystemHelper.compute_capacity(used, total) } end def populate_swap(content, pagesize) content = content.split(' ') total = content[2].to_i * pagesize used = content[3].to_i * pagesize { available_bytes: total - used, total_bytes: total, used_bytes: used, capacity: FilesystemHelper.compute_capacity(used, total) } end end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems