mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-11 16:57:11 +02:00
19 lines
296 B
Ruby
19 lines
296 B
Ruby
class Fluentd::Settings::OutMongoController < ApplicationController
|
|
include SettingConcern
|
|
|
|
private
|
|
|
|
def target_class
|
|
Fluentd::Setting::OutMongo
|
|
end
|
|
|
|
def initial_params
|
|
{
|
|
host: "127.0.0.1",
|
|
port: 27017,
|
|
capped: true,
|
|
capped_size: "100m",
|
|
}
|
|
end
|
|
end
|