Re: Micro Analysis in Kibana

2014-08-26 Thread Mungeol Heo
The question is how the micro analysis of the Kibana cloud do this without setting 'not_analyzed' to the fields? On Saturday, April 5, 2014 4:55:20 AM UTC+9, Binh Ly wrote: You'll need to set the field name to not_analyzed so that you can get a distinct value for the whole field (instead

Re: Micro Analysis in Kibana

2014-08-26 Thread Mungeol Heo
The question is how does the micro analysis of the Kibana can do this without setting 'not_analyzed' to the fields? On Saturday, April 5, 2014 4:55:20 AM UTC+9, Binh Ly wrote: You'll need to set the field name to not_analyzed so that you can get a distinct value for the whole field (instead

Re: Micro Analysis in Kibana

2014-04-04 Thread P lva
The sql query I would use would be select count(name) from table Elasticsearch terms would give number of 'John' but I'd like to know number of 'John Watson' and number of 'John Lennon'. On Thu, Apr 3, 2014 at 8:37 PM, Wang cnwangy...@gmail.com wrote: how to count how many terms in docs? I

Re: Micro Analysis in Kibana

2014-04-04 Thread Binh Ly
You'll need to set the field name to not_analyzed so that you can get a distinct value for the whole field (instead of tokenized values): { mappings: { doc: { properties: { name: { type: string, index: not_analyzed } } } } } After

Re: Micro Analysis in Kibana

2014-04-04 Thread P lva
Awesome Thanks Binh Ly On Friday, April 4, 2014 2:55:20 PM UTC-5, Binh Ly wrote: You'll need to set the field name to not_analyzed so that you can get a distinct value for the whole field (instead of tokenized values): { mappings: { doc: { properties: { name: {

Micro Analysis in Kibana

2014-04-03 Thread P lva
Hello everyone, I'm using kibana and would like to add a panel that basically counts the values in column. (Similar to micro analysis when you select the field). value 1 value 2 value 2 value 3 value 1 Result value 1 = 2 value 2 = 2 value 3 = 1 Which panel can one use to get this

Re: Micro Analysis in Kibana

2014-04-03 Thread Binh Ly
Sounds like a terms panel on that field that contains the values 1,2,3. -- You received this message because you are subscribed to the Google Groups elasticsearch group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: Micro Analysis in Kibana

2014-04-03 Thread Wang
how to count how many terms in docs? I mean , in Iva's example, how to get the result of 3 , which mean there is 3 terms? On Friday, April 4, 2014, Binh Ly binhly...@yahoo.com wrote: Sounds like a terms panel on that field that contains the values 1,2,3. -- You received this message because

Re: Micro Analysis in Kibana

2014-04-03 Thread Wang
how to count how many terms in docs? I mean , in Iva's example, how to get the result of 3 , which mean there is 3 terms? On Friday, April 4, 2014, Binh Ly binhly...@yahoo.com wrote: Sounds like a terms panel on that field that contains the values 1,2,3. -- You received this message because