sagarkarira
9/21/2016 - 11:20 AM

Elastic Search, Logstash, Kibana and Filebeats (ELK Stack )

Elastic Search, Logstash, Kibana and Filebeats (ELK Stack )

Adding alias of logstash to the .bashrc

alias logstash='bash /opt/logstash/bin/logstash'

Basic logstash pipeline will output what is inputted to the command line

logstash -e 'input { stdin { } } output { stdout {} }'

Testing config files

  • logstash --configtest -f first-pipeline.conf
  • sudo service logstash configtest