# File lib/fluent/output.rb, line 75 def initialize super end
# File lib/fluent/output.rb, line 79 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
def emit(tag, es, chain) end
# File lib/fluent/output.rb, line 99 def secondary_init(primary) if primary.class != self.class $log.warn "type of secondary output should be same as primary output", primary: primary.class.to_s, secondary: self.class.to_s end end
# File lib/fluent/output.rb, line 93 def shutdown end
# File lib/fluent/output.rb, line 90 def start end