Hello,
I am having below data in DB
insert into FOCUSTRPF(id,FOCUSTIER) VALUES(1,'4-Low');
insert into FOCUSTRPF(id,FOCUSTIER) VALUES(2,'4-Low');
insert into FOCUSTRPF(id,FOCUSTIER) VALUES(3,'5-Very Low');
insert into FOCUSTRPF(id,FOCUSTIER) VALUES(4,'1-Urgent');
insert into FOCUSTRPF(id,FOCUSTIER) VALUES(5,'2-High');
insert into FOCUSTRPF(id,FOCUSTIER) VALUES(6,'3-Medium');
This data is getting loaded into ES using logstash-input-jdbc plugin.
Now in Kibana4.1.1 - Discover page i see correct data with 2 columns.
but when I go to Visualize page, I notice that column-2 data mentioned above is split into multiple tokens.
How to avoid that. Is it a bug?