Sha256: d4ee100267d110743a677484159070fc91db31f3ff9e96d75fe0fae43b0a2dee

Contents?: true

Size: 373 Bytes

Versions: 2

Compression:

Stored size: 373 Bytes

Contents

require_relative 'core'

module Fluent
  class Plugin::RecordReformerOutput < Plugin::Output
    Fluent::Plugin.register_output('record_reformer', self)

    helpers :event_emitter
    include ::Fluent::RecordReformerOutputCore

    def initialize
      super
    end
    
    def configure(conf)
      super
    end

    def process(tag, es)
      super
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fluent-plugin-record-reformer-0.9.1 lib/fluent/plugin/out_record_reformer/v14.rb
fluent-plugin-record-reformer-0.9.0 lib/fluent/plugin/out_record_reformer/v14.rb