Sha256: 1dd656708ac876cca1388283d3a6327e066a38b70b5fd303bbac12cb877ce58b

Contents?: true

Size: 456 Bytes

Versions: 10

Compression:

Stored size: 456 Bytes

Contents

# frozen_string_literal: true

module Facts
  module El
    module Memory
      module System
        class Used
          FACT_NAME = 'memory.system.used'

          def call_the_resolver
            fact_value = Facter::Resolvers::Linux::Memory.resolve(:used_bytes)
            fact_value = Facter::BytesToHumanReadable.convert(fact_value)
            Facter::ResolvedFact.new(FACT_NAME, fact_value)
          end
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
facter-4.0.18 lib/facts/el/memory/system/used.rb
facter-4.0.17 lib/facts/el/memory/system/used.rb
facter-4.0.16 lib/facts/el/memory/system/used.rb
facter-4.0.15 lib/facts/el/memory/system/used.rb
facter-4.0.14 lib/facts/el/memory/system/used.rb
facter-4.0.13 lib/facts/el/memory/system/used.rb
facter-4.0.12 lib/facts/el/memory/system/used.rb
facter-4.0.11 lib/facts/el/memory/system/used.rb
facter-4.0.10.pre lib/facts/el/memory/system/used.rb
facter-4.0.9.pre lib/facts/el/memory/system/used.rb