class Fluent::Plugin::StaticServiceDiscovery

Constants

LISTEN_PORT

Public Instance Methods

configure(conf) click to toggle source
Calls superclass method
# File lib/fluent/plugin/sd_static.rb, line 45
def configure(conf)
  super

  @services = @service_configs.map do |s|
    ServiceDiscovery::Service.new(:static, s.host, s.port, s.name, s.weight, s.standby, s.username, s.password, s.shared_key)
  end
end
start(queue = nil) click to toggle source
Calls superclass method
# File lib/fluent/plugin/sd_static.rb, line 53
def start(queue = nil)
  super()
end