Splunk Search

Extract Comma seperated fields

rsantkumar
Observer

I have 3 fields(Key, Version, Date) seperated by comma and records(can be many) seperated by ;(semicolon).

Example: pgn-aemrules,1.1,2020-04-02;pgn-csharp,8.4 (build 15306),2020-02-21;pgn-csharp,8.5 (build 15942),2020-03-16;

I am trying to extract the 3 fields and display as a table in splunk. Please help.

Tags (3)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

Do you want to do this at search time or at index time? Should the data between semicolons be separate events?

---
If this reply helps you, Karma would be appreciated.
0 Karma

vnravikumar
Champion

Hi

Check this

| makeresults 
| eval str="pgn-aemrules,1.1,2020-04-02;pgn-csharp,8.4 (build 15306),2020-02-21;pgn-csharp,8.5 (build 15942),2020-03-16;" 
| makemv delim=";" str 
| mvexpand str 
| rex field=str "(?P<Key>[^,]+),(?P<Version>[^,]+),(?P<Date>\S+)" 
| table Key Version Date
0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Can’t Make It to Boston? Stream .conf25 and Learn with Haya Husain

Boston may be buzzing this September with Splunk University and .conf25, but you don’t have to pack a bag to ...

Splunk Lantern’s Guide to The Most Popular .conf25 Sessions

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Unlock What’s Next: The Splunk Cloud Platform at .conf25

In just a few days, Boston will be buzzing as the Splunk team and thousands of community members come together ...