fluentd-ui/app/models/fluentd/setting/parser_apache2.rb
Kenji Okimoto 5750349b1e
Add models for parser plugins
Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
2018-06-05 17:13:25 +09:00

14 lines
209 B
Ruby

class Fluentd
module Setting
module ParserApache2
include Fluentd::Setting::Plugin
register_plugin("parser", "apache2")
def self.initial_params
{}
end
end
end
end