Sha256: 31c79a8661669676e5afac0aa783299ca48ea5b07e178735c56e4a0febf6c609

Contents?: true

Size: 1.21 KB

Versions: 3

Compression:

Stored size: 1.21 KB

Contents

require 'fluent/output'

module Fluent
  class Fluent::AppendKubernetesAnnotationsToTag < Fluent::Output
    Fluent::Plugin.register_output('append_kubernetes_annotations_to_tag', self)

    config_param :annotations, :string

    def configure(conf)
      super

      @annotations = conf['annotations'].split(',')
    end

    def emit(tag, es, chain)
      chain.next
      es.each do |time, record|
        new_tag = process_tag(tag, record)
        router.emit(new_tag, time, record)
      end

    rescue
      log.error "Failed to re-format docker record #{tag}"
      # this seems to be a way to safely swallow records we don't know how to format
      ""
    end

    private

    def process_tag(tag, record)
      if record.has_key?('kubernetes') && record['kubernetes'].has_key?('annotations')
        kubernetes_annotations_tag_appender.append(tag,
                                                   record['kubernetes']['annotations'],
                                                   record['kubernetes']['container_name'])
      else
        tag
      end
    end

    def kubernetes_annotations_tag_appender
      @kubernetes_annotations_tag_appender ||= KubernetesAnnotationsTagAppender.new(@annotations)
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fluent-plugin-append-kubernetes-annotations-to-tag-0.1.0.pre.6 lib/fluent/plugin/out_append_kubernetes_annotations_to_tag.rb
fluent-plugin-append-kubernetes-annotations-to-tag-0.1.0.pre.5 lib/fluent/plugin/out_append_kubernetes_annotations_to_tag.rb
fluent-plugin-append-kubernetes-annotations-to-tag-0.1.0.pre.4 lib/fluent/plugin/out_append_kubernetes_annotations_to_tag.rb