Re: How to process "Lat" & "Long" fields using default Logstash config and mapping to use in Kibana 4 tile map

2015-04-28 Thread Rodger Moore
Merci beaucoup, even in English! Nice blog, this helps a lot :) Cheers Op dinsdag 28 april 2015 20:45:12 UTC+2 schreef David Pilato: > > Lucky you! I just blogged about it :) > > http://david.pilato.fr/blog/2015/04/28/exploring-capitaine-train-dataset/ > > -- > David ;-) > Twitter : @dadoonet /

Re: How to process "Lat" & "Long" fields using default Logstash config and mapping to use in Kibana 4 tile map

2015-04-28 Thread David Pilato
Lucky you! I just blogged about it :) http://david.pilato.fr/blog/2015/04/28/exploring-capitaine-train-dataset/ -- David ;-) Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs > Le 28 avr. 2015 à 18:07, Rodger Moore a écrit : > > Hi David, > > Thanks again for your answer. For some reason

Re: How to process "Lat" & "Long" fields using default Logstash config and mapping to use in Kibana 4 tile map

2015-04-28 Thread Rodger Moore
Hi David, Thanks again for your answer. For some reason I am doing something wrong and its driving me nuts. I've tried your method but the tile map is showing me no results whatsoever. How did you define your template in Elasticsearch for this "location" field? Thanks, Rodger Op zondag 26 a

Re: How to process "Lat" & "Long" fields using default Logstash config and mapping to use in Kibana 4 tile map

2015-04-26 Thread David Pilato
It's not an issue IMO but just a default configuration. FYI here is a sample config file I just used to parse some CSV data: input { stdin {} } filter { csv { separator => ";" columns => [ "id","name","slug","uic","uic8_sncf","longitude","latitude", "parent_station_id","is_cit

Re: How to process "Lat" & "Long" fields using default Logstash config and mapping to use in Kibana 4 tile map

2015-04-26 Thread Rodger Moore
Hi David, Thanks but I'm struggling getting this done. I tried different things. For example: csv { columns => ["NAME","DATE","LAT","LONG"] separator => ";" add_tag => ["csv_parse_successfull"] } date { match => ["DATE", "dd-MM- HH:mm:ss"]

Re: How to process "Lat" & "Long" fields using default Logstash config and mapping to use in Kibana 4 tile map

2015-04-25 Thread David Pilato
You need to use the mutate filter and move your fields into a "location" one. -- David ;-) Twitter : @dadoonet / @elasticsearchfr / @scrutmydocs > Le 25 avr. 2015 à 22:13, Rodger Moore a écrit : > > Hi there! > > My question is fairly simple but I'm having trouble finding a solution. I > have

How to process "Lat" & "Long" fields using default Logstash config and mapping to use in Kibana 4 tile map

2015-04-25 Thread Rodger Moore
Hi there! My question is fairly simple but I'm having trouble finding a solution. I have a csv file containing Lat and Lon coordinates in separate fields named "Latitude" and "Longitude". Most of the info I found on the net is focussed on GeoIP (which is great functionality btw) but besides som