class Fluent::UnixOutput

obsolete

Public Class Methods

new() click to toggle source
Calls superclass method Fluent::StreamOutput.new
# File lib/fluent/plugin/out_stream.rb, line 110
def initialize
  super
  $log.warn "'unix' output is obsoleted and will be removed."
end

Public Instance Methods

configure(conf) click to toggle source
Calls superclass method Fluent::StreamOutput#configure
# File lib/fluent/plugin/out_stream.rb, line 117
def configure(conf)
  super
end
connect() click to toggle source
# File lib/fluent/plugin/out_stream.rb, line 121
def connect
  UNIXSocket.new(@path)
end