Class: SidekiqAlive::Config

Inherits:
Object
  • Object
show all
Includes:
Singleton
Defined in:
lib/sidekiq_alive/config.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfig

Returns a new instance of Config.



12
13
14
# File 'lib/sidekiq_alive/config.rb', line 12

def initialize
  set_defaults
end

Instance Attribute Details

#callbackObject

Returns the value of attribute callback.



5
6
7
# File 'lib/sidekiq_alive/config.rb', line 5

def callback
  @callback
end

#liveness_keyObject

Returns the value of attribute liveness_key.



5
6
7
# File 'lib/sidekiq_alive/config.rb', line 5

def liveness_key
  @liveness_key
end

#portObject

Returns the value of attribute port.



5
6
7
# File 'lib/sidekiq_alive/config.rb', line 5

def port
  @port
end

#queue_prefixObject

Returns the value of attribute queue_prefix.



5
6
7
# File 'lib/sidekiq_alive/config.rb', line 5

def queue_prefix
  @queue_prefix
end

#registered_instance_keyObject

Returns the value of attribute registered_instance_key.



5
6
7
# File 'lib/sidekiq_alive/config.rb', line 5

def registered_instance_key
  @registered_instance_key
end

#time_to_liveObject

Returns the value of attribute time_to_live.



5
6
7
# File 'lib/sidekiq_alive/config.rb', line 5

def time_to_live
  @time_to_live
end

Instance Method Details

#registration_ttlObject



25
26
27
# File 'lib/sidekiq_alive/config.rb', line 25

def registration_ttl
  @registration_ttl ? @registration_ttl : time_to_live + 60
end

#set_defaultsObject



16
17
18
19
20
21
22
23
# File 'lib/sidekiq_alive/config.rb', line 16

def set_defaults
  @port = ENV['SIDEKIQ_ALIVE_PORT'] || 7433
  @liveness_key = 'SIDEKIQ::LIVENESS_PROBE_TIMESTAMP'
  @time_to_live = 10 * 60
  @callback = proc {}
  @registered_instance_key = 'SIDEKIQ_REGISTERED_INSTANCE'
  @queue_prefix = :sidekiq_alive
end