# File lib/fluent/plugin/in_stream.rb, line 191defconfigure(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 196deflistenifFile.exist?(@path)
File.unlink(@path)
endFileUtils.mkdir_pFile.dirname(@path)
$log.debug"listening fluent socket on #{@path}"Coolio::UNIXServer.new(@path, Handler, method(:on_message))
end