mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-08 23:37:08 +02:00
22 lines
302 B
Ruby
22 lines
302 B
Ruby
class Fluentd
|
|
module Setting
|
|
class BufferMemory
|
|
include Fluentd::Setting::Plugin
|
|
|
|
register_plugin("buffer", "memory")
|
|
|
|
def self.initial_params
|
|
{}
|
|
end
|
|
|
|
def common_options
|
|
[]
|
|
end
|
|
|
|
def advanced_options
|
|
[]
|
|
end
|
|
end
|
|
end
|
|
end
|