Class: Fluent::FilterNestedHash

Inherits:
Filter
  • Object
show all
Defined in:
lib/fluent/plugin/filter_nested_hash.rb

Instance Method Summary collapse

Instance Method Details

#configure(conf) ⇒ Object



9
10
11
# File 'lib/fluent/plugin/filter_nested_hash.rb', line 9

def configure conf
  super
end

#filter(tag, time, record) ⇒ Object



21
22
23
# File 'lib/fluent/plugin/filter_nested_hash.rb', line 21

def filter tag, time, record
  Fluent::NestedHashFilter::NestedObject.convert record, connector: @connector
end

#shutdownObject



17
18
19
# File 'lib/fluent/plugin/filter_nested_hash.rb', line 17

def shutdown
  super
end

#startObject



13
14
15
# File 'lib/fluent/plugin/filter_nested_hash.rb', line 13

def start
  super
end