Hello
I'm quite new on using elastic search and docker.
I've used the following references:
https://elk-docker.readthedocs.io/
https://www.elastic.co/guide/en/logstash/current/plugins-inputs-sqlite.html
I have the following Docker-file:
FROM sebp/elk:662
WORKDIR ${LOGSTASH_HOME}
RUN gosu logstash bin/logstash-plugin install logstash-input-sqlite
What do I need to do to be able to read the content of my SQlite .db file that I have stored localy?
I would like to be able to access the data in Kibana, so that I can make visualization of some statistic data.
Thanks in advance for any tips and trick to get me up and running on this.