mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-10 08:17:06 +02:00
28 lines
406 B
Ruby
28 lines
406 B
Ruby
class Fluentd
|
|
module Setting
|
|
class BufferFile
|
|
include Fluentd::Setting::Plugin
|
|
|
|
register_plugin("buffer", "file")
|
|
|
|
def self.initial_params
|
|
{
|
|
path: ""
|
|
}
|
|
end
|
|
|
|
def common_options
|
|
[
|
|
:path,
|
|
:file_permission,
|
|
:dir_permission
|
|
]
|
|
end
|
|
|
|
def advanced_options
|
|
[]
|
|
end
|
|
end
|
|
end
|
|
end
|