Dashboards & Visualizations

Diff based on field data with count and drilldown to specific events

rangarbus
Path Finder

Hey 👋 ,

I have a usecase where i need to take a difference between events and report the ones which are missing. 

Example Events (each line is an event). 

txId will be identifier field which will be sent with type "R", "D" or "F"

Here in this case, i need to identify the txId for which i have "R" but missing "D" or "F"

{ "txId" : "0001", "type": "R"}

{ "txId" : "0001", "type": "F"}

{ "txId" : "0002", "type": "R"}

{ "txId" : "0003", "type": "R"}

{ "txId" : "0003", "type": "D"}

In the above sample events, txId = 0002 is the one missing D or F type.

I need to count such events & show in a panel as well as drill-down to those specific R events.

Additional challenge is there will be more than 3 million "R" events and corresponding "D" or "F" events.

Can you please help on this diff ?

Labels (4)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| makeresults 
| eval _raw="{ \"txId\" : \"0001\", \"type\": \"R\"}|{ \"txId\" : \"0001\", \"type\": \"F\"}|{ \"txId\" : \"0002\", \"type\": \"R\"}|{ \"txId\" : \"0003\", \"type\": \"R\"}|{ \"txId\" : \"0003\", \"type\": \"D\"}"
| eval events=split(_raw,"|")
| mvexpand events
| table events


| spath input=events
| stats dc(type) as count by txId
| where count = 1

In your drilldown, pass the value of txId to the search in the drilldown panel

0 Karma
Get Updates on the Splunk Community!

.conf25 Community Recap

Hello Splunkers, And just like that, .conf25 is in the books! What an incredible few days — full of learning, ...

Splunk App Developers | .conf25 Recap & What’s Next

If you stopped by the Builder Bar at .conf25 this year, thank you! The retro tech beer garden vibes were ...

Congratulations to the 2025-2026 SplunkTrust!

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