Splunk Dev

How would you use if in this situation?

taehe
Explorer
| eval err=if(data>80,code,"") 

I am composing spl using if statement. If the data value is over 80, a code is generated. However, if the value of 80 or more is maintained, a code is generated only at the starting value of 80 or more, and the code does not occur until it falls below 80. What should I do?

0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust
| streamstats window=1 current=f global=f earliest(data) as previous_data by car
| eval err=if(data>80 AND (isnull(previous_data) OR previous_data <=80), code, "")

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust
| streamstats window=1 current=f latest(data) as previous_data
| eval err=if(data>80 AND previous_data <= 80, code, "")

taehe
Explorer

thanks for good answer

taehe_0-1662431774063.png

However, if the current SPL is used, the code does not start at the value above 80, but the code occurs before when it becomes less than 80. Can this be solved? Since the data is different based on the car, the current spl is as follows.

| streamstats window=2 current=f earliest(data) as previous_data by car
| eval err=if(data>80 AND previous_data <=80, code, "")

 

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| streamstats window=1 current=f global=f earliest(data) as previous_data by car
| eval err=if(data>80 AND (isnull(previous_data) OR previous_data <=80), code, "")
Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...