Sha256: 92a349e50513ba68ea0c075e2cd47134d13f3f8f8c387c073810ad842f377c3d

Contents?: true

Size: 1.5 KB

Versions: 9

Compression:

Stored size: 1.5 KB

Contents

#
# Fluent
#
# Copyright (C) 2011 FURUHASHI Sadayuki
#
#    Licensed under the Apache License, Version 2.0 (the "License");
#    you may not use this file except in compliance with the License.
#    You may obtain a copy of the License at
#
#        http://www.apache.org/licenses/LICENSE-2.0
#
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS,
#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#    See the License for the specific language governing permissions and
#    limitations under the License.
#
module Fluent


class CopyOutput < MultiOutput
  Plugin.register_output('copy', self)

  def initialize
    @outputs = []
  end

  attr_reader :outputs

  def configure(conf)
    conf.elements.select {|e|
      e.name == 'store'
    }.each {|e|
      type = e['type']
      unless type
        raise ConfigError, "Missing 'type' parameter on <store> directive"
      end
      $log.debug "adding store type=#{type.dump}"

      output = Plugin.new_output(type)
      output.configure(e)
      @outputs << output
    }
  end

  def start
    @outputs.each {|o|
      o.start
    }
  end

  def shutdown
    @outputs.each {|o|
      o.shutdown
    }
  end

  def emit(tag, es, chain)
    unless es.repeatable?
      es = MultiEventStream.new
      array = es.map {|time,record|
        es.add(time, record)
      }
    end
    chain = OutputChain.new(@outputs, tag, es, chain)
    chain.next
  end
end


end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
fluentd-0.10.8 lib/fluent/plugin/out_copy.rb
fluentd-0.10.7 lib/fluent/plugin/out_copy.rb
fluentd-0.10.6 lib/fluent/plugin/out_copy.rb
fluentd-0.10.5 lib/fluent/plugin/out_copy.rb
fluentd-0.10.4 lib/fluent/plugin/out_copy.rb
fluentd-0.10.3 lib/fluent/plugin/out_copy.rb
fluentd-0.10.2 lib/fluent/plugin/out_copy.rb
fluentd-0.10.1 lib/fluent/plugin/out_copy.rb
fluentd-0.10.0 lib/fluent/plugin/out_copy.rb