Class: Fluent::Plugin::Formatter

Inherits:
Base
  • Object
show all
Includes:
OwnedByMixin, TimeMixin::Formatter
Defined in:
lib/fluent/plugin/formatter.rb

Constant Summary collapse

PARSER_TYPES =
[:text_per_line, :text, :binary]

Constants included from Configurable

Configurable::CONFIG_TYPE_REGISTRY

Instance Attribute Summary

Attributes inherited from Base

#under_plugin_development

Instance Method Summary collapse

Methods included from TimeMixin::Formatter

included, #time_formatter_create

Methods included from OwnedByMixin

#log, #owner, #owner=

Methods inherited from Base

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

Methods included from Configurable

#config, #configure, #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

#format(tag, time, record) ⇒ Object

Raises:

  • (NotImplementedError)


35
36
37
# File 'lib/fluent/plugin/formatter.rb', line 35

def format(tag, time, record)
  raise NotImplementedError, "Implement this method in child class"
end

#formatter_typeObject



31
32
33
# File 'lib/fluent/plugin/formatter.rb', line 31

def formatter_type
  :text_per_line
end