Hi Community,
when I am Running the .conf file in logstash I am getting the error
"Address already in use - bind - Address already in use", So I killed the running process and restarted the logstash. once logstash up and running fine, I ran the .conf file, then I am getting the "Manticore::ResolutionFailure error"
How solve the "manticore::ResolutionFailure error". and I am unable to get data from filebeat.
my .conf file is
input {
beats {
port => 5044
}
}
output {
elasticsearch {
hosts => ["http://10.***.***.***:9200"]
index => "%{[@metadata][beat]}-%{+YYYY.MM.dd}"
document_type => "%{[@metadata][type]}"
}
}
thanks for the Anticipation.