Method: What::Modules::Unicorn#health

Defined in:
lib/what/modules/unicorn.rb

#healthObject



19
20
21
22
23
24
25
26
27
# File 'lib/what/modules/unicorn.rb', line 19

def health
  if @unicorns.count > @config['warning']
    'ok'
  elsif @unicorns.count > @config['alert']
    'warning'
  else
    'alert'
  end
end