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

23 lines
341 B
Ruby

class Fluentd
module Setting
class StorageLocal
include Fluentd::Setting::Plugin
register_plugin("storage", "local")
def self.initial_params
{}
end
def common_options
[
:path,
:mode,
:dir_mode,
:pretty_print
]
end
end
end
end