fluentd-ui/app/models/concerns/fluentd/setting/parser_advanced_options.rb
Kenji Okimoto 2a990fb1ad
Add Fluentd::Setting::ParserAdvancedOptions
Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
2018-09-28 10:49:22 +09:00

28 lines
476 B
Ruby

class Fluentd
module Setting
module ParserAdvancedOptions
extend ActiveSupport::Concern
def advanced_options
[
:types,
:null_value_pattern,
:null_empty_string,
:estimate_current_event,
:time_key,
:time_type,
:time_format,
:keep_time_key,
:utc,
]
end
def hidden_options
[
:localtime
]
end
end
end
end