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