Hello ,
I am trying to implement ELK for my customized logs. Almost done with my limited knowledge.
Now logs are successfully parsing , storing in elasticsearch and showing in kibana.
But like to include geo location (tilemap) in kibana. Could you please suggest best options for doing this?
Logs format:
[Key]value, [Key2]value2, [key3]value3
[Key]value, [Key2]value2, [key3]value3
logstash configuration:-
input {
file{
path => "*.log"
start_position => "beginning"
}
}
filter
{
kv {
source => "message"
value_split => "]"
field_split => ","
trimkey => "["
}
output {
elasticsearch { hosts => ["127.0.0.1:9200"] }
stdout { codec => rubydebug }
}