Class: Fluent::Plugin::ProcWrappedFormatter

Inherits:
Formatter show all
Defined in:
lib/fluent/plugin/formatter.rb

Constant Summary

Constants inherited from Formatter

Formatter::PARSER_TYPES

Constants included from Configurable

Configurable::CONFIG_TYPE_REGISTRY

Instance Attribute Summary

Attributes inherited from Base

#under_plugin_development

Instance Method Summary collapse

Methods inherited from Formatter

#formatter_type

Methods included from TimeMixin::Formatter

included, #time_formatter_create

Methods included from OwnedByMixin

#log, #owner, #owner=

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?, #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

Methods included from Configurable

#config, #configure, #configure_proxy_generate, #configured_section_create, included, lookup_type, register_type

Constructor Details

#initialize(proc) ⇒ ProcWrappedFormatter

Returns a new instance of ProcWrappedFormatter.



41
42
43
44
# File 'lib/fluent/plugin/formatter.rb', line 41

def initialize(proc)
  super()
  @proc = proc
end

Instance Method Details

#format(tag, time, record) ⇒ Object



46
47
48
# File 'lib/fluent/plugin/formatter.rb', line 46

def format(tag, time, record)
  @proc.call(tag, time, record)
end