Class: Fluent::DockerFormatOutput
- Inherits:
-
Output
- Object
- Output
- Fluent::DockerFormatOutput
- Defined in:
- lib/fluent/plugin/out_docker_format.rb
Instance Method Summary collapse
Instance Method Details
#configure(conf) ⇒ Object
10 11 12 13 |
# File 'lib/fluent/plugin/out_docker_format.rb', line 10 def configure(conf) super @id_to_name = {} end |
#emit(tag, es, chain) ⇒ Object
15 16 17 18 19 20 21 |
# File 'lib/fluent/plugin/out_docker_format.rb', line 15 def emit(tag, es, chain) es.each do |time,record| Engine.emit(@tag, time, format_record(tag, record)) end chain.next end |