input { stdin { # A type is a label applied to an event. It is used later with filters # to restrict what filters are run against each event. type => "human" } } output { # Print each event to stdout. stdout { # Enabling 'rubydebug' codec on the stdout output will make logstash # pretty-print the entire event as something similar to a JSON representation. codec => rubydebug } # You can have multiple outputs. All events generally to all outputs. # Output events to elasticsearch elasticsearch { # Setting 'embedded' will run a real elasticsearch server inside logstash. # This option below saves you from having to run a separate process just # for ElasticSearch, so you can get started quicker! embedded => true } }