Splunk Search

Creating a new field depending on wildcard search

ajdyer2000
Path Finder

Hi I know this is probably an easy one but I'm new and need some help.

I have the following Field Called "Account Name"

Account Name                                  

Alan Test Account                             

Debbie Production Account         

John Dev Account                            

Ed Test Account                                 

I would like to create a new field called Environment that matches Test, Production ,Dev

Account Name                                  Environment

Alan Test Account                             Test

Debbie Production Account         Production

John Dev Account                            Dev

Ed Test Account                                 Test

Labels (1)
0 Karma

PickleRick
SplunkTrust
SplunkTrust

One possible approach:

<your search>
| rex field='Account Name' "\S+\s(?<Environment>\S+)\sAccount"
0 Karma

VatsalJagani
SplunkTrust
SplunkTrust

You can validate that you are extracting the environment field from all the results with the below query:

<your search>
| rex field='Account Name' "\S+\s(?<Environment>\S+)\sAccount"
| search NOT Environment=*
| table "Account Name"

If you see any results that mean those account names are differently formatted than what you provided examples here.

If you have "No results" in this search you are good to go. You can use the solution provided by @PickleRick .

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...