Hi There,
I'm using 7.15.
My elastic data are records of tests. Each test has status failed or pass.
I want to visualize a table like this:
Testcase Name | # of failed tests | %of failure from all runs
I tried to use count() function for both columns:
For number of failed column I used: count(kql='testcaseStatus.keyword:Failed') which give me 0 counts (I tried to sort it descending to see top values first, but still 0).
For the second column, I want to know the percent of failures tests from all runs. I did use count again: count(kql='testcaseStatus.keyword:Failed') / count(), and here I also get 0.
What am I doing wrong?
See settings:
=================================================================