Filter in kibana

hello,
I want to get the selected filter based on a single element in kibana to create pie visualized Browser.

Example :
I want make this:

select state : 0, state : 1, state : 2 from myTable were host_name = "SID";

Someone can help me please.
Thank you for your help.

Hi,

in the query bar you'll want to filter the result set:

(state: 0 OR state:1 OR state:2) AND host_name: SID

In visualize you would then do a terms aggregation on state.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.