When i install x-pack plugin for ES, kibana, and logstash.
Kibana work well.
But Logstash can't connect to the ES. (ES install in a remote server).
Before install x-pack, logstash work well.
My logstash output configuration:
Here is all my pipeline conf file that i use to run logstash:
# The # character at the beginning of a line indicates a comment. Use
# comments to describe your configuration.
input {
beats {
port => "5043"
}
}
# The filter part of this file is commented out to indicate that it is
# optional.
filter {
json {
source => "message"
remove_field => ["message","input_type","source","type"]
}
date {
match => [ "ActionDate", "yyyy-MM-dd HH:mm:ss" ]
}
}
output {
elasticsearch {
hosts => [ "192.168.2.61:9200" ]
user => "myuser"
password => "mypass"
flush_size => 10000
}
}
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.