class LogStash::Codecs::Base
This input plugin enables Logstash to receive events from the www.elastic.co/products/beats[Elastic Beats] framework.
Public Instance Methods
accept(listener)
click to toggle source
# File lib/logstash/inputs/beats.rb, line 30 def accept(listener) decode(listener.data) do |event| listener.process_event(event) end end
auto_flush(*)
click to toggle source
# File lib/logstash/inputs/beats.rb, line 37 def auto_flush(*) end