Splunk Search

Check if time is within last 3 hrs

shakSplunk
Path Finder

Hi all,

I am looking to check if there has been a event within the last 3 hrs for three different categories. 

If an event has been detected in the last 3 hours, I would like a status column that says "Registry In Sync", otherwise the status column should read "Out of Sync".  Something like the following:

 

Type

_time

Status

A

2021-08-10 09:27:07

Out of Sync

B

2021-08-23 01:24:56

Registry is in Sync

C

2021-08-19 23:25:28

Out of Sync

 

The important this is that it is categorised by the Type field. 

I appreciate any and all help!

Labels (2)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| stats latest(_time) as _time by type
| eval status=if(now()-_time<(60*60*3),"Registry is in sync","Out of sync")
0 Karma

shakSplunk
Path Finder

Thanks @ITWhisperer 

Is there any way to rename "_time" to "Last Update" without changing how the date format looks?

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

_time has a default format so if you rename it, you have to reapply the formatting, you can do this with fieldformat so it doesn't change the value of the field, just how it is displayed.

0 Karma
Get Updates on the Splunk Community!

October Community Champions: A Shoutout to Our Contributors!

As October comes to a close, we want to take a moment to celebrate the people who make the Splunk Community ...

Community Content Calendar, November Edition

Welcome to the November edition of our Community Spotlight! Each month, we dive into the Splunk Community to ...

Stay Connected: Your Guide to November Tech Talks, Office Hours, and Webinars!

What are Community Office Hours? Community Office Hours is an interactive 60-minute Zoom series where ...