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