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.



18
19
20
# File 'lib/sidekiq_alive/config.rb', line 18

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

#custom_liveness_probeObject

Returns the value of attribute custom_liveness_probe.



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

def custom_liveness_probe
  @custom_liveness_probe
end

#hostObject

Returns the value of attribute host.



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

def host
  @host
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

#pathObject

Returns the value of attribute path.



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

def path
  @path
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



35
36
37
# File 'lib/sidekiq_alive/config.rb', line 35

def registration_ttl
  @registration_ttl || time_to_live + 60
end

#set_defaultsObject



22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/sidekiq_alive/config.rb', line 22

def set_defaults
  @host = ENV.fetch('SIDEKIQ_ALIVE_HOST', '0.0.0.0')
  @port = ENV.fetch('SIDEKIQ_ALIVE_PORT', 7433)
  @path = ENV.fetch('SIDEKIQ_ALIVE_PATH', '/')
  @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.fetch('SIDEKIQ_ALIVE_SERVER', 'webrick')
  @custom_liveness_probe = proc { true }
end