Sha256: f66b3ba04e4633882a21f757ad47f19a33b6f019aeb2c06ee6ca0d9617ec5201

Contents?: true

Size: 460 Bytes

Versions: 10

Compression:

Stored size: 460 Bytes

Contents

# frozen_string_literal: true

module Facts
  module Debian
    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/debian/memory/system/used.rb
facter-4.0.17 lib/facts/debian/memory/system/used.rb
facter-4.0.16 lib/facts/debian/memory/system/used.rb
facter-4.0.15 lib/facts/debian/memory/system/used.rb
facter-4.0.14 lib/facts/debian/memory/system/used.rb
facter-4.0.13 lib/facts/debian/memory/system/used.rb
facter-4.0.12 lib/facts/debian/memory/system/used.rb
facter-4.0.11 lib/facts/debian/memory/system/used.rb
facter-4.0.10.pre lib/facts/debian/memory/system/used.rb
facter-4.0.9.pre lib/facts/debian/memory/system/used.rb