Hi Community,
I have this problem about data correlation, here's the detail.
The source file is a test result summary named summary.xml, and it's not time sensitive. Splunk will parse the file to some events like event1,2,3,etc. The test info is in event 1 and results are in even 2,3,4. My goal is to count the results of all tests under the same info. I don't know how to link these info.
What kind of SPL search I could use?
For example:
Summary1.xml:
event1
test info:
alpha
event2
Pass
event3
Fail
event4
Fail
Summary2.xml:
event1
test info:
beta
event2
Pass
event3
Pass
event4
Pass
The results I expected:
Test info
results
alpha
pass:1, failed:2
beta
pass: 3, failed:0
... View more