mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-08 23:37:08 +02:00
20 lines
281 B
Ruby
20 lines
281 B
Ruby
class Fluentd
|
|
module Setting
|
|
class ParserNone
|
|
include Fluentd::Setting::Plugin
|
|
|
|
register_plugin("parser", "none")
|
|
|
|
def self.initial_params
|
|
{}
|
|
end
|
|
|
|
def common_options
|
|
[
|
|
:message_key
|
|
]
|
|
end
|
|
end
|
|
end
|
|
end
|