Dashboards & Visualizations

I have a table that has batch ID, start & end time of each batch. How can I get the duration i.e. runtime of each batch.

cadrija
Path Finder

I have a table that has batch ID, start & end time of each batch. How can I get the duration i.e. runtime of each batch.

cadrija_1-1639393554716.png

 

When I am running this query then the duration field is coming blank.

index="bodata" | where BEX_TSP_START!="NULL" AND BEX_TSP_END!="NULL" | where BEX_DTE_BSNS=="09-12-2021" | eval Duration=strptime(BEX_TSP_END,"%H:%M.%S")-strptime(BEX_TSP_START,"%H:%M.%S") | table BEX_NUM_JOB,Duration

Please help.

 

Labels (1)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

The "times" in your image do not contain hours which is why the strptime is failing. Do your events have the full date and time in some other field that you could use?

0 Karma

cadrija
Path Finder

@ITWhisperer Okay, got it let me check how to get the full date time.
Thank you.

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 ...