Hello,
I'm using Kibana 7.13.2.
This is my data -
POST tsvb/_bulk?refresh
{"index":{}}
{ "date":"2021-07-14T00:03:13.679+02:00","words":["rain", "thunder"],"type":"monsoon"}
{"index":{}}
{"date":"2021-07-14T00:03:13.679+02:00","words":["sun", "heat"],"type":"summer"}
{"index":{}}
{"date":"2021-07-14T00:03:13.679+02:00","words":["cold", "snow"],"type":"winter"}
{"index":{}}
{"date":"2021-07-14T00:03:13.679+02:00","words":["cold", "umberella"],"type":"monsoon"}
I'm tying to create a TSVB table visualization with the above data. I'm expecting the data to look like this - (The below image was created using the "Table aggregation" visualization and I wanted to create a similar table using TVSB since I want to use the "last value" time range feature of TVSB on this table)
But the Tophits aggs of TSVB isn't working as expected, these are my setting and results :
I don't see any values under the "type" column..
Can I please get some help with this? Am I going wrong anywhere?