mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-11 16:57:11 +02:00
19 lines
330 B
Ruby
19 lines
330 B
Ruby
class Fluentd::Settings::OutTdController < ApplicationController
|
|
include SettingConcern
|
|
|
|
private
|
|
|
|
def target_class
|
|
Fluentd::Setting::OutTd
|
|
end
|
|
|
|
def initial_params
|
|
{
|
|
buffer_type: "file",
|
|
buffer_path: "/var/log/td-agent/buffer/td",
|
|
auto_create_table: true,
|
|
match: "td.*.*",
|
|
}
|
|
end
|
|
end
|