Splunk Search

Searching transactions for field/values set in the same event

abelnation
Explorer

I have records of 3 forms:

{
"event": "START|MIDDLE|END",
"wasSuccessful": true/false,
"trans_id": <int>
}

How would I query for transactions where the "MIDDLE" event was not successful. It seems to me that once you've grouped into transactions, it becomes harder to make search terms conditional on certain events in the grouping.

E.g.

transaction trans_id | search event="MIDDLE" wasSuccessful=false

would return all transactions where the MIDDLE event occurred, and some other event in the transaction was not successful.

Any thoughts? Thanks!

1 Solution

wpreston
Motivator

How about using the mvlist flag on transaction and then use eval's mvindex function to find the value of wasSuccessful for the MIDDLE phase of your transaction.

transaction trans_id mvlist=wasSuccessful | eval middleFailed=if(mvindex(wasSuccessful,1)="true","No","Yes") | search event="MIDDLE" middleFailed="Yes"

This assumes that the failure would always occur during the second event of your transaction, which matches up with START|MIDDLE|END.

Another way to handle this would be to create a "middleFailed" field before you create your transactions, then search on that field afterwards, like so:

... | eval middleFailed=event."-".wasSuccessful | transaction trans_id | search event="MIDDLE" middleFailed="MIDDLE-true"

View solution in original post

wpreston
Motivator

How about using the mvlist flag on transaction and then use eval's mvindex function to find the value of wasSuccessful for the MIDDLE phase of your transaction.

transaction trans_id mvlist=wasSuccessful | eval middleFailed=if(mvindex(wasSuccessful,1)="true","No","Yes") | search event="MIDDLE" middleFailed="Yes"

This assumes that the failure would always occur during the second event of your transaction, which matches up with START|MIDDLE|END.

Another way to handle this would be to create a "middleFailed" field before you create your transactions, then search on that field afterwards, like so:

... | eval middleFailed=event."-".wasSuccessful | transaction trans_id | search event="MIDDLE" middleFailed="MIDDLE-true"

abelnation
Explorer

Awesome, this is super helpful. mvindex, mvlist, and mvfind all seem useful for this type of problem.

The key for me, is setting mvlist=t in my transaction command to ensure my multi-value fields are ordered in the grouped transaction.

Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...