Splunk Search

Capture the peak points in a table

chadman
Path Finder

I have a great search that someone here helped me with the other day. It will take all the peak numbers in a search and add them. This works great, but now I need to filter out numbers lower than 4. My current search looks like this and works.

| table _time, idle 
        | rename idle as "Idle Time" | eval sno=if('Idle Time'=0,1,0) 
        | accum sno | eventstats max("Idle Time") as max by sno 
        | where 'Idle Time'=max | table _time "Idle Time" 
        | stats sum("Idle Time") as "Idle Time" 

So if my numbers look like:

0,1,2,3,0,0,1,2,3,4,5,0,1,2,3,4,5

I would get a total of 13 because it adds the peaks of 3+5+5. User don't want to see peaks under 4. I thought I could just add a |where idle < 4 at the beginning of the search, but that does not give the correct number. In my example I would expect to see 10 because 3 would be thrown out.

0 Karma
1 Solution

somesoni2
Revered Legend

Try like this

| table _time, idle 
         | rename idle as "Idle Time" | eval sno=if('Idle Time'=0,1,0) 
         | accum sno | eventstats max("Idle Time") as max by sno 
         | where 'Idle Time'=max  AND 'Idle Time'>4| table _time "Idle Time" 
         | stats sum("Idle Time") as "Idle Time" 

View solution in original post

0 Karma

somesoni2
Revered Legend

Try like this

| table _time, idle 
         | rename idle as "Idle Time" | eval sno=if('Idle Time'=0,1,0) 
         | accum sno | eventstats max("Idle Time") as max by sno 
         | where 'Idle Time'=max  AND 'Idle Time'>4| table _time "Idle Time" 
         | stats sum("Idle Time") as "Idle Time" 
0 Karma

chadman
Path Finder

Thanks that did it!

0 Karma

skoelpin
SplunkTrust
SplunkTrust

You could add a where > 4 which will exclude anything less than 4

| table _time, idle 
         | rename idle as "Idle Time" | eval sno=if('Idle Time'=0,1,0) 
         | accum sno | eventstats max("Idle Time") as max by sno 
         | where 'Idle Time'=max | table _time "Idle Time" 
         | stats sum("Idle Time") as "Idle Time"  | where idle > 4
0 Karma

chadman
Path Finder

I thought the same thing and tried that as I mentioned above, but used it at the beginning of the search. Somehow that messes up the part that calculates the peaks. When you do that it will show the total of the highest peak instead of adding all the peaks like I need it to do.

0 Karma
Get Updates on the Splunk Community!

Splunk Observability Cloud's AI Assistant in Action Series: Auditing Compliance and ...

This is the third post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how to ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

What You Read The Most: Splunk Lantern’s Most Popular Articles!

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...