Splunk Enterprise Security

Create New Fields From Another Field with Varying Values

airalee
New Member

Hello All,

Is there a way to create multiple fields from a single field separated by commas? But the number of values in the field will not always be the same and I'd like to do this through the search function as part of a correlation search.

Example:
sample_field=value1,value2,value3 => field1=value1, field2=value2, field3=value3
sample_field=value1,value2, value3,value4,value5 => field1=value1, field2=value2, field3=value3, field4=value4, field5=value5
sample_field=value1 => field1=value1

Thanks!

0 Karma
1 Solution

kamlesh_vaghela
SplunkTrust
SplunkTrust

@airalee

Can you please try below search?

YOUR_SEARCH | eval data=split(sample_field,",") , n=1,r=1 
| accum n 
| mvexpand data 
| streamstats sum(r) as r by n 
| eval fields{r}=data 
| stats values(fields*) as fields* by _time, n,sample_field | fields - n

Sample search:

| makeresults 
| eval sample_field="value1,value2,value3||value1,value2,value3,value4,value5||value1",sample_field=split(sample_field,"||") 
| mvexpand sample_field 
| rename COMMENT as "This is sample of your search" 
| eval data=split(sample_field,",") , n=1,r=1 
| accum n 
| mvexpand data 
| streamstats sum(r) as r by n 
| eval fields{r}=data 
| stats values(fields*) as fields* by _time, n,sample_field | fields - n

Thanks

View solution in original post

0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

@airalee

Can you please try below search?

YOUR_SEARCH | eval data=split(sample_field,",") , n=1,r=1 
| accum n 
| mvexpand data 
| streamstats sum(r) as r by n 
| eval fields{r}=data 
| stats values(fields*) as fields* by _time, n,sample_field | fields - n

Sample search:

| makeresults 
| eval sample_field="value1,value2,value3||value1,value2,value3,value4,value5||value1",sample_field=split(sample_field,"||") 
| mvexpand sample_field 
| rename COMMENT as "This is sample of your search" 
| eval data=split(sample_field,",") , n=1,r=1 
| accum n 
| mvexpand data 
| streamstats sum(r) as r by n 
| eval fields{r}=data 
| stats values(fields*) as fields* by _time, n,sample_field | fields - n

Thanks

0 Karma

airalee
New Member

Thanks, this is what I was looking for!

0 Karma

soumyasaha25
Contributor

if my understanding of your question is right, you want to extract new fields from an already existing field
if so you can try this:
lets say your original field is "original_field" and value is "i want to extract field1, field2, field3, field4 from my original_field"
you can use something like the below query

<your search>|rex field=original_field  ".*?extract\s(?<new_field1>.*?)\,\s(?<new_field2>.*?)\,\s(?<new_field3>.*?)\,\s(?"<new_field4>.*?)\,
0 Karma

airalee
New Member

Thanks! I looked into this, but I did not want to specify the number of fields as the sample_field could go up to an x amount of values. I appreciate the help though!

0 Karma
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...