fluentd-ui/app/models/fluentd/setting/buffer_memory.rb
Kenji Okimoto 9cbc616624 Support buffer section
Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
2018-06-08 10:12:55 +09:00

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