Splunk Search

help with eval command

super_saiyan
Communicator

Hi everyone, i want to use the below command in a single line. i have tried "comma" but it's not working.

How do i do it?

|eval comments= if(Action="create","something has been created",'comments')
|eval comments= if(Action="delete","something  has been deleted",'comments')


Thanks.

Labels (1)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi @super_saiyan,

yes sorry!

| eval comments= if(Action="create","something has been created", if(Action="delete","something  has been deleted",'comments'))

does it run and solves your need?

Ciao.

Giuseppe

View solution in original post

somesoni2
SplunkTrust
SplunkTrust

Use the case command, like this

|eval comments= case(Action="create","something has been created", Action="delete","something  has been deleted", true(),'comments')

The option "true()" is for default option (when all preceding conditions do not match).

gcusello
SplunkTrust
SplunkTrust

Hi @super_saiyan,

use two concatenated ifs:

| eval comments= if(Action="create","something has been created", if(Action="delete","something  has been deleted",'comments')

or case with the same logic

Ciao.

Giuseppe

super_saiyan
Communicator

There is a closing bracket " ) " missing in the SPL.
is it supposed to be that way ? 
@gcusello 

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @super_saiyan,

yes sorry!

| eval comments= if(Action="create","something has been created", if(Action="delete","something  has been deleted",'comments'))

does it run and solves your need?

Ciao.

Giuseppe

super_saiyan
Communicator

Yes, It ran and solved my issue. Thank you so much as always.
@gcusello 

0 Karma
Get Updates on the Splunk Community!

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...