Sha256: 2fba02ef5ac8820f80a6019232e5ca101a831a94fea881767eeb9fae8d7c3415

Contents?: true

Size: 1.95 KB

Versions: 59

Compression:

Stored size: 1.95 KB

Contents

# encoding: utf-8
require "logstash/util"

module LogStash::Util

  # Decorators provides common manipulation on the event data.
  module Decorators
    include LogStash::Util::Loggable
    extend self

    # fields is a hash of field => value
    # where both `field` and `value` can use sprintf syntax.
    def add_fields(fields,event, pluginname)
      fields.each do |field, value|
        field = event.sprintf(field)
        value = Array(value)
        value.each do |v|
          v = event.sprintf(v)
          if event.include?(field)
            # note below that the array field needs to be updated then reassigned to the event.
            # this is important because a construct like event[field] << v will not work
            # in the current Java event implementation. see https://github.com/elastic/logstash/issues/4140
            a = Array(event.get(field))
            a << v
            event.set(field, a)
          else
            event.set(field, v)
          end
          self.logger.debug? and self.logger.debug("#{pluginname}: adding value to field", "field" => field, "value" => value)
        end
      end
    end

    # tags is an array of string. sprintf syntax can be used.
    def add_tags(new_tags, event, pluginname)
      return if new_tags.empty?

      tags = Array(event.get("tags")) # note that Array(nil) => []

      new_tags.each do |new_tag|
        new_tag = event.sprintf(new_tag)
        self.logger.debug? and self.logger.debug("#{pluginname}: adding tag", "tag" => new_tag)
        # note below that the tags array field needs to be updated then reassigned to the event.
        # this is important because a construct like event["tags"] << tag will not work
        # in the current Java event implementation. see https://github.com/elastic/logstash/issues/4140
        tags << new_tag  #unless tags.include?(new_tag)
      end

      event.set("tags", tags)
    end

  end # module LogStash::Util::Decorators

end # module LogStash::Util

Version data entries

59 entries across 59 versions & 1 rubygems

Version Path
logstash-core-6.8.23-java lib/logstash/util/decorators.rb
logstash-core-6.8.22-java lib/logstash/util/decorators.rb
logstash-core-6.8.21-java lib/logstash/util/decorators.rb
logstash-core-6.8.20-java lib/logstash/util/decorators.rb
logstash-core-6.8.19-java lib/logstash/util/decorators.rb
logstash-core-6.8.18-java lib/logstash/util/decorators.rb
logstash-core-6.8.17-java lib/logstash/util/decorators.rb
logstash-core-6.8.16-java lib/logstash/util/decorators.rb
logstash-core-6.8.15-java lib/logstash/util/decorators.rb
logstash-core-6.8.14-java lib/logstash/util/decorators.rb
logstash-core-6.8.13-java lib/logstash/util/decorators.rb
logstash-core-6.8.12-java lib/logstash/util/decorators.rb
logstash-core-6.8.11-java lib/logstash/util/decorators.rb
logstash-core-6.8.10-java lib/logstash/util/decorators.rb
logstash-core-6.8.9-java lib/logstash/util/decorators.rb
logstash-core-6.8.8-java lib/logstash/util/decorators.rb
logstash-core-6.8.7-java lib/logstash/util/decorators.rb
logstash-core-7.5.2-java lib/logstash/util/decorators.rb
logstash-core-7.5.1-java lib/logstash/util/decorators.rb
logstash-core-6.8.6-java lib/logstash/util/decorators.rb