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



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

def decode(data)
  raise "Not implemented"
end

#encode(event) ⇒ Object



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

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