mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-09 15:57:05 +02:00
14 lines
208 B
Ruby
14 lines
208 B
Ruby
class Fluentd
|
|
module Setting
|
|
class FormatterJson
|
|
include Fluentd::Setting::Plugin
|
|
|
|
register_plugin("formatter", "json")
|
|
|
|
def self.initial_params
|
|
{}
|
|
end
|
|
end
|
|
end
|
|
end
|