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!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...