Splunk Search

How to count events with specified id, if there are three events successively

tgdvopab
Path Finder

Hello

I would like to make a search for a SLA who does the following: (id 700 is ok, 702 is nok)

  • Count number of events if there are three nok events (702) successively

Example:

700, 700, 702, 702, 700, 702 should count as 0, because there aren't three events with id 702 successively
700, 702, 702, 702, 700, 700 should count as 1, because there are three events with id 702 successively

How can I do that?
Thanks for your help!

0 Karma
1 Solution

gfuente
Motivator

Hello

You could use streamstats to sum the SLA values in groups of 3 values, and if the sum reaches 2112 (3 * 704) then thats what you need.

your base search ...| streamstats window=3 sum(SLA) as alarm | where alarm="2112" | table _time, SLA, alarm 

Regards

View solution in original post

inventsekar
SplunkTrust
SplunkTrust

assuming the same format, maybe, we can do a rex for "702, 702, 702"

your base search | rex field=_raw "(?<SLA>702, 702, 702)" | table SLA, _raw _time
thanks and best regards,
Sekar

PS - If this or any post helped you in any way, pls consider upvoting, thanks for reading !
0 Karma

gfuente
Motivator

Hello

You could use streamstats to sum the SLA values in groups of 3 values, and if the sum reaches 2112 (3 * 704) then thats what you need.

your base search ...| streamstats window=3 sum(SLA) as alarm | where alarm="2112" | table _time, SLA, alarm 

Regards

tgdvopab
Path Finder

Thanks a lot, one question:

We used streamstats to biuld a "package" of three events with the sum of the SLA values.

One Example:

  1. 700
  2. 700
  3. 702
  4. 702
  5. 702
  6. 700

Does the window make a package with number 1-3 oder 3-5?
This is important for the calculation.

Thanks a lot!

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 ...