Dear Team,
I am using Elasticsearch V2.2.0 and Kibana 4.4.2. One of my data sources has a field called "promo_name". This field is a string type and some records contain spaces. I have observed when I create visualizations that the records when summarized show on multiple lines. Is this expected?
For example:
Promo Name = 'Example dot com'.
Total Megabytes = 4Mb
Visual will show:
Promo Name = 'Example'
Total Megabytes = 4Mb
Promo Name = 'dot'
Total Megabytes = 4Mb
Promo Name = 'com'
Total Megabytes = 4Mb
Data is loaded via logstash. Maybe I need to replace the space with "_" or similar characters?
Wayne