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!

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, ...