mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-08 15:27:08 +02:00
22 lines
339 B
Ruby
22 lines
339 B
Ruby
class Fluentd
|
|
module Setting
|
|
class FormatterOutFile
|
|
include Fluentd::Setting::Plugin
|
|
|
|
register_plugin("formatter", "out_file")
|
|
|
|
def self.initial_params
|
|
{}
|
|
end
|
|
|
|
def common_options
|
|
[
|
|
:output_time,
|
|
:output_tag,
|
|
:delimiter
|
|
]
|
|
end
|
|
end
|
|
end
|
|
end
|