Setup Exercise
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -sudo apt-get install apt-transport-https echo "deb https://artifacts.elastic.co/packages/6.x/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-6.x.listsudo apt-get update && sudo apt-get install logstashcd /usr/share/logstash sudo bin/logstash -e 'input { stdin { } } output { stdout {} }'The stdin plugin is now waiting for input:Hello World!2017-06-20T01:22:14.405+0000 ubuntu Hello World!
Last updated