Splunk Search

Calculate difference of fields where certain field value exists

x213217
Explorer

For each Digit I have below (Digit 0,2,3,4,5,7,8) I want to calculate the difference in time between the TXN endtime and the FW endTime for that digit. How can i group this new calculated one value for each digit?

index=
jobName = (all job names here)
| lookup digit_processing.csv jobName as jobName output Digit as Digit
| eval endTimeEpoch = strptime(endTime, "%Y-%m-%d %H:%M:%S") 
| table jobName Digit endTime endTimeEpoch status 
| sort -Digit

alt text

Tags (1)
0 Karma
1 Solution

nickhills
Ultra Champion

extract the "digit" value
|rex field=Digit "Digit (?P<digitValue>\d)"

rewrite _time to be endTimeEpoch
|eval _time = endTimeEpoch

use transaction to group them
|transaction digitValue startswith=*FW endswith=*TXN

retable
| table jobName Digit digitValue endTime endTimeEpoch status duration

So in full:

index=
jobName = (all job names here)
| lookup digit_processing.csv jobName as jobName output Digit as Digit
| eval endTimeEpoch = strptime(endTime, "%Y-%m-%d %H:%M:%S") 
| rex field=Digit "Digit (?P<digitValue>\d)"
| eval _time = endTimeEpoch
| transaction digitValue startswith=*FW endswith=*TXN
| table jobName Digit digitValue endTime endTimeEpoch status duration
| sort -Digit
If my comment helps, please give it a thumbs up!

View solution in original post

0 Karma

nickhills
Ultra Champion

extract the "digit" value
|rex field=Digit "Digit (?P<digitValue>\d)"

rewrite _time to be endTimeEpoch
|eval _time = endTimeEpoch

use transaction to group them
|transaction digitValue startswith=*FW endswith=*TXN

retable
| table jobName Digit digitValue endTime endTimeEpoch status duration

So in full:

index=
jobName = (all job names here)
| lookup digit_processing.csv jobName as jobName output Digit as Digit
| eval endTimeEpoch = strptime(endTime, "%Y-%m-%d %H:%M:%S") 
| rex field=Digit "Digit (?P<digitValue>\d)"
| eval _time = endTimeEpoch
| transaction digitValue startswith=*FW endswith=*TXN
| table jobName Digit digitValue endTime endTimeEpoch status duration
| sort -Digit
If my comment helps, please give it a thumbs up!
0 Karma

x213217
Explorer

Thank you!

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...