mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-08 15:27:08 +02:00
27 lines
393 B
Ruby
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
|