Class: Fluent::NullOutput
- Inherits:
-
Output
- Object
- Output
- Fluent::NullOutput
show all
- Defined in:
- lib/fluent/plugin/out_null.rb
Constant Summary
Configurable::CONFIG_TYPE_REGISTRY
Instance Attribute Summary
Attributes inherited from Output
#router
#log
Instance Method Summary
collapse
Methods inherited from Output
#secondary_init
included
Methods included from PluginId
#plugin_id
#config, included, lookup_type, register_type
Constructor Details
23
24
25
|
# File 'lib/fluent/plugin/out_null.rb', line 23
def initialize
super
end
|
Instance Method Details
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
|
#shutdown ⇒ Object
34
35
|
# File 'lib/fluent/plugin/out_null.rb', line 34
def shutdown
end
|
#start ⇒ Object
31
32
|
# File 'lib/fluent/plugin/out_null.rb', line 31
def start
end
|