Class: Fluent::Plugin::JSONFormatter
- Defined in:
- lib/fluent/plugin/formatter_json.rb
Direct Known Subclasses
Constant Summary
Constants inherited from Formatter
Constants included from Configurable
Configurable::CONFIG_TYPE_REGISTRY
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
- #configure(conf) ⇒ Object
- #format(tag, time, record) ⇒ Object
- #format_without_nl(tag, time, record) ⇒ Object
Methods inherited from Formatter
Methods included from TimeMixin::Formatter
included, #time_formatter_create
Methods included from OwnedByMixin
Methods inherited from Base
#after_shutdown, #after_shutdown?, #after_start, #after_started?, #before_shutdown, #before_shutdown?, #close, #closed?, #configured?, #context_router, #context_router=, #fluentd_worker_id, #has_router?, #initialize, #inspect, #multi_workers_ready?, #plugin_root_dir, #shutdown, #shutdown?, #start, #started?, #stop, #stopped?, #string_safe_encoding, #terminate, #terminated?
Methods included from SystemConfig::Mixin
#system_config, #system_config_override
Methods included from Configurable
#config, #configure_proxy_generate, #configured_section_create, included, #initialize, lookup_type, register_type
Constructor Details
This class inherits a constructor from Fluent::Plugin::Base
Instance Method Details
#configure(conf) ⇒ Object
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/fluent/plugin/formatter_json.rb', line 28 def configure(conf) super begin raise LoadError unless @json_parser == 'oj' require 'oj' Oj. = Fluent::DEFAULT_OJ_OPTIONS @dump_proc = Oj.method(:dump) rescue LoadError @dump_proc = Yajl.method(:dump) end # format json is used on various highload environment, so re-define method to skip if check unless @add_newline define_singleton_method(:format, method(:format_without_nl)) end end |
#format(tag, time, record) ⇒ Object
46 47 48 |
# File 'lib/fluent/plugin/formatter_json.rb', line 46 def format(tag, time, record) "#{@dump_proc.call(record)}\n" end |
#format_without_nl(tag, time, record) ⇒ Object
50 51 52 |
# File 'lib/fluent/plugin/formatter_json.rb', line 50 def format_without_nl(tag, time, record) @dump_proc.call(record) end |