I am quite new to both Logstash and elasticsearch and as the title suggested i have no idea why my data is not being imported into elasticsearch anyway here is my logstash config file
input {
couchdb_changes {
db => test
host => "localhost"
port => 5984
codec => "json"
}
}
output {
elasticsearch {
host => "localhost"
index => "Krakkan"
protocol => "http"
host => "localhost"
port => 9200
codec => "json"
}
}
Things are happening in your CouchDB database, right, so that there are events to pick up?
For debugging purposes I strongly recommend not hooking up ES right away. Use a stdout { codec => rubydebug } output first until you know you're getting the messages you want.
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.