skip to content
Alvin Lucillo

Logstash stdout

/ 1 min read

💻 Tech

In Logstash, if you want to display the logs to standard output instead of shipping logs to another system like Elastic, use the stdout output plugin:

    output {
      stdout { codec => rubydebug }
    }