Class: LogStash::Outputs::Stdout
- Inherits:
-
Base
- Object
- Base
- LogStash::Outputs::Stdout
- Defined in:
- lib/logstash/outputs/stdout.rb
Overview
A simple output which prints to the STDOUT of the shell running Logstash. This output can be quite convenient when debugging plugin configurations, by allowing instant access to the event data after it has passed through the inputs and filters.
For example, the following output configuration, in conjunction with the Logstash ‘-e` command-line flag, will allow you to see the results of your event pipeline for quick iteration.
- source,ruby
-
output
stdout {
}
Useful codecs include:
‘plain`: outputs event data with no delimiting between events
- source,ruby
-
output {
stdout { codec => plain }
}
‘json`: outputs event data in structured JSON format
- source,ruby
-
output {
stdout { codec => json }
}
Instance Method Summary collapse
- #multi_receive_encoded(encoded) ⇒ Object
-
#register ⇒ Object
must be overriden.
Instance Method Details
#multi_receive_encoded(encoded) ⇒ Object
41 42 43 44 45 |
# File 'lib/logstash/outputs/stdout.rb', line 41 def multi_receive_encoded(encoded) encoded.each do |event,data| $stdout.write(data) end end |
#register ⇒ Object
must be overriden
39 |
# File 'lib/logstash/outputs/stdout.rb', line 39 def register; end |