Class: Fluent::UnixOutput
- Inherits:
-
StreamOutput
- Object
- StreamOutput
- Fluent::UnixOutput
- Defined in:
- lib/fluent/plugin/out_stream.rb
Overview
obsolete
Instance Method Summary collapse
- #configure(conf) ⇒ Object
- #connect ⇒ Object
-
#initialize ⇒ UnixOutput
constructor
A new instance of UnixOutput.
Methods inherited from StreamOutput
#flush_secondary, #format_stream, #write
Constructor Details
#initialize ⇒ UnixOutput
Returns a new instance of UnixOutput.
115 116 117 118 |
# File 'lib/fluent/plugin/out_stream.rb', line 115 def initialize super $log.warn "'unix' output is obsoleted and will be removed." end |
Instance Method Details
#configure(conf) ⇒ Object
122 123 124 |
# File 'lib/fluent/plugin/out_stream.rb', line 122 def configure(conf) super end |
#connect ⇒ Object
126 127 128 |
# File 'lib/fluent/plugin/out_stream.rb', line 126 def connect UNIXSocket.new(@path) end |