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

#configure, #initialize

Constructor Details

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

Instance Method Details

#check!Object



53
54
55
56
57
58
59
60
61
62
# File 'lib/health_monitor/providers/sidekiq.rb', line 53

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