Class: Fluent::ForkOutput

Inherits:
Output
  • Object
show all
Defined in:
lib/fluent/plugin/out_fork.rb

Defined Under Namespace

Classes: MaxForkSizeError

Instance Method Summary collapse

Constructor Details

#initializeForkOutput

Returns a new instance of ForkOutput.



11
12
13
# File 'lib/fluent/plugin/out_fork.rb', line 11

def initialize
  super
end

Instance Method Details

#configure(conf) ⇒ Object

Raises:

  • (Fluent::ConfigError)


23
24
25
26
27
28
# File 'lib/fluent/plugin/out_fork.rb', line 23

def configure(conf)
  super

  fallbacks = %w(skip drop log)
  raise Fluent::ConfigError, "max_fallback must be one of #{fallbacks.inspect}" unless fallbacks.include?(@max_fallback)
end

#emit(tag, es, chain) ⇒ Object



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/fluent/plugin/out_fork.rb', line 30

def emit(tag, es, chain)
  es.each do |time, record|
    org_value = record[@fork_key]
    if org_value.nil?
      log.trace "#{tag} - #{time}: skip to fork #{@fork_key}=#{org_value}"
      next
    end
    log.trace "#{tag} - #{time}: try to fork #{@fork_key}=#{org_value}"

    values = org_value.split(@separator)

    values = values.uniq unless @no_unique

    if @max_size && @max_size < values.size
      case @max_fallback
      when 'skip'
        log.warn "#{tag} - #{time}: Skip too many forked values (max=#{@max_size}) : #{org_value}"
        next
      when 'drop'
        log.warn "#{tag} - #{time}: Drop too many forked values (max=#{@max_size}) : #{org_value}"
        values = values.take(@max_size)
      when 'log'
        log.info "#{tag} - #{time}: Too many forked values (max=#{@max_size}) : #{org_value}"
      end
    end

    values.reject{ |value| value.to_s == '' }.each do |value|
      log.trace "#{tag} - #{time}: reemit #{@output_key}=#{value} for #{@output_tag}"
      Engine.emit(@output_tag, time, record.reject{ |k, v| k == @fork_key }.merge(@output_key => value))
    end
  end
rescue => e
  log.error "#{e.message}: #{e.backtrace.join(', ')}"
ensure
  chain.next
end