Getting Data In

How do I do mathematical operations (subtraction) with two timestamps in the same event?

hmdoan
Explorer

I've been trying to:
1) convert two date stamps into epoch (timestamp and lastmodified). The lastmodified stamp will be more recent.
2) calculate if there is greater than a 7 day difference between the two
3) then display these events.

My time stamps are all in the %d/%m/%Y %H:%M:%S format.

index=netcool_daily name="Auto Ticket" | eval starttime=strptime(timestamp,"%m/%d/%Y %H:%M:%S") | eval endtime=strptime(lastmodified,"%m/%d/%Y %H:%M:%S") | eval difference=(endtime - starttime)/86400 | search difference > 7

I get nothing returned.

Tags (2)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

You say your timestamps are in "d/m/Y" format, but your strptime commands are using "m/d/Y" format. Which is the correct format?

---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

You say your timestamps are in "d/m/Y" format, but your strptime commands are using "m/d/Y" format. Which is the correct format?

---
If this reply helps you, Karma would be appreciated.

hmdoan
Explorer

Thanks! That was it. I had the wrong date format. Once I fixed that, the search worked great. Typo on my part.

0 Karma

woodcock
Esteemed Legend

Everything looks OK so the problem has to be that either (or both) starttime or endtime is not created and that is surely because either timestamp or lastmodified does not exist. Try this search and whichever field does not exist, make it exists (probably just fix a typo):

index=netcool_daily name="Auto Ticket" | eval starttime=strptime(timestamp,"%m/%d/%Y %H:%M:%S") | eval endtime=strptime(lastmodified,"%m/%d/%Y %H:%M:%S") | table timestamp lastmodified starttime endtime

hmdoan
Explorer

My stupid error:

The format is in "%Y/%m/%d %H:%M:%S"

0 Karma

richgalloway
SplunkTrust
SplunkTrust

So when you change your strptime commands to strptime(timestamp, "%Y/%m/%d %H:%M:%S") and strptime(lastmodified, "%Y/%m/%d %H:%M:%S") does it work?

---
If this reply helps you, Karma would be appreciated.
0 Karma

hmdoan
Explorer

Yes - once i changed my time formatting to be consistent, it worked. The dangers of cut-n-paste!!! 🙂

0 Karma

richgalloway
SplunkTrust
SplunkTrust

You say your timestamps are in "d/m/Y" format, but your strptime commands are using "m/d/Y" format. Which is the correct format?

---
If this reply helps you, Karma would be appreciated.
0 Karma

richgalloway
SplunkTrust
SplunkTrust

So when you change your strptime commands to strptime(timestamp, "%Y/%m/%d %H:%M:%S") and strptime(lastmodified, "%Y/%m/%d %H:%M:%S") does it work?

---
If this reply helps you, Karma would be appreciated.
0 Karma

richgalloway
SplunkTrust
SplunkTrust

So when you change your strptime commands to strptime(timestamp, "%Y/%m/%d %H:%M:%S") and strptime(lastmodified, "%Y/%m/%d %H:%M:%S") does it work?

---
If this reply helps you, Karma would be appreciated.
0 Karma

hmdoan
Explorer

Sorry. The format is Year/Month/Day H:M:S

0 Karma
Get Updates on the Splunk Community!

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...

New! Splunk Observability Search Enhancements for Splunk APM Services/Traces and ...

Regardless of where you are in Splunk Observability, you can search for relevant APM targets including service ...

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...