mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-08 07:17:07 +02:00
20 lines
284 B
Ruby
20 lines
284 B
Ruby
class Fluentd
|
|
module Setting
|
|
class ParserTsv
|
|
include Fluentd::Setting::Plugin
|
|
|
|
register_plugin("parser", "tsv")
|
|
|
|
def self.initial_params
|
|
{}
|
|
end
|
|
|
|
def common_options
|
|
[
|
|
:keys, :delimiter
|
|
]
|
|
end
|
|
end
|
|
end
|
|
end
|