Hi,
I want to create a table to display the results(pass rate) of some test results we send to splunk.
We send the following fields: flow, stage, protocol and success. Each flow can have any number of stages, and there can be any number of protocols. Success is a boolean that stores if the test has passed or not.
Ideally, the test results should look like this:
protocol1 protocol2 protocol3 ...
flow1 stage1 100% 90%
stage2 5% ...
stage3
flow2 stage1
stage2
flow3 stage1
stage2
stage3
stage4
...
Any ideas on how to build? Thanks
... View more