class Fluent::Plugin::StringScrubOutput

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/fluent/plugin/out_string_scrub.rb, line 13
def initialize
  super
end

Public Instance Methods

configure(conf) click to toggle source
Calls superclass method
# File lib/fluent/plugin/out_string_scrub.rb, line 17
def configure(conf)
  super

  if conf['@label'].nil?
    if not @tag and not @remove_prefix and not @add_prefix
       raise Fluent::ConfigError, "missing both of remove_prefix and add_prefix"
    end
    if @tag and (@remove_prefix or @add_prefix)
        raise Fluent::ConfigError, "both of tag and remove_prefix/add_prefix must not be specified"
    end
    if @remove_prefix
        @removed_prefix_string = @remove_prefix + '.'
        @removed_length = @removed_prefix_string.length
    end
    if @add_prefix
      @added_prefix_string = @add_prefix + '.'
    end
  end

  if @replace_char =~ /\\u\{*[A-F0-9]{4}\}*/
    @replace_char = eval("\"#{@replace_char}\"")
  end
end
process(tag, es) click to toggle source
# File lib/fluent/plugin/out_string_scrub.rb, line 41
def process(tag, es)
  tag = if @tag
          @tag
        else
          if @remove_prefix and
              ( (tag.start_with?(@removed_prefix_string) and tag.length > @removed_length) or tag == @remove_prefix)
            tag = tag[@removed_length..-1]
          end
          if @add_prefix
            tag = if tag and tag.length > 0
                    @added_prefix_string + tag
                  else
                    @add_prefix
                  end
          end
          tag
        end

  es.each do |time,record|
    scrubbed = recv_record(record)
    next if scrubbed.nil?
    router.emit(tag, time, scrubbed)
  end
end
recv_record(record) click to toggle source
# File lib/fluent/plugin/out_string_scrub.rb, line 66
def recv_record(record)
  scrubbed = {}
  record.each do |k,v|
    if v.instance_of? Hash
      scrubbed[with_scrub(k)] = recv_record(v)
    else
      scrubbed[with_scrub(k)] = with_scrub(v)
    end
  end
  scrubbed
end
with_scrub(string) click to toggle source
# File lib/fluent/plugin/out_string_scrub.rb, line 78
def with_scrub(string)
  begin
    string =~ //
    return string
  rescue ArgumentError => e
    raise e unless e.message.index("invalid byte sequence in") == 0
    if string.frozen?
        string = string.dup.scrub!(@replace_char)
    else
        string.scrub!(@replace_char)
    end
    retry
  end
end