Sha256: 32d9147e94acf86bf531bbc9ea667aa55aaec8be77efabab92385a53701bd339

Contents?: true

Size: 1.76 KB

Versions: 17

Compression:

Stored size: 1.76 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.
#

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

    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

17 entries across 17 versions & 1 rubygems

Version Path
fluentd-0.12.17 lib/fluent/plugin/out_copy.rb
fluentd-0.12.16 lib/fluent/plugin/out_copy.rb
fluentd-0.12.15 lib/fluent/plugin/out_copy.rb
fluentd-0.12.14 lib/fluent/plugin/out_copy.rb
fluentd-0.12.13 lib/fluent/plugin/out_copy.rb
fluentd-0.12.12 lib/fluent/plugin/out_copy.rb
fluentd-0.12.11 lib/fluent/plugin/out_copy.rb
fluentd-0.12.10 lib/fluent/plugin/out_copy.rb
fluentd-0.12.9 lib/fluent/plugin/out_copy.rb
fluentd-0.12.8 lib/fluent/plugin/out_copy.rb
fluentd-0.12.7 lib/fluent/plugin/out_copy.rb
fluentd-0.12.6 lib/fluent/plugin/out_copy.rb
fluentd-0.12.5 lib/fluent/plugin/out_copy.rb
fluentd-0.12.4 lib/fluent/plugin/out_copy.rb
fluentd-0.12.3 lib/fluent/plugin/out_copy.rb
fluentd-0.12.2 lib/fluent/plugin/out_copy.rb
fluentd-0.12.1 lib/fluent/plugin/out_copy.rb