Class: HealthMonitor::Providers::Sidekiq

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

Defined Under Namespace

Classes: Configuration

Instance Attribute Summary

Attributes inherited from Base

#configuration, #request

Instance Method Summary collapse

Methods inherited from Base

configurable?, configure, #initialize, provider_name

Constructor Details

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

Instance Method Details

#check!Object



50
51
52
53
54
55
56
57
58
# File 'lib/health_monitor/providers/sidekiq.rb', line 50

def check!
  check_workers!
  check_processes!
  check_latency!
  check_queue_size!
  check_redis!
rescue Exception => e
  raise SidekiqException.new(e)
end