Sha256: 5d30175a9cc7168034af18b31cd3833ecca8d43325ae6c608765bcd59035da30

Contents?: true

Size: 1.9 KB

Versions: 25

Compression:

Stored size: 1.9 KB

Contents

#
# Fluentd
#
#    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.
#

require 'fluent/output'
require 'fluent/config/error'
require 'fluent/event'

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

    desc 'If true, pass different record to each `store` plugin.'
    config_param :deep_copy, :bool, default: false

    def initialize
      super
      @outputs = []
    end

    attr_reader :outputs

    def configure(conf)
      super
      conf.elements.select {|e|
        e.name == 'store'
      }.each {|e|
        type = 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.router = router
        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?
        m = MultiEventStream.new
        es.each {|time,record|
          m.add(time, record)
        }
        es = m
      end
      if @deep_copy
        chain = CopyOutputChain.new(@outputs, tag, es, chain)
      else
        chain = OutputChain.new(@outputs, tag, es, chain)
      end
      chain.next
    end
  end
end

Version data entries

25 entries across 25 versions & 2 rubygems

Version Path
fluentd-0.12.43 lib/fluent/plugin/out_copy.rb
fluentd-0.12.42 lib/fluent/plugin/out_copy.rb
fluentd-0.12.41 lib/fluent/plugin/out_copy.rb
fluentd-0.12.40 lib/fluent/plugin/out_copy.rb
fluentd-0.12.39 lib/fluent/plugin/out_copy.rb
fluentd-0.12.38 lib/fluent/plugin/out_copy.rb
fluentd-0.12.37 lib/fluent/plugin/out_copy.rb
fluentd-0.12.36 lib/fluent/plugin/out_copy.rb
fluent-plugin-detect-memb-exceptions-0.0.2 vendor/bundle/ruby/2.0.0/gems/fluentd-0.12.35/lib/fluent/plugin/out_copy.rb
fluent-plugin-detect-memb-exceptions-0.0.1 vendor/bundle/ruby/2.0.0/gems/fluentd-0.12.35/lib/fluent/plugin/out_copy.rb
fluentd-0.12.35 lib/fluent/plugin/out_copy.rb
fluentd-0.12.34 lib/fluent/plugin/out_copy.rb
fluentd-0.12.33 lib/fluent/plugin/out_copy.rb
fluentd-0.12.32 lib/fluent/plugin/out_copy.rb
fluentd-0.12.31 lib/fluent/plugin/out_copy.rb
fluentd-0.12.30 lib/fluent/plugin/out_copy.rb
fluentd-0.12.29 lib/fluent/plugin/out_copy.rb
fluentd-0.12.28 lib/fluent/plugin/out_copy.rb
fluentd-0.12.27 lib/fluent/plugin/out_copy.rb
fluentd-0.12.26 lib/fluent/plugin/out_copy.rb