Splunk Search

Fix-width field extraction with multiple line value in one column

Takol1
Explorer

Our customer has a log file with fix-width layout as below,

10/4/12  18:00:00  10/4/12  18:00:31  ABCDEFGHIJKLM-   Completed
                                      NOPQ
10/4/12  18:00:01  10/4/12  18:00:22  1234567890123-   Completed
                                      456

It expect a field, let's say "name", be extracted with value "ABCDEFGHIJKLNOPQ" and "1234567890123456". How do we use transform or anything else to parse it?

Tags (1)
0 Karma

MHibbin
Influencer

Are they two different events?

You should be able to use something like the following to test the extraction on your data: (example using rex from search commands and piping to stats for demo)

* | rex field=_raw "\d+\:\d+\:\d+\s+(?P<name>\w+)\-\s+" | stats count by name

The easiest way for you to set up the extraction is using the IFX (Interactive Field eXtractor), please see follow:

http://docs.splunk.com/Documentation/Splunk/5.0/Knowledge/ExtractfieldsinteractivelywithIFX

Or you can create field extractions in conf files, please see following:

http://docs.splunk.com/Documentation/Splunk/5.0/Knowledge/Createandmaintainsearch-timefieldextractio...

0 Karma

Takol1
Explorer

Thanks for your answer. The event contains two lines and the field "ABCDEFGHIJKLM-" and "NOPQ" are located at separated two lines.

So there are two questions in this case exactly. First, how to extract column field from multiple lines? Second, how to tell between hyphen and dash?

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...