Splunk Search

Separating the string in the field

mayank101
New Member

I have various search string under the field name entity:

        Entity
 1   ABC:BOOT2NDSUNQTR_MAINT4_sfsdfdsfsdf
 2   FSD:BOOT2NDSUNMONTH_MAINT3_erewrewre
 3    AFE:BOOTALLSUNMONTH_MAINT1_SecProd_DEV_sdfsdfdsf

and so on..
I want field such as BOOT2NDSUNQTR,BOOT2NDSUNMONTH_MAINT3 to be separated out and put it into a different field called jobname.Can you please help me in writing the regex for the same

Tags (1)
0 Karma

vnravikumar
Champion

Hi

Try this

| makeresults 
| eval test="ABC:BOOT2NDSUNQTR_MAINT4_sfsdfdsfsdf,FSD:BOOT2NDSUNMONTH_MAINT3_erewrewre,AFE:BOOTALLSUNMONTH_MAINT1_SecProd_DEV_sdfsdfdsf" 
| makemv test delim="," 
| mvexpand test 
| rex field=test "\:(?P<test>[\S]+)" 
| eval result=split(test,"_") 
| eval jobName =mvindex(result,0)."_".mvindex(result,1) 
| table jobName
0 Karma

Vijeta
Influencer

@mayank101 See example below

| makeresults |eval Entity=" ABC:BOOT2NDSUNQTR_MAINT4_sfsdfdsfsdf"| rex field=Entity "(?<jobname>\S+_\S+)_"
0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

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 GA in US-AWS!

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