Splunk Enterprise Security

ignore timestamp greater than 2 days

arikanter
Observer

two time fields per event:
_time (default eventfield for Splunk)
occurtime (timestamp within body of event)

I only want to show events where the field in the body of the event: "occurtime" is not more than two days older than "_time".

I have done the following to convert occurtime to epoch time:
eval occur=strptime(occurtime,"%Y-%m-%dT%H:%M:%S")

example current output:

_time: 2020-04-23 05:07:03.151

occurtime: 2020-02-24T17:42:38.572Z

occur: 1582594958.000000

I just need to figure out how the < funcitons with time.

Thank you!

0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

The output of strptime is an integer and the value of _time is also an integer (it's displayed as text automatically - a helpful, but confusing feature) so comparing _time to occur is the same as comparing any other pair of integers: occur < _time, for example.

Use relative_time to factor in the two days. | where occur > relative_time(_time, "-2d") keeps events where occur is newer than two days before _time.

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

View solution in original post

0 Karma

richgalloway
SplunkTrust
SplunkTrust

The output of strptime is an integer and the value of _time is also an integer (it's displayed as text automatically - a helpful, but confusing feature) so comparing _time to occur is the same as comparing any other pair of integers: occur < _time, for example.

Use relative_time to factor in the two days. | where occur > relative_time(_time, "-2d") keeps events where occur is newer than two days before _time.

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

arikanter
Observer

Rich-- thank you so much -- I did not know about "relative_time" . That was so helpful, and what you provided was exactly what I needed. 🙂

0 Karma
Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Dynamic formatting from XML events

This challenge was first posted on Slack #puzzles channelFor a previous puzzle, I needed a set of fixed-length ...

Your Guide to Splunk Digital Experience Monitoring

A flawless digital experience isn't just an advantage, it's key to customer loyalty and business success. But ...

Data Management Digest – November 2025

  Welcome to the inaugural edition of Data Management Digest! As your trusted partner in data innovation, the ...