Splunk Search

Compare Dates and exclude event if it is older

Noob_splunker
Explorer

Hi,

How do I compare dates and exclude the event if it is older?

I have here my table from transaction command. I want to compare the ReportedTime to Occurtime. If it is older then NeSn will be excluded.

 

exclude.png

 

ReportedTimeNeSnOccurtime

2020-07-01 23:38

117629897

29/04/2020 12:03

 

117629923

11/06/2020 23:26

 

117629924

11/06/2020 23:26

 

117629925

11/06/2020 23:26

 

117629926

11/06/2020 23:26

 

117629927

11/06/2020 23:26

 1181066135/07/2020 21:30
 11421869314/04/2020 6:32

 

Regards,

Labels (1)
Tags (1)
0 Karma

DavidHourani
Super Champion

Hi @Noob_splunker 

What's the query you're using to build out this table ? It seems to me that most of your fields are multi-value fields.

You're probably better off making sure that each line has a single ReportedTime and Occurtime. Once you do that you can use the answer posted by Rich to compare both timestamps.

Cheers,

David

richgalloway
SplunkTrust
SplunkTrust

It may be easier to exclude the events before the transaction command. For example,

| where strptime(OccurTime, "%Y-%m-%d %H:%M:%S") < strptime(ReportedTime, "%Y-%m-%d %H:%M:%S")
| transaction ...

Date strings have to be converted to integers before they can be compared.  Hence the strptime() calls.

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

Noob_splunker
Explorer

Hi @richgalloway 

Thanks for your reply. I tried to add it before or after the transaction but it is still giving me the old dates.

Capture11.PNG

 

Regards,

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...