Method: LinuxProcessMemory#rss
- Defined in:
- lib/linux_process_memory.rb
#rss(units = :bytes) ⇒ Numberic Also known as: resident
Returns the resident set size for the process.
60 61 62 |
# File 'lib/linux_process_memory.rb', line 60 def rss(units = :bytes) convert_units(@stats[:Rss], units) end |