Splunk Search

split filed into multiple filed

abhijeet
Explorer

I would like to break "X" field into multiple field based on available value. "X" contain data in following format. 

Field X-

ABC: YES, APPLICATION: DEF, ZONE: DATA, ENVIRONMENT: DEV

ZONE: INSIDE, ENVIRONMENT: PROD

ZONE: OUTSIDE, ENVIRONMENT: DEV, ABC: YES, APPLICATION: IJK

=======

I would like the arrange data in following format.

 

ABC     APPLICATION             ZONE           ENVIRONMENT

YES           DEF                          DATA                      DEV

                                                     INSIDE                  PROD

YES           IJK                           OUTSIDE             DEV

 

TIA. 

 

Labels (1)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

The bit before the blank lines just sets up dummy data for the runanywhere example

| makeresults 
| eval X=split("ABC: YES, APPLICATION: DEF, ZONE: DATA, ENVIRONMENT: DEV|ZONE: INSIDE, ENVIRONMENT: PROD|ZONE: OUTSIDE, ENVIRONMENT: DEV, ABC: YES, APPLICATION: IJK","|")
| mvexpand X


| eval _raw=X
| extract pairdelim="," kvdelim=":"

 

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust

The bit before the blank lines just sets up dummy data for the runanywhere example

| makeresults 
| eval X=split("ABC: YES, APPLICATION: DEF, ZONE: DATA, ENVIRONMENT: DEV|ZONE: INSIDE, ENVIRONMENT: PROD|ZONE: OUTSIDE, ENVIRONMENT: DEV, ABC: YES, APPLICATION: IJK","|")
| mvexpand X


| eval _raw=X
| extract pairdelim="," kvdelim=":"

 

abhijeet
Explorer

Thank you so much. Solution works... 

0 Karma
Get Updates on the Splunk Community!

Enhance Your Splunk App Development: New Tools & Support

UCC FrameworkAdd-on Builder has been around for quite some time. It helps build Splunk apps faster, but it ...

Prove Your Splunk Prowess at .conf25—No Prereqs Required!

Your Next Big Security Credential: No Prerequisites Needed We know you’ve got the skills, and now, earning the ...

Splunk Observability Cloud's AI Assistant in Action Series: Observability as Code

This is the sixth post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how to ...