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.



15
16
17
# File 'lib/sidekiq_alive/config.rb', line 15

def initialize
  set_defaults
end

Instance Attribute Details

#callbackObject

Returns the value of attribute callback.



7
8
9
# File 'lib/sidekiq_alive/config.rb', line 7

def callback
  @callback
end

#liveness_keyObject

Returns the value of attribute liveness_key.



7
8
9
# File 'lib/sidekiq_alive/config.rb', line 7

def liveness_key
  @liveness_key
end

#portObject

Returns the value of attribute port.



7
8
9
# File 'lib/sidekiq_alive/config.rb', line 7

def port
  @port
end

#queue_prefixObject

Returns the value of attribute queue_prefix.



7
8
9
# File 'lib/sidekiq_alive/config.rb', line 7

def queue_prefix
  @queue_prefix
end

#registered_instance_keyObject

Returns the value of attribute registered_instance_key.



7
8
9
# File 'lib/sidekiq_alive/config.rb', line 7

def registered_instance_key
  @registered_instance_key
end

#serverObject

Returns the value of attribute server.



7
8
9
# File 'lib/sidekiq_alive/config.rb', line 7

def server
  @server
end

#time_to_liveObject

Returns the value of attribute time_to_live.



7
8
9
# File 'lib/sidekiq_alive/config.rb', line 7

def time_to_live
  @time_to_live
end

Instance Method Details

#registration_ttlObject



29
30
31
# File 'lib/sidekiq_alive/config.rb', line 29

def registration_ttl
  @registration_ttl || time_to_live + 60
end

#set_defaultsObject



19
20
21
22
23
24
25
26
27
# File 'lib/sidekiq_alive/config.rb', line 19

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
  @server = ENV['SIDEKIQ_ALIVE_SERVER'] || 'webrick'
end