mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-12 09:17:05 +02:00
17 lines
254 B
Ruby
17 lines
254 B
Ruby
class Fluentd
|
|
module Setting
|
|
class InSyslog
|
|
include ActiveModel::Model
|
|
include Common
|
|
|
|
KEYS = [
|
|
:port, :bind, :tag, :types
|
|
].freeze
|
|
|
|
attr_accessor(*KEYS)
|
|
|
|
validates :tag, presence: true
|
|
end
|
|
end
|
|
end
|