addyk
March 20, 2017, 5:20pm
2
Also want to point out that these two users are having similar issue (not being able to send data from logstash to elastic)
Hi,
im trying to add data in elastic with logstash and data is input from kafka
this is the simple config im using on logstash server in conf file /etc/logstash/conf.d/1-config.conf
input{
kafka{
bootstrap_servers => "dummykafka:9092"
topics => ["dummy.kafka.topic"]
}
}
output{
elasticsearch{
index => "test.winlogbeat.eventlogs-%{+YYYY.MM.dd}"
hosts => ["elasticdatanode:50000"]
user => "AdminID"
password => "dummypassword"
}
}
i restart the logstash server with this command sud…
Im using logstash 1.4.2 and ...
I have the next logstash.conf
input {
udp {
port => 9991
codec => netflow {
definitions => "/home/profucom/logstash-1.4.2/lib/logstash/codecs/netflow/netflow.yaml"
versions => [5]
}
}
}
output {
stdout { codec => rubydebug }
elasticsearch {
index => logstash-%{+YYYY.MM.dd}
host => "localhost"
}
}
When i run "./logstash -f logstash.conf works fine, i get all information from my 2 routers, but im not sure if index => logstash-%{+Y…
Edit: To clarify, I do not have the password error like that mentioned in Pipeline aborted due to error in password field logstash