Dashboards & Visualizations

eval function help with if else statement

thaghost99
Path Finder

hi i would like some help doing an eval function where based on 3 values of fields will determine if the eval field value be either OK or BAD

 

example these are the 4 fields in total (hostname, "chassis ready", result, synchronize)

hostname= alpha        "chassis ready"=yes    result=pass   synchronize=no

hostname= beta          "chassis ready"=yes    result=pass   synchronize=yes

hostname= charlie        "chassis ready"=no   result=pass   synchronize=yes

 

i would like to do an eval for 'overallpass' where if   ("chassis ready"=yes    result=pass   synchronize=yes) will make 'overallpass' = OK and everything else will be overallpass = 'Not Okay" by hostname

 

so based on the top table, 

here is the final output.

*************************************

Hostname         overallpass

alpha                   Not Okay

bravo                   OK

charlie                 Not Okay

 

0 Karma
1 Solution

bowesmana
SplunkTrust
SplunkTrust

Use this

| eval overallpass=if('chassis ready'="yes" AND result="pass" AND synchronize="yes", "OK", "Not Okay")
| stats values(overallpass) as overallpass by hostname

NB: The chassis ready must be surrounded by SINGLE quotes as eval needs to understand the space is part of the field name. The values must be double quoted.

 

View solution in original post

bowesmana
SplunkTrust
SplunkTrust

Use this

| eval overallpass=if('chassis ready'="yes" AND result="pass" AND synchronize="yes", "OK", "Not Okay")
| stats values(overallpass) as overallpass by hostname

NB: The chassis ready must be surrounded by SINGLE quotes as eval needs to understand the space is part of the field name. The values must be double quoted.

 

Get Updates on the Splunk Community!

The Payment Operations Wake-Up Call: Why Financial Institutions Can't Afford ...

The same scenario plays out across financial institutions daily. A payment system fails at 11:30 AM on a busy ...

Make Your Case: A Ready-to-Send Letter for Getting Approval to Attend .conf25

Hello Splunkers, Want to attend .conf25 in Boston this year but not sure how to convince your manager? We've ...

Community Spotlight: A Splunk Expert's Journey

In the world of data analytics, some journeys leave a lasting impact not only on the individual but on the ...