Hello guys,
In a Kibana dashboard, I have a table like this:
| Object.name |Count of unique Object.status |
| A | 2 |
| B | 1 |
with, in the index two times the object A like this:
{ "name":"A", "status":"status1" }
{ "name":"A", "status":"status2" }
and B
{ "name":"B", "status":"status1" }
I want the table to only display lines where the second column is 2 or higher. The table should only show A.
Any idea?