Getting Data In

creating a time delta field

NeharikaVats
Loves-to-Learn

The requirement is to create a time delta field which has the value of time difference between the 2 time fields. Basically the difference between start time & receive time should populate under new field name called timediff.

 

I have created eval conditions, can anyone help me with a props config based on that.

index=XXX sourcetype IN(xx:xxx, xxx:xxxxx)
| eval indextime=strftime(_indextime,"%Y-%m-%d %H:%M:%S")
| eval it = strptime(start_time, "%Y/%m/%d %H:%M:%S")
| eval ot = strptime(receive_time, "%Y/%m/%d %H:%M:%S")
| eval diff = tostring((ot - it), "duration")
| table start_time, receive_time,indextime,_time, diff
Labels (1)
0 Karma

bowesmana
SplunkTrust
SplunkTrust

You should be able to create a calculated field called diff with the following value

tostring(strptime(receive_time, "%Y/%m/%d %H:%M:%S") - strptime(start_time, "%Y/%m/%d %H:%M:%S"), "duration")

 

NeharikaVats
Loves-to-Learn

what if i want to get the difference between _indextime & start_time, i am trying with this :

tostring(strftime(_indextime, "%Y/%m/%d %H:%M:%S") - strptime(start_time, "%Y/%m/%d %H:%M:%S"), "duration")

but getting error like- Encountered the following error while trying to save: Operator requires numeric types

My search is:

index=xxx_xxx_firewall sourcetype IN(xxx:xxxxx, xxx:xxxxx)
| eval indextime=strftime(_indextime,"%Y-%m-%d %H:%M:%S")
| eval it = strptime(start_time, "%Y/%m/%d %H:%M:%S")
| eval ot = strptime(receive_time, "%Y/%m/%d %H:%M:%S")
| eval diff = tostring((ot - it), "duration")
| table start_time, receive_time,indextime,_time, diff

 

Can you please help if you have some insights on this.

Tags (1)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

_indextime is already an epoch time - try this

tostring(_indextime - strptime(start_time, "%Y/%m/%d %H:%M:%S"), "duration")

 

0 Karma

PickleRick
SplunkTrust
SplunkTrust

My two cents - as I always say - leave the time related values as numbers until you need to finally render them to string for presentation. That way it's easier to manipulate them  (sort, offset and so on).

So I'd do just

_indextime - strptime(start_time, "%Y/%m/%d %H:%M:%S")
0 Karma
Get Updates on the Splunk Community!

.conf24 | Day 0

Hello Splunk Community! My name is Chris, and I'm based in Canberra, Australia's capital, and I travelled for ...

Enhance Security Visibility with Splunk Enterprise Security 7.1 through Threat ...

(view in My Videos)Struggling with alert fatigue, lack of context, and prioritization around security ...

Troubleshooting the OpenTelemetry Collector

  In this tech talk, you’ll learn how to troubleshoot the OpenTelemetry collector - from checking the ...