mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-10 00:07:08 +02:00
14 lines
203 B
Ruby
14 lines
203 B
Ruby
class Fluentd
|
|
module Setting
|
|
module ParserNone
|
|
include Fluentd::Setting::Plugin
|
|
|
|
register_plugin("parser", "none")
|
|
|
|
def self.initial_params
|
|
{}
|
|
end
|
|
end
|
|
end
|
|
end
|