Splunk Search

Unable to extract fields from source

siddharthmis
Explorer

I have props.conf defined as-

[source::C:\Web\...\...\Web\log\mobile.log]
EXTRACT-Customer,Country = C:\\\Web\\\(?<Customer>\w*)\\\(?<Country>\w*) in source

[source::C:\Web\...\...\Web\log\web.log]
EXTRACT-Customer,Country = C:\\\Web\\\(?<Customer>\w*)\\\(?<Country>\w*) in source

I am still unable to index the two fields. What am I doing wrong?
Do I need to make some other changes?

Tags (1)
0 Karma

DavidHourani
Super Champion

Hello Siddharthmis,

Your problem is not in the regex, it is in the stanza.

the stanzas should look like this :

 [source::C:\Web\*\*\Web\log\mobile.log]
 EXTRACT-Customer,Country = C:\\\Web\\\(?<Customer>\w*)\\\(?<Country>\w*) in source

 [source::C:\Web\*\*\Web\log\web.log]
 EXTRACT-Customer,Country = C:\\\Web\\\(?<Customer>\w*)\\\(?<Country>\w*) in source

please refer to the following question for more details:
https://answers.splunk.com/answers/31643/using-source-for-field-extraction-in-props-conf.html

Regards,
David

0 Karma

siddharthmis
Explorer

Thanks, it worked.

[<SOURCETYPEHERE>]
  EXTRACT-Customer,Country = C:\\\Web\\\(?<Customer>\w*)\\\(?<Country>\w*) in source

[<SOURCETYPEHERE>]
EXTRACT-Customer,Country = C:\\\Web\\\(?<Customer>\w*)\\\(?<Country>\w*) in source

I used the above, though.

0 Karma

DavidHourani
Super Champion

Great! Please accept and up vote answer 🙂

0 Karma

p_gurav
Champion

Hi siddharthmis,

you can try rex command on source field:
| rex field=source "\w+:\\w+\(?P\w*)\(?P\w*)\.*"

0 Karma

abhijeet01
Path Finder

Hi @siddharthmis

can you please share your source string

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, ...