class Fluent::Input
Attributes
router[RW]
Public Class Methods
new()
click to toggle source
Calls superclass method
Fluent::PluginLoggerMixin.new
# File lib/fluent/input.rb, line 25 def initialize super end
Public Instance Methods
configure(conf)
click to toggle source
Calls superclass method
Fluent::PluginLoggerMixin#configure
# File lib/fluent/input.rb, line 29 def configure(conf) super if label_name = conf['@label'] label = Engine.root_agent.find_label(label_name) @router = label.event_router elsif @router.nil? @router = Engine.root_agent.event_router end end
shutdown()
click to toggle source
# File lib/fluent/input.rb, line 43 def shutdown end
start()
click to toggle source
# File lib/fluent/input.rb, line 40 def start end