fluentd-ui/app/models/fluentd/setting/parser_regexp.rb
Kenji Okimoto c7af576b72
Organize options
Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
2018-10-02 17:01:29 +09:00

27 lines
393 B
Ruby

class Fluentd
module Setting
class ParserRegexp
include Fluentd::Setting::Plugin
register_plugin("parser", "regexp")
def self.initial_params
{}
end
def common_options
[
:expression
]
end
def hidden_options
super + [
:ignorecase,
:multiline,
]
end
end
end
end