Organize options for filter_parser

Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
This commit is contained in:
Kenji Okimoto 2018-09-11 10:17:22 +09:00
parent feafc35d48
commit d321733e8a
No known key found for this signature in database
GPG Key ID: F9E3E329A5C5E4A1

View File

@ -7,17 +7,26 @@ class Fluentd
def self.initial_params
{
parse_type: "none",
parse: {
"0" => {
"type" => "none"
}
}
}
end
def common_options
[
:pattern,
:key_name,
]
end
def hidden_options
[]
[
:parse
]
end
end
end