I've got the following log-flow:
FileBeat -> Logstash -> SolR -> Banana
and I know that filebeat is streaming to logstash successfully, since I can log the output to terminal. For some reason, the data is not being channelled into SolR for indexing... I'm using a the solr_http plugin, and the config looks like this:
input {
beats {
port => 5044
}
}
output {
stdout { codec => rubydebug }
solr_http { solr_url => "http://localhost:8983/solr/gettingstarted" }
}
Is there something I have to configure in SolR?