Class: Cloudscopes::Memory
- Inherits:
-
Object
- Object
- Cloudscopes::Memory
- Defined in:
- lib/cloudscopes/memory.rb
Instance Method Summary collapse
Instance Method Details
#MemAvailable ⇒ Object
12 13 14 |
# File 'lib/cloudscopes/memory.rb', line 12 def MemAvailable return self.MemFree + self.Buffers + self.Cached end |
#MemUsed ⇒ Object
16 17 18 |
# File 'lib/cloudscopes/memory.rb', line 16 def MemUsed return self.MemTotal - self.MemFree - self.Buffers - self.Cached end |