Logstash Configuration Method
intput {}
filter {}
output { output1 {}}
Logstash Output Plugins with Most Common Output Types
output { csv { fields => ["title", "user", "@timestamp"] path => "logs/output.csv" # exmpale of dynamic file name: "output-%{+YYYY-MM-dd}.csv" }}
Logstash Filter Plugins with Most Common Filtering Methods
filter { csv { column => ["col1","col2"] column => {"col3" => "integer", "col4"=>"boolean"} type => "syslog"…
Logstash Input Plugins with Most Common Input Types
input { elasticsearch { hosts => "localhost" index => "blogs" query => '{"localhost":{"match_all":{}}}' type => "my-elasticsearch" }}
Learn about Logstash Concenpts and Components: Inputs plugins, Filter plugins, Output plugins
How to Install Logstash on Ubuntu 18.04