Class: Fluent::Plugin::SingleValueFormatter
- Includes:
- Newline::Mixin
- Defined in:
- lib/fluent/plugin/formatter_single_value.rb
Direct Known Subclasses
Constant Summary
Constants included from Newline::Mixin
Newline::Mixin::DEFAULT_NEWLINE
Constants included from Configurable
Configurable::CONFIG_TYPE_REGISTRY
Constants inherited from Formatter
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods included from Newline::Mixin
Methods included from Configurable
#config, #configure, #configure_proxy_generate, #configured_section_create, included, #initialize, lookup_type, register_type
Methods inherited from Formatter
Methods included from TimeMixin::Formatter
included, #time_formatter_create
Methods included from OwnedByMixin
Methods inherited from Base
#acquire_worker_lock, #after_shutdown, #after_shutdown?, #after_start, #after_started?, #before_shutdown, #before_shutdown?, #called_in_test?, #close, #closed?, #configure, #configured?, #context_router, #context_router=, #fluentd_worker_id, #get_lock_path, #has_router?, #initialize, #inspect, #multi_workers_ready?, #plugin_root_dir, #reloadable_plugin?, #shutdown, #shutdown?, #start, #started?, #stop, #stopped?, #string_safe_encoding, #terminate, #terminated?
Methods included from SystemConfig::Mixin
#system_config, #system_config_override
Instance Method Details
#format(tag, time, record) ⇒ Object
29 30 31 32 33 |
# File 'lib/fluent/plugin/formatter_single_value.rb', line 29 def format(tag, time, record) text = record[@message_key].to_s.dup text << @newline if @add_newline text end |