All Apps and Add-ons

Monitoring for Splunk: How can I search for a string then evaluate matches by additional criteria?

Deepz2612
Explorer

Hi,

Please help me with the below :

I wanted to write a search query where
1.the query should find the keyword "SA.service.com"
2.if found should search the keyword "Connection reset error (of different event)
3. If found should check the time difference between the events and if the time diff is less and equal to 1 min it should output the event

0 Karma

cmerriman
Super Champion

perhaps something like:

|eval keyword1=if(like(_raw,"%SA.service.com%"),1,0)
|eval keyword2=if(like(_raw,"%Connection reset error%"),1,0)
|sort 0 - _time
|streamstats values(_time) as next_time values(keyword2) as keyword_2 values(_raw) as _raw window=1 current=f reset_after="("keyword1==1")"
|where isnotnull(keyword_2)
0 Karma
Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...