Class: Eye::Checker::Measure
- Inherits:
-
Eye::Checker
- Object
- Eye::Checker
- Eye::Checker::Measure
- Defined in:
- lib/eye/checker.rb
Direct Known Subclasses
ChildrenCount, ChildrenMemory, Cpu, Cputime, FileSize, Memory, Runtime
Constant Summary
Constants inherited from Eye::Checker
Instance Attribute Summary
Attributes inherited from Eye::Checker
#check_count, #options, #pid, #process, #type, #value, #values
Instance Method Summary collapse
Methods inherited from Eye::Checker
#check, #check_name, create, #defer, #fire, get_class, #get_value, #get_value_safe, #human_value, #initialize, #inspect, #last_human_values, #logger_sub_tag, #logger_tag, #max_tries, #min_tries, name_and_class, #previous_value, register, requires, #run_in_process_context, validate!
Methods included from Dsl::Validation
Constructor Details
This class inherits a constructor from Eye::Checker
Instance Method Details
#good?(value) ⇒ Boolean
240 241 242 243 244 |
# File 'lib/eye/checker.rb', line 240 def good?(value) return false if below && (value > below) return false if above && (value < above) true end |
#measure_str ⇒ Object
246 247 248 249 250 251 252 253 254 255 256 |
# File 'lib/eye/checker.rb', line 246 def measure_str if below && above ">#{human_value(above)}<#{human_value(below)}" elsif below "<#{human_value(below)}" elsif above ">#{human_value(above)}" else '-' end end |