Module: Fluent::MysqlBinlogFlydataInputPreference

Included in:
MysqlBinlogFlydataInput
Defined in:
lib/flydata/fluent-plugins/flydata_plugin_ext/preference.rb

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



72
73
74
75
76
77
78
79
80
81
# File 'lib/flydata/fluent-plugins/flydata_plugin_ext/preference.rb', line 72

def self.included(base)
  base.class_eval do
    include DataEntryPreferenceConfigurable
    Flydata::SourceMysql::DataEntry::CONFIG_PARAMS.each do |type, custom_conf|
      custom_conf.each do |key, option|
        custom_config_param key, type, option
      end
    end
  end
end