Splunk Search

How to create a condition statement

dkdeepshikhaa
Explorer

Is there a possibility in Splunk to get data like below :

If a condition is true then that data is to be printed in table 

If (a $lt; b)

eval c=round(((b-a)/b)*100),0)

print c (in table format)

Or else just a message on full screen that with "no change".

0 Karma

Vijeta
Influencer

@dkdeepshikhaa if there are multiple events in your query your conditional evaluation will be based on each event. You can get no change text in table with below query-

<your search>| eval var=round(((b-a)/b)*100),0) | eval c = if(a<b,var,"no change") | table c

vnravikumar
Champion
0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...