Alerting

Alert based on comparison of two result rows

splunkrags
Engager

Hi Folks,

I am running a search query and I always have two sets of results.

Description              Rate

Transaction A            200
Transaction B            350

I need to trigger a conditional alert only if Rate of Transaction B is 50% more than Rate of Transaction A.

Any simple ways of achieving this ?

Thanks

1 Solution

dwaddle
SplunkTrust
SplunkTrust

You might be able to do this by feeding your results through | transpose followed by | where, something similar to this:

my search 
| transpose 
| search column=Rate 
| rename "row 1" TO  a 
| rename "row 2" TO b 
| where b > (a * 1.5)

And then alert on the return of any results.

View solution in original post

dwaddle
SplunkTrust
SplunkTrust

You might be able to do this by feeding your results through | transpose followed by | where, something similar to this:

my search 
| transpose 
| search column=Rate 
| rename "row 1" TO  a 
| rename "row 2" TO b 
| where b > (a * 1.5)

And then alert on the return of any results.

splunkrags
Engager

Thanks for the prompt reply! it works!

0 Karma
Get Updates on the Splunk Community!

Detecting Remote Code Executions With the Splunk Threat Research Team

REGISTER NOWRemote code execution (RCE) vulnerabilities pose a significant risk to organizations. If ...

Observability | Use Synthetic Monitoring for Website Metadata Verification

If you are on Splunk Observability Cloud, you may already have Synthetic Monitoringin your observability ...

More Ways To Control Your Costs With Archived Metrics | Register for Tech Talk

Tuesday, May 14, 2024  |  11AM PT / 2PM ET Register to Attend Join us for this Tech Talk and learn how to ...