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!

Modern way of developing distributed application using OTel

Recently, I had the opportunity to work on a complex microservice using Spring boot and Quarkus to develop a ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had 3 releases of new security content via the Enterprise Security ...

Archived Metrics Now Available for APAC and EMEA realms

We’re excited to announce the launch of Archived Metrics in Splunk Infrastructure Monitoring for our customers ...