Hi,
I want to filter a specific visualization : a vertical bar chart in my Kibana Dashboard. I don't want to use Control visualization because the filter should be only applied on this bar chart.
Example : I created a bar chart with some events :
{"name": X, "age": 22, is_ok: True}
{"name": Y, "age": 36, is_ok: True}
{"name": Z, "age":24, is_ok: False}
I need to print only value with field is_ok = True in the bar chart.
Any idea ?
Thanks a lot,
Aurelien