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