mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-08 15:27:08 +02:00
20 lines
291 B
Ruby
20 lines
291 B
Ruby
class Fluentd
|
|
module Setting
|
|
class FormatterStdout
|
|
include Fluentd::Setting::Plugin
|
|
|
|
register_plugin("formatter", "stdout")
|
|
|
|
def self.initial_params
|
|
{}
|
|
end
|
|
|
|
def common_options
|
|
[
|
|
:output_type
|
|
]
|
|
end
|
|
end
|
|
end
|
|
end
|