fluentd-ui/app/models/fluentd/setting/parser_json.rb
Kenji Okimoto ed3ede60fb
Fix typos
Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
2018-06-06 18:04:46 +09:00

16 lines
239 B
Ruby

class Fluentd
module Setting
class ParserJson
include Fluentd::Setting::Plugin
register_plugin("parser", "json")
def self.initial_params
{
json_parser: "oj"
}
end
end
end
end