Splunk Search

How do I remove negative numbers from an eval?

matt
Splunk Employee
Splunk Employee

I have a search which runs an eval statement. The problem is every couple of times a day the numbers its pulling (they are incremental numbers) are reset. This of course means the last number received is higher then the first number received in the search and results in a negative value. I want to throw this number out entirely. How do I go about this?

Example Problem:

eval FOO = firstFOO-lastFOO
Where firstFOO=10 and lastFOO is 1024
Foo will now equal -1014 which completely messes up the graphs.

Usually this is an incrementing number, but this counter gets reset when the application does.

Tags (2)
1 Solution

araitz
Splunk Employee
Splunk Employee
| eval FOO = if(firstFOO<lastFOO,null,firstFOO-lastFOO)

View solution in original post

araitz
Splunk Employee
Splunk Employee
| eval FOO = if(firstFOO<lastFOO,null,firstFOO-lastFOO)
Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...