Hi,
I have a bunch of records (representing test data) in elastic search with the following fields:
name: foo, bar, etc
outcome: passed, failed
I want to see which tests are the most consistent in a given time (or with a filter). In Kibana 6 and earlier, I was able to do the following:
Vertical bar chart
bucket: x-axis, terms, field:name, order by: term
bucket: split series, terms, field:outcome, order by: term
I got a nice chart with my tests listed left to right, with the stacked bar chart showing how many successes and how many failures each had.
In K6.2 (hosted on AWS's ESaaS, if it matters), it seems like the x-axis sort takes into account the second priority sub-aggregation even though the x-axis split is above it. As a result, my tests are no longer sorted by name, but by a mix of name and outcome.
What's strange is that it seems like the ES query and response are identical (confirmed via a diff tool), but the rendering is significantly different.
How can I get back the 6.0 and earlier behavior?
[I'm afraid I can't post screenshots as it's proprietary data]