Sha256: d8b71de55019201fe2d9d4f7e033f807ee91e23fb3bc04c28ed4dd8345a432fd

Contents?: true

Size: 459 Bytes

Versions: 3

Compression:

Stored size: 459 Bytes

Contents

require_relative 'core'

module Fluent
  class PluginFilterWhere < Filter
    Fluent::Plugin.register_filter('where', self)

    include ::Fluent::FilterWhere::Core

    def initialize
      super
    end

    # To support log_level option implemented by Fluentd v0.10.43
    unless method_defined?(:log)
      define_method("log") { $log }
    end

    def configure(conf)
      super
    end

    def filter(tag, time, record)
      super
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fluent-plugin-filter_where-1.0.3 lib/fluent/plugin/filter_where/v12.rb
fluent-plugin-filter_where-1.0.2 lib/fluent/plugin/filter_where/v12.rb
fluent-plugin-filter_where-1.0.1 lib/fluent/plugin/filter_where/v12.rb