fluentd-ui/app/models/fluentd/setting/out_tdlog.rb
Kenji Okimoto a8401530ab
Use new style definition
Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
2018-05-24 18:26:17 +09:00

33 lines
592 B
Ruby

class Fluentd
module Setting
class OutTdlog
include Fluentd::Setting::Plugin
register_plugin("output", "tdlog")
def self.initial_params
{
pattern: "td.*.*",
buffer: {
"@type" => "file",
"path" => "/var/log/td-agent/buffer/td",
},
auto_create_table: true,
}
end
def common_options
[
:pattern, :apikey, :auto_create_table, :database, :table,
]
end
def hidden_options
[
:secondary
]
end
end
end
end