I have incoming data that includes the city and state/country from which the data is coming.
My goal is to create a visual that can handle the city and state/country.
Can anyone suggest how in Kibana I can:
Combine 2 fields together to a new field with a comma in the middle? (example: "Frankfurt, Germany")
You can create a scripted field to join those fields together, under Management > Index Patterns > Scripted Fields. The field will look something like this:
In terms of visualizations, how you use this data depends on whether you're creating a Coordinate Map or Region Map visualization.
For a Coordinate Map, you'd have to provide lat/long data when the data is ingested. For example, if you're using Logstash to get data into ES, you could use the Geoip filter plugin.
If you're using a Region Map, you can add a vector map with custom joins, to associate something like "Frankfurt,Germany" to an area on the map. Take a look at the docs for more info.
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.