SET false BEFORE CONFIGURE, to return nil when time not parsed 'configure()' may raise errors for unexpected configurations
# File lib/fluent/parser.rb, line 43 def initialize super @estimate_current_event = true end
Keep backward compatibility for existing plugins
# File lib/fluent/parser.rb, line 57 def call(*a, &b) parse(*a, &b) end
# File lib/fluent/parser.rb, line 48 def configure(conf) super end
# File lib/fluent/parser.rb, line 52 def parse(text) raise NotImplementedError, "Implement this method in child class" end