Splunk Search

Can I extract info from comma deliminated data?

sportauthority
New Member

We are reporting events in a CSV format using a comma deliminated structure. Example below:
,playerID04,player01,client002,clip_started,false,active,,237

Essentially this is a list of info sent when an event happens, comprised of:

player ID, player type, client ID, the event type (clip_started), parameter1, parameter2, video ID (237 in this instance).

In the 1st instance it is the video ID that I am after

What I want to produce is a list or table of these video IDs, showing how many times they show, or are associated with the 'clip_started'. The video ID isn't named as such, but it always appears in the same position within the data, ie. after the 8th comma. Is there a way for me to tell splunk that this is a VIDEO-ID, to extract this number in a repeatable way?

To further expand on this, is there a way for em to tell splunk the names of all of these fields, and for splunk to automatically 'name' them as fields that I can then filter and search by.

thanks

0 Karma

linu1988
Champion

Comma delimited file means the CSV files which splunk by default recognizes. Do you have headers on the files? Have you used the inputcsv or inputlookup command to read the content and filter them afterwards?

0 Karma

Ayn
Legend

Yes. Setup a delimiter based field extraction.

In props.conf, you'd do something like

[yoursourcetype]
REPORT-video = videoinfo

And in transforms.conf

[videoinfo]
DELIMS = ","
FIELDS = "player_ID", "player_type", "client_ID", "event_type", "parameter1", "parameter2", "video_ID"
0 Karma

sportauthority
New Member

looking. thanks

0 Karma

Ayn
Legend
0 Karma

sportauthority
New Member

Is it possible to do this from the search area?

0 Karma
Get Updates on the Splunk Community!

October Community Champions: A Shoutout to Our Contributors!

As October comes to a close, we want to take a moment to celebrate the people who make the Splunk Community ...

Community Content Calendar, November Edition

Welcome to the November edition of our Community Spotlight! Each month, we dive into the Splunk Community to ...

Stay Connected: Your Guide to November Tech Talks, Office Hours, and Webinars!

What are Community Office Hours? Community Office Hours is an interactive 60-minute Zoom series where ...