Class: Bluepill::ProcessConditions::MemUsage
- Inherits:
-
ProcessCondition
- Object
- ProcessCondition
- Bluepill::ProcessConditions::MemUsage
- Defined in:
- lib/bluepill/process_conditions/mem_usage.rb
Constant Summary collapse
- MB =
1024**2
- FORMAT_STR =
'%d%s'
- MB_LABEL =
'MB'
- KB_LABEL =
'KB'
Instance Method Summary collapse
- #check(value) ⇒ Object
- #format_value(value) ⇒ Object
-
#initialize(options = {}) ⇒ MemUsage
constructor
A new instance of MemUsage.
- #run(pid, include_children) ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ MemUsage
Returns a new instance of MemUsage.
9 10 11 |
# File 'lib/bluepill/process_conditions/mem_usage.rb', line 9 def initialize( = {}) @below = [:below] end |
Instance Method Details
#check(value) ⇒ Object
18 19 20 21 22 |
# File 'lib/bluepill/process_conditions/mem_usage.rb', line 18 def check(value) value.kilobytes < @below rescue true end |
#format_value(value) ⇒ Object
24 25 26 27 28 29 30 |
# File 'lib/bluepill/process_conditions/mem_usage.rb', line 24 def format_value(value) if value.kilobytes >= MB format(FORMAT_STR, (value / 1024).round, MB_LABEL) else format(FORMAT_STR, value, KB_LABEL) end end |
#run(pid, include_children) ⇒ Object
13 14 15 16 |
# File 'lib/bluepill/process_conditions/mem_usage.rb', line 13 def run(pid, include_children) # rss is on the 5th col System.memory_usage(pid, include_children).to_f end |