mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-11 16:57:11 +02:00
18 lines
253 B
Ruby
18 lines
253 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
|
|
end
|
|
end
|
|
end
|