Splunk Search

How to get result for field value difference?

EvansB
Path Finder

Working with this query, I'm hoping to get only results where field values are greater than the other.

 

 

index="index*"
| eval MonthNumber=strftime(_time,"%m") 
| chart eval(round(avg(durationMs), 0)) AS avg_durationMs by properties.url, MonthNumber 
| rename 04 AS "Apr", 05 AS "May"

 

 

 I want to get only results of where Apr values is greater than May by 10

EvansB_1-1653334771444.png

 

Labels (1)
Tags (1)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

If you only want to see results where the "May" number is greater than the "Apr" number then add a where command to the query.

| where May > Apr

 

---
If this reply helps you, Karma would be appreciated.
0 Karma

EvansB
Path Finder

This gives me general results. I need results that are only greater than 10 and beyond. This is for the purpose of setting up an alert when values between May and Apr is greater than 10

Thanks

0 Karma

richgalloway
SplunkTrust
SplunkTrust

Change the where command to test for the desired difference.

 

| where May > Apr+10

 

 

---
If this reply helps you, Karma would be appreciated.
0 Karma

EvansB
Path Finder

Appreciate your assistance

0 Karma
Get Updates on the Splunk Community!

Observability | How to Think About Instrumentation Overhead (White Paper)

Novice observability practitioners are often overly obsessed with performance. They might approach ...

Cloud Platform | Get Resiliency in the Cloud Event (Register Now!)

IDC Report: Enterprises Gain Higher Efficiency and Resiliency With Migration to Cloud  Today many enterprises ...

The Great Resilience Quest: 10th Leaderboard Update

The tenth leaderboard update (11.23-12.05) for The Great Resilience Quest is out >> As our brave ...