All Apps and Add-ons

How to Field extraction / Calculated fields

VijaySrrie
Builder

Hi,

Need one field to be extracted or need a calculated field

I have two fields that are auto-extracted (action and Severity)
Values of action field = read, debug, modify
Values of Severity field = SUCCESS and FAILURE

Out of 100 logs 50 logs are having action field


All logs are having Severity field

Wherever action field is available in the logs, I want the same value, when there is no action field, I want the value of Severity to be disabled under action field


NOTE: For all the logs Index/Sourcetype and source are same

 

Labels (3)
Tags (1)
0 Karma

VijaySrrie
Builder

| eval action=if(isnull(action),severity,action)

It worked with this statement

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Yes, that is essentially what coalesce is doing 😀

ITWhisperer
SplunkTrust
SplunkTrust

Is this what you mean?

| makeresults count=10
| eval action=mvindex(split("read|debug|modify","|"), random()%6)
| eval Severity=mvindex(split("SUCCESS|FAILURE","|"),random()%2)
``` If action is not present, use value from Severity ```
| eval action=coalesce(action,Severity)
0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Painting a Clearer Picture: Creating Cross-Domain Visibility with AI Canvas

    Thursday, June 25, 2026  |  11AM PDT / 2PM EDT  Duration: 1 Hour (Includes live Q&A) Register to ...

Analytics Workspace deprecation

As of Splunk Cloud Platform 10.4.2604 and Splunk Enterprise 10.4, Analytics Workspace is now deprecated. ...

Splunk Developer Day Recap: Building, Publishing, and Growing on the Splunk Platform

Splunk Developer Day brought the Splunk developer community together for a practical look at what it means to ...