Class: HealthMonitor::Providers::Resque

Inherits:
Base
  • Object
show all
Defined in:
lib/health_monitor/providers/resque.rb

Instance Attribute Summary

Attributes inherited from Base

#configuration, #request

Instance Method Summary collapse

Methods inherited from Base

#configure, #initialize

Constructor Details

This class inherits a constructor from HealthMonitor::Providers::Base

Instance Method Details

#check!Object



11
12
13
14
15
# File 'lib/health_monitor/providers/resque.rb', line 11

def check!
  ::Resque.info
rescue Exception => e
  raise ResqueException.new(e.message)
end