Class: LogStash::Outputs::Stdout

Inherits:
Base
  • Object
show all
Defined in:
lib/logstash/outputs/stdout.rb

Instance Attribute Summary

Attributes inherited from Base

#logger

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from LogStash::Outputs::Base

Instance Method Details

#receive(event) ⇒ Object



11
12
13
# File 'lib/logstash/outputs/stdout.rb', line 11

def receive(event)
  puts event
end

#registerObject



6
7
8
# File 'lib/logstash/outputs/stdout.rb', line 6

def register
  # nothing to do
end