i am new to the ELK stack, I want to use ELK stack to push my logs to elastic so that I can use Kibana on em. Below is the format of my custom log:
Date Time INFO - searchinfo#username#searchQuery#latitude#longitude#client_ip#responseTime
The below is an example of a log that follows the format.
2017-07-04 11:16:10 INFO - searchinfo#null#gate#0.0#0.0#180.179.209.54#598
Now I am using filebeat
to push my .log
files to logstash
and logstash would push that data into elastic.
I need help, writing up a filter
for config for logstash
that would simply split using the #
and then put data into respective fields into elastic index.
How can I do this?
Try to use grok plugin to parse your logs into structured data:
You can debug it online: