Splunk Search

How can I find results only iff the previous queries returns results?

yk010123
Path Finder

I calculate the requests per second for my application using the following query: 

 

 

method!=GET process="start"
| timechart count by region limit=0
| timechart per_second(*)

 

I also calculate the number of errors my application is producing using the following separate query

 

 

process=end AND status=500
| timechart count
| timechart per_second(*)

 

 

I am trying to find a query that will answer when my application "breaks", or in other words, what is the requests per second that causes my application to have more than N errors

 

 

Labels (4)
0 Karma

yeahnah
Motivator

Hi @yk010123 

It usually easier to help when there are some example events provided, but based on what you've shown in the SPL something like this should work

(method!=GET process="start") OR (process=end AND status=500)
| eval region=coalesce(region, "none") ``` account for end event not having a region ```
      ,type=if(process="start", "start", "end")
| stats count BY _time type region
| timechart span=1m
    sum(eval(type="start")) AS start
    sum(eval(type="end")) AS end
  BY region
| timechart per_second(*)

One query that combines the results into one table/graph.

Hope it helps

0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer Certification at ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...