Class: Fluent::NullOutput

Inherits:
Output
  • Object
show all
Defined in:
lib/fluent/plugin/out_null.rb

Constant Summary

Constants included from Configurable

Configurable::CONFIG_TYPE_REGISTRY

Instance Attribute Summary

Attributes inherited from Output

#router

Attributes included from PluginLoggerMixin

#log

Instance Method Summary collapse

Methods inherited from Output

#secondary_init

Methods included from PluginLoggerMixin

included

Methods included from PluginId

#plugin_id

Methods included from Configurable

#config, included, lookup_type, register_type

Constructor Details

#initializeNullOutput



23
24
25
# File 'lib/fluent/plugin/out_null.rb', line 23

def initialize
  super
end

Instance Method Details

#configure(conf) ⇒ Object



27
28
29
# File 'lib/fluent/plugin/out_null.rb', line 27

def configure(conf)
  super
end

#emit(tag, es, chain) ⇒ Object



37
38
39
# File 'lib/fluent/plugin/out_null.rb', line 37

def emit(tag, es, chain)
  chain.next
end

#shutdownObject



34
35
# File 'lib/fluent/plugin/out_null.rb', line 34

def shutdown
end

#startObject



31
32
# File 'lib/fluent/plugin/out_null.rb', line 31

def start
end