mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-12 01:07:09 +02:00
17 lines
246 B
Ruby
17 lines
246 B
Ruby
class Fluentd::Settings::InSyslogController < ApplicationController
|
|
include SettingConcern
|
|
|
|
private
|
|
|
|
def target_class
|
|
Fluentd::Setting::InSyslog
|
|
end
|
|
|
|
def initial_params
|
|
{
|
|
bind: "0.0.0.0",
|
|
port: 5140,
|
|
}
|
|
end
|
|
end
|