Splunk Search

question on eval and if in case of multiple validations

jiaqya
Builder

ex: if value1=1 and value2=2
then i should be able to eval value3 based on a comparison condition ( i.e value3>90,test,value3 )

is this possible or is there any workaround to achieve this ?

John.

Tags (2)
0 Karma

somesoni2
Revered Legend

The question may be confusing. Could you post some sudo code to describe what you're trying to achieve? Are you looking to do something like this?

...| eval value3=if(value1=1 AND value2=2,if(value3>90,test,value3),"SomeOtherDefaultValue")
0 Karma

MuS
Legend

Hi jiaqya,

try this:

... | eval new_value=case(value1="1" AND value2="2", value3, 1=1, "unknown")

or this:

... | eval new_value=if(value1="1" AND value2="2", value3, somethingelse)

Hope this helps ...

cheers, MuS

jiaqya
Builder

Hi, i realised i could do value1-value2 directly and get the difference and then i was able to set the value based on the difference..

value1 and value 2 were columns..
thanks for your responses, i could get to where i wanted to be..

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

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

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...