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