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