I have data in elasticsearch in the form:
{ @timestamp: Jan 27, 2020 @ 05:57:44.837, aggregate: { values: [5, 10, 20, 50, 100], counts: [0, 5, 3, 8, 16]},
{ @timestamp: Jan 27, 2020 @ 05:47:44.829, aggregate: { values: [5, 10, 20, 50, 100], counts: [13, 6, 1, 0, 11]},
I am trying to figure out how to get Kibana to graph this data in a heatmap with the x-axis containing the timestamp and the y axis containing the buckets (5, 1,0, 15, 20, 50, 100). The value would then be the sum of all values in the given timestamp range for a given bucket index.
I can generate the proper x/y axes by using 'Terms' aggregation on the Y-axes and Date-Histogram aggregation on the x-asis. However, I cannot seem to get each box in the heatmap to contain the expected values. Instead The entire column has the same values
I've tried lots of different configurations, and can't seem to get anything that works.