mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-08 15:27:08 +02:00
23 lines
341 B
Ruby
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
|