Class/Module Index [+]

Quicksearch

Fluent::UnixInput

Public Instance Methods

configure(conf) click to toggle source
# File lib/fluent/plugin/in_stream.rb, line 191
def configure(conf)
  super
  #$log.warn "'unix' input is obsoleted and will be removed. Use 'forward' instead."
end
listen() click to toggle source
# File lib/fluent/plugin/in_stream.rb, line 196
def listen
  if File.exist?(@path)
    File.unlink(@path)
  end
  FileUtils.mkdir_p File.dirname(@path)
  $log.debug "listening fluent socket on #{@path}"
  Coolio::UNIXServer.new(@path, Handler, method(:on_message))
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.