Splunk Search

Could you help me with the syntax for an "IF/THEN" and "IF/ELSE" search?

Mohsin123
Path Finder

Hi ,

i want a syntax for this:

if Response_time>3000 then Response_time="gt3SEC"
else if Response_time>1000 and Response_time<3000 then Response_time="bet1-3Sec"
else if Response_time<1000 then Response_time="lt1Sec"

Please help

Tags (2)
0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

@Mohsin123

Can you please try this?

YOUR_SEARCH
| eval A=case(Response_time<1000,"lt1Sec",Response_time>=1000 AND Response_time<=3000,"bet1-3Sec",Response_time=3000,"gt3SEC")

Sample Search

|makeresults 
| eval Response_time=3000 
| eval A=case(Response_time<1000,"lt1Sec",Response_time>=1000 AND Response_time<=3000,"bet1-3Sec",Response_time=3000,"gt3SEC")
0 Karma

Mohsin123
Path Finder

Hi,

this is working :
|makeresults
| eval Response_time=3000
| eval A=case(Response_time<1000,"lt1Sec",Response_time>=1000 AND Response_time<=3000,"bet1-3Sec",Response_time=3000,"gt3SEC")

in an independent search but not working with my search ....
........
| eval Response_time=case(Response_time<1000,"lt1Sec",Response_time>=1000 AND Response_time<=3000,"bet1-3Sec",Response_time=3000,"gt3SEC")

0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

@Mohsin123

Can you please replace your value in my sample search and execute?

|makeresults 
| eval Response_time=<<REPLACE_YOU_VALUE>> 
| eval Response_time=case(Response_time<1000,"lt1Sec",Response_time>=1000 AND Response_time<=3000,"bet1-3Sec",Response_time=3000,"gt3SEC")

OR

Can you please share the sample output of your search? So I can work on it.

YOUR_SEARCH | table Response_time | head 5

0 Karma

paulbannister
Communicator

Hi There,

I'm assuming that you have already created the field "Response_time" prior to the case statement? What isse are you running into with the search?

0 Karma

paulbannister
Communicator

Hi There,

You may want to try a case statement for this, unless there are any other variables you need to create:

|eval FIELDNAME=case(Response_time>3000, Response_time="gt3SEC", Response_time>1000 AND Response_time<3000, Response_time="bet1-3Sec", Response_time<1000, Response_time="lt1Sec")

0 Karma

Mohsin123
Path Finder

i am getting this error

Error in 'eval' command: Fields cannot be assigned a boolean result. Instead, try if([bool expr], [expr], [expr]).

0 Karma

paulbannister
Communicator

Apologies, try this:

|eval Response_time=
case(Response_time>3000, "gt3SEC", Response_time>1000 AND Response_time<3000, "bet1-3Sec", Response_time<1000, "lt1Sec")
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 ...