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

 

Labels (1)
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!

Enter the Splunk Community Dashboard Challenge for Your Chance to Win!

The Splunk Community Dashboard Challenge is underway! This is your chance to showcase your skills in creating ...

.conf24 | Session Scheduler is Live!!

.conf24 is happening June 11 - 14 in Las Vegas, and we are thrilled to announce that the conference catalog ...

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...