Class: LogStash::Codecs::Dots
- Defined in:
- lib/logstash/codecs/dots.rb
Constant Summary
Constants included from LogStash::Config::Mixin
LogStash::Config::Mixin::CONFIGSORT
Instance Attribute Summary
Attributes included from LogStash::Config::Mixin
Attributes inherited from Plugin
Instance Method Summary collapse
Methods inherited from Base
#clone, #flush, #initialize, #on_event, #teardown
Methods included from LogStash::Config::Mixin
Methods inherited from Plugin
#eql?, #finished, #finished?, #hash, #initialize, #inspect, lookup, #reload, #running?, #shutdown, #teardown, #terminating?, #to_s
Constructor Details
This class inherits a constructor from LogStash::Codecs::Base
Instance Method Details
#decode(data) ⇒ Object
9 10 11 |
# File 'lib/logstash/codecs/dots.rb', line 9 def decode(data) raise "Not implemented" end |
#encode(data) ⇒ Object
14 15 16 |
# File 'lib/logstash/codecs/dots.rb', line 14 def encode(data) @on_event.call(".") end |