fluentd-ui/app/models/fluentd/setting/parser_apache2.rb
Kenji Okimoto ed3ede60fb
Fix typos
Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
2018-06-06 18:04:46 +09:00

14 lines
208 B
Ruby

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