mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-14 02:07:07 +02:00
28 lines
476 B
Ruby
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
|