Class: LogStash::Codecs::Dots

Inherits:
Base
  • Object
show all
Defined in:
lib/logstash/codecs/dots.rb

Instance Method Summary collapse

Instance Method Details

#decode(data) ⇒ Object



8
9
10
# File 'lib/logstash/codecs/dots.rb', line 8

def decode(data)
  raise "Not implemented"
end

#encode(event) ⇒ Object



13
14
15
# File 'lib/logstash/codecs/dots.rb', line 13

def encode(event)
  @on_event.call(event, ".")
end