Hello,
Please help.
1. I download Logstash 2.3.1 All Plugins
2. unzip to /opt/elastic/logstash-2.3.1/
3. in /opt/elastic/logstash-2.3.1/bin add config.conf:
input {
beats {
port => 5044
}
}
output {
elasticsearch {
hosts => "srvis074.rccf.ru:9200"
manage_template => false
index => "%{[@metadata][beat]}-%{+YYYY.MM.dd}"
document_type => "%{[@metadata][type]}"
}
}
4. started the logstash:
[root@server logstash-2.3.1]# bin/logstash agent -f bin/config.conf
Settings: Default pipeline workers: 4
Pipeline main started
Questions:
- Does it is normal that I see only Pipeline main started after started the logstash?
- How I can add the logstash to autorun services?