fluentd-ui/app/models/fluentd/setting/parser_regexp.rb
Kenji Okimoto adc128487f
Define options for parser_regexp
Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
2018-06-07 17:25:07 +09:00

27 lines
384 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
[
:ignorecase,
:multiline
]
end
end
end
end