Splunk Search

Time duration filter

jerinvarghese
Communicator

Hi All,

 

Need help in getting the data for those Downtime > 15 mins. below is the query am using.

 

 

index=opennms "uei.opennms.org/nodes/nodeUp" OR "uei.opennms.org/nodes/nodeDown"
| fieldformat Time=strftime(Time,"%Y-%m-%d %l:%M:%S %p")
| sort- Time
| eval Downtime = tostring(now() - Time, "duration")
| rex field=Downtime "(?P<Downtime>[^.]+)"
| table Hostname Status Classification "Site Code", sitename, Time Downtime

 

 

 

output: 

Device nameDownBronzeLHCLuanda2020-08-05 2:02:40 PM00:14:45

 

Labels (3)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

OK.  I thought that might be the case, but it wasn't stated.

The clauses you tried won't work because they're comparing strings to integers.  You must compare numbers to numbers.

index=opennms "uei.opennms.org/nodes/nodeUp" OR "uei.opennms.org/nodes/nodeDown"
| fieldformat Time=strftime(Time,"%Y-%m-%d %l:%M:%S %p")
| sort- Time
| eval Downtime = now() - Time
| where Downtime > 900
| fieldformat Downtime = tostring(Downtime, "duration")
| rex field=Downtime "(?P<Downtime>[^.]+)"
| table Hostname Status Classification "Site Code", sitename, Time Downtime
---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust
You have a search and you have results. What is the problem?
---
If this reply helps you, Karma would be appreciated.
0 Karma

jerinvarghese
Communicator

HI Rich, the data is for everything that appears in my tool. But i want a hold down timer of 15 mins.

i tried using below commands but that didn't worked.


| where Downtime >900

Also tried below

| where duration>900

 

but am not getting a data while adding this query. 

0 Karma

richgalloway
SplunkTrust
SplunkTrust

OK.  I thought that might be the case, but it wasn't stated.

The clauses you tried won't work because they're comparing strings to integers.  You must compare numbers to numbers.

index=opennms "uei.opennms.org/nodes/nodeUp" OR "uei.opennms.org/nodes/nodeDown"
| fieldformat Time=strftime(Time,"%Y-%m-%d %l:%M:%S %p")
| sort- Time
| eval Downtime = now() - Time
| where Downtime > 900
| fieldformat Downtime = tostring(Downtime, "duration")
| rex field=Downtime "(?P<Downtime>[^.]+)"
| table Hostname Status Classification "Site Code", sitename, Time Downtime
---
If this reply helps you, Karma would be appreciated.
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

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