Hi,
So I have mapped some ID to [geoip][location][lon] and [geoip][location][lat] and the data is showing up well, but the Coordinate Map Visualization is still not showing any data.
Is the visualization reading more data than long and lat? If then what would they be? Please advise...
filter:
translate {
field => "DomicileTransit"
dictionary_path => '/etc/logstash/config/CustomerConnect_mapping.yaml'
}
mutate {
gsub => [ "translation", " ", "" ]
split => {"translation" => ","}
add_field => ["[geoip][location][lat]","%{[translation][0]}"]
add_field => ["[geoip][location][lon]","%{[translation][1]}"]
convert => { "[geoip][location][lat]" => "float" }
convert => { "[geoip][location][lon]" => "float" }
}