Splunk Search

time difference between two fields

selvam_sekar
Path Finder

Hi,

I have two fields, where time zone seems to be different.. please could you help me to get difference ? 

itime= 2024-02-22 20:56:02,185

stime=2024-02-23T01:56:02Z

I tried the below but it always gives around 5 hrs delay..

SPL:

| eval itime=strptime(Initial_Time,"%Y-%m-%d %H:%M:%S,%3N")
| eval stime=strptime(s_time,"%Y-%m-%dT%H:%M:%S")
| eval difference = abs(itime - stime)
| eval time_difference=tostring(difference, "duration")
Labels (1)
Tags (1)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

Have you tried incorporating the time zone in the strptime call?

| eval stime=strptime(s_time,"%Y-%m-%dT%H:%M:%S%Z")

 

---
If this reply helps you, Karma would be appreciated.
0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...