Hi there,
I loaded a index like this on Elasticsearch:
ID state timestamp
1234 A 10:10
3456 B 10:14
4635 B 10:54
Now what I'm trying to do is a histogram visualization to show how many IDs have 10 state = A, how many have 20 state = A, etc.
In other words, a histogram displaying this table here:
bucket (X-axis) no. of occurences of state A per id (Y-axis)
10 342
20 463
... ...
Is this possible natively with Kibana?