Splunk Search

Need to Exclude event SERVICE_START observed within 10 minutes from same host after observing service stop

HPACHPANDE
Explorer

(index=123) sourcetype=XYZ AND type IN ("SERVICE_STOP") )  | _time host type _raw  is the main query where we are searching host where service stop has been observed

Here in this scenario we need to exclude if SERVICE_START event seen with same host within 10 Minutes.


Kindly help me with the query
Thanks in Advance !!

Labels (1)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

First, search for both SERVICE_STOP and SERVICE_START events.  Then use the dedup command to get the most recent event for each host.  Filter out the SERVICE_START events and anything that happened in the last 10 minutes.  Whatever is left will be a SERVICE_STOP event at least 10 minutes old without a matching SERVICE_START.

index=foo sourcetype=XYZ type IN (SERVICE_START SERVICE_STOP)
| dedup host
| where type=SERVICE_STOP AND _time < relative_time(now(), "-10m")
---
If this reply helps you, Karma would be appreciated.

View solution in original post

HPACHPANDE
Explorer

Hello richgalloway,

 

It worked, Thanks !!

richgalloway
SplunkTrust
SplunkTrust

First, search for both SERVICE_STOP and SERVICE_START events.  Then use the dedup command to get the most recent event for each host.  Filter out the SERVICE_START events and anything that happened in the last 10 minutes.  Whatever is left will be a SERVICE_STOP event at least 10 minutes old without a matching SERVICE_START.

index=foo sourcetype=XYZ type IN (SERVICE_START SERVICE_STOP)
| dedup host
| where type=SERVICE_STOP AND _time < relative_time(now(), "-10m")
---
If this reply helps you, Karma would be appreciated.
Get Updates on the Splunk Community!

.conf24 | Day 0

Hello Splunk Community! My name is Chris, and I'm based in Canberra, Australia's capital, and I travelled for ...

Enhance Security Visibility with Splunk Enterprise Security 7.1 through Threat ...

(view in My Videos)Struggling with alert fatigue, lack of context, and prioritization around security ...

Troubleshooting the OpenTelemetry Collector

  In this tech talk, you’ll learn how to troubleshoot the OpenTelemetry collector - from checking the ...