All Apps and Add-ons

Search by unlabeled fields?

ehs
New Member

Hopefully this is simple enough (I haven't used splunk that much):

Given a log file that looks like this:

1/1/11  John  25  Notes
..

How can I apply "labels" to each value (e.g. the second column would be "NAME") so that I can then do searches like: NAME=John ?

Tags (1)
0 Karma

Damien_Dallimor
Ultra Champion

You can perform a search time named field extraction with something like this in props.conf

[my_sourcetype]
EXTRACT-extract_my_fields = (?<datetime>\d+/\d+/\d+)\s+(?<name>\w+)\s+(?<col3>\d+)\s+(?<col4>\w+)
0 Karma

Drainy
Champion

Have a look at the interactive field extractor, it should be able to help you;
http://docs.splunk.com/Documentation/Splunk/latest/User/InteractiveFieldExtractionExample

If you have trouble with it you could create a regex to identify all the fields in the event and use the props and transforms configuration files. Have a go and if you have any troubles feel free to update your question with your attempts!

http://docs.splunk.com/Documentation/Splunk/4.3/Admin/Transformsconf
http://docs.splunk.com/Documentation/Splunk/4.3/Admin/Propsconf

For a headstart a regex like;

\d+/\d+/\d+\s+(\w+)\s+(\d+)\s+(\w+)

Would capture JOhn, 25 and Notes into a different group each (group 1, 2 and 3 respectively), look at the "FORMAT = " part of the transforms config on how to apply a fieldname

Get Updates on the Splunk Community!

Fall Into Learning with New Splunk Education Courses

Every month, Splunk Education releases new courses to help you branch out, strengthen your data science roots, ...

Super Optimize your Splunk Stats Searches: Unlocking the Power of tstats, TERM, and ...

By Martin Hettervik, Senior Consultant and Team Leader at Accelerate at Iver, Splunk MVPThe stats command is ...

How Splunk Observability Cloud Prevented a Major Payment Crisis in Minutes

Your bank's payment processing system is humming along during a busy afternoon, handling millions in hourly ...