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