Splunk Search

Find Job Duration from two separate events.

saty586
Explorer

Jobs Running on daily basis.

Events like-

1) "Job_Name": "XYZ", "status":" Start"

2) "Job_Name": "XYZ", "status":" SUCCESS"

3) "Job_Name": "XYZ", "status":" Failure"

Need to calculate and display the job run time  and status on dashboard for multiple days/runs.

Below query works well for single run but for multiple run runtime is not getting calculated.

search to fetch both "job started" and "job finished" events
| eval eventType=if(searchmatch("job started"),"Start","End")
| chart values(_time) over Job_Name by eventType
| eval jobduration=End-Start

 

Labels (3)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

The transaction command can help with this

0 Karma
Get Updates on the Splunk Community!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...