Splunk Search

Using field eval values in if condition.

veerendra_modi
Loves-to-Learn

I have a search as below:

|rex field=Field "^(?.+?)."
| eval Srvr = if(sourcetype="Type_1", Field_1 , if(sourcetype="Type_2", Field_2, "NA"))
| table Id sourcetype Field_1 Srvr

I have two fields
Field_1 that is in sourcetype="Type_1"
Field_2 that is in sourcetype="Type_2"
I want to take the values of these field in one field that is Srvr in the searxh above.

Please suggest as the query is not picking up the values from the fields Field_1 and Filed_2 but the if condition is working with harcoded values.

Tags (1)
0 Karma

somesoni2
Revered Legend

Try this

....| eval Srvr=coalesce(Field_1, Field_2, "NA") | table ....rest of the command
0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

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

Get the T-shirt to Prove You Survived Splunk University Bootcamp

As if Splunk University, in Las Vegas, in-person, with three days of bootcamps and labs weren’t enough, now ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...