Hello,
I am creating a kibana visualization table based on few test run results in my elasticsearch index.
Following is the composition of value hits.
Following is the output table having the results captured
The filters in table i've applied based on Result & Accuracy columns. What i want to do is only show the coloumns which shows average 100% accuracy.
I've tried filtering out the fail results but that removes them from calculation and shows everything as 100% since only pass results comes into calculation.
Is there a way to achieve this with current data ?
Thanks
Reference Calculations:
Columns:
- Pass Accuracy --> Average of Accuracy Column in index with value format as Percent.
- Fail Runs --> Count of Records with filter by "Result = Fail".
- Pass Runs --> Count of Records with filter by "Result = Pass".
- Total Runs --> Count of Records.
Rows: - Test Name --> Top Values of Test Name
- Test Suite --> Top Values of Test Suite


