Class: Fluent::TextFormatter::SprintfFormatter

Inherits:
Formatter
  • Object
show all
Includes:
Configurable, HandleTagAndTimeMixin
Defined in:
lib/fluent/plugin/formatter_sprintf.rb

Instance Method Summary collapse

Constructor Details

#initializeSprintfFormatter

Returns a new instance of SprintfFormatter.



13
14
15
# File 'lib/fluent/plugin/formatter_sprintf.rb', line 13

def initialize
  super
end

Instance Method Details

#configure(conf) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/fluent/plugin/formatter_sprintf.rb', line 17

def configure(conf)
  super
  @time_format = @time_format || '%Y-%m-%d %H:%M:%S'
  r = /\$\{([^}]+)\}/
  @keys = @sprintf_format.scan(r).map{ |key| key.first }
  @sprintf_format = @sprintf_format.gsub(/\$\{([^}]+)\}/, '%s')
  if @sprintf_blank_record_format
    @sprintf_blank_record_keys = @sprintf_blank_record_format.scan(r).map{ |key| key.first }
    @sprintf_blank_record_format = @sprintf_blank_record_format.gsub(/\$\{([^}]+)\}/, '%s')
  end

  begin
    @sprintf_format % @keys
  rescue ArgumentError => e
    raise Fluent::ConfigError, "formatter_sprintf: @sprintf_format is can't include '%'"
  end
end

#format(tag, time, record) ⇒ Object



35
36
37
38
39
40
# File 'lib/fluent/plugin/formatter_sprintf.rb', line 35

def format(tag, time, record)
  if record.empty? && @sprintf_blank_record_format
    return @sprintf_blank_record_format % get_values(@sprintf_blank_record_keys, tag, time, record)
  end
  @sprintf_format % get_values(@keys, tag, time, record)
end

#get_values(keys, tag, time, record) ⇒ Object



42
43
44
45
46
47
48
49
50
51
52
# File 'lib/fluent/plugin/formatter_sprintf.rb', line 42

def get_values(keys, tag, time, record)
  keys.map{ |key|
    if key == 'tag'
      tag
    elsif key == 'time'
      Time.at(time).strftime(@time_format)
    else
      (record[key].nil? || record[key].empty?) ? @sprintf_blank_string : record[key]
    end
  }
end