Splunk Search

Setting field value based on another field

tsheets13
Communicator

I have a value in my events called type, which is a single digit integer (1, 2, 3, etc.)

I would like to create a new string field in my search based on that value.

So, something like this pseudocode...

if type = 1 then desc = "pre"
if type = 2 then desc = "current"
if type = 3 then desc = "post"

I realize the splunk doesn't do if/then statements but I thought that was the easiest way to explain.

Thanks

Labels (1)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi @tsheets13,
you have to use eval command with case option:

| eval desc=case(type="1","pre",type="2","current",type="3","post")

for more infos see at https://docs.splunk.com/Documentation/Splunk/8.0.2/SearchReference/ConditionalFunctions

Ciao.
Giuseppe

View solution in original post

gcusello
SplunkTrust
SplunkTrust

Hi @tsheets13,
you have to use eval command with case option:

| eval desc=case(type="1","pre",type="2","current",type="3","post")

for more infos see at https://docs.splunk.com/Documentation/Splunk/8.0.2/SearchReference/ConditionalFunctions

Ciao.
Giuseppe

tsheets13
Communicator

Perfect! Thank you

0 Karma
Get Updates on the Splunk Community!

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!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...