Class: Facts::Aix::Memory::System::Used
- Inherits:
-
Object
- Object
- Facts::Aix::Memory::System::Used
- Defined in:
- lib/facter/facts/aix/memory/system/used.rb
Constant Summary collapse
- FACT_NAME =
'memory.system.used'
Instance Method Summary collapse
Instance Method Details
#call_the_resolver ⇒ Object
10 11 12 13 14 15 16 |
# File 'lib/facter/facts/aix/memory/system/used.rb', line 10 def call_the_resolver fact_value = Facter::Resolvers::Aix::Memory.resolve(:system) if fact_value fact_value = Facter::Util::Facts::UnitConverter.bytes_to_human_readable(fact_value[:used_bytes]) end Facter::ResolvedFact.new(FACT_NAME, fact_value) end |