fluentd-ui/app/controllers/fluentd/settings/out_tdlog_controller.rb
Kenji Okimoto 1bde0bae1c Rename out_td to out_tdlog
Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
2018-05-24 18:35:29 +09:00

19 lines
336 B
Ruby

class Fluentd::Settings::OutTdlogController < ApplicationController
include SettingConcern
private
def target_class
Fluentd::Setting::OutTdlog
end
def initial_params
{
buffer_type: "file",
buffer_path: "/var/log/td-agent/buffer/td",
auto_create_table: true,
match: "td.*.*",
}
end
end