All Apps and Add-ons

Transform Comma Delimited Field (Extraction) Into Row

andrewkenth
Communicator

Is there a way to break a field extraction that is delimited into a new row in a table?

Example Data:

2014-01-21 16:32:48,702 [MainThread] INFO  tData.Data.Refresh.BlotterRefreshHandler -     Blotter Refresh completed for MsgNum = 104, Order table, IDs: 238771427,228715752,238237071,236915854

I'd like to have a table that read something similar to below. What is a good clean way to approach this (or dirty!)?

_time source OrderID
2014-01-21 16:32:48 foo.csv 238771427
2014-01-21 16:32:48 foo.csv 228715752
2014-01-21 16:32:48 foo.csv 238237071
2014-01-21 16:32:48 foo.csv 236915854

0 Karma
1 Solution

linu1988
Champion

Hello,
You can extract the IDs from the event,assuming you are not breaking them into rows before indexing. After you do get the ids on a single field, you just need to split it by ","

...|eval OrderIDs=split(ID,",")|table _time,source,OrderIDs|mvexpand OrderID

Thanks

View solution in original post

linu1988
Champion

Hello,
You can extract the IDs from the event,assuming you are not breaking them into rows before indexing. After you do get the ids on a single field, you just need to split it by ","

...|eval OrderIDs=split(ID,",")|table _time,source,OrderIDs|mvexpand OrderID

Thanks

andrewkenth
Communicator

Perfect! thanks. mvexpand is exactly what I was looking for 🙂

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

May 2026 Splunk Expert Sessions: Security & Observability

Level Up Your Operations: May 2026 Splunk Expert Sessions Whether you are refining your security posture or ...

Network to App: Observability Unlocked [May & June Series]

In today’s digital landscape, your environment is no longer confined to the data center. It spans complex ...

SPL2 Deep Dives, AppDynamics Integrations, SAML Made Simple and Much More on Splunk ...

Splunk Lantern is Splunk’s customer success center that provides practical guidance from Splunk experts on key ...