Splunk Search

SPL

Muthu_Vinith
Path Finder

Hey Experts, I'm new to splunk and I'm trying to extract APP WEB and MNOPQ from a field called result. Can someone please guide me on how to achieve this? Any help or example queries would be greatly appreciated. Thank You!

Fi a:\abc\def\MNOPQ.txt content is expected to include "A H Dis Query,0,0"
Fi a:\abc\def\APP.txt content is expected to include "A H Dis Query,0,0"
Fi a:\abc\def\WEB.txt content is expected to include "A H Dis Query,0,0"
Labels (1)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi @Muthu_Vinith ,

you should use a regex like the following:

| rex field=result "\w:\\\w+\\\w+\\(?<myfield>[^\.]+)"

that you can test at https://regex101.com/r/BYH1rP/1

Ciao.

Giuseppe

View solution in original post

Muthu_Vinith
Path Finder

Hi @gcusello @ITWhisperer 

| rex field=result "\w:\\\\\w+\\\\\w+\\\\(?<myfield>[^\.]+)"

The above query extracts, but if i want to extract APP and WEB which is in same line how to extract ?

Fi a:\abc\def\
MNOPQ.txt content is expected to include "A H Dis Query,0,0"
Fi a:\abc\def\APP.txt content is expected to include "A H Dis Query,0,0" Fi a:\abc\def\WEB.txt content is expected to include "A H Dis Query,0,0"
Fi a:\abc\def\SQL.txt content is expected to include "A H Dis Query,0,0"

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Use max_match

| rex max_match=0 field=result "\w:\\\\\w+\\\\\w+\\\\(?<myfield>[^\.]+)"

Note that this will give you a multivalue field

Muthu_Vinith
Path Finder

Thanks @ITWhisperer 

0 Karma

yuanliu
SplunkTrust
SplunkTrust

@Muthu_Vinith Please use descriptive title.  This helps future users finding the answer.

0 Karma

Muthu_Vinith
Path Finder

Thanks!! @gcusello @ITWhisperer 

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @Muthu_Vinith ,

good for you, see next time!

let us know if we can help you more, or, please, accept one answer for the other people of Community.

Ciao and happy splunking

Giuseppe

P.S.: Karma Points are appreciated by all the contributors 😉

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| rex field=result "\w:\\\\\w+\\\\\w+\\\\(?<myfield>[^\.]+)"

gcusello
SplunkTrust
SplunkTrust

Hi @Muthu_Vinith ,

you should use a regex like the following:

| rex field=result "\w:\\\w+\\\w+\\(?<myfield>[^\.]+)"

that you can test at https://regex101.com/r/BYH1rP/1

Ciao.

Giuseppe

Get Updates on the Splunk Community!

Database Performance Sidebar Panel Now on APM Database Query Performance & Service ...

We’ve streamlined the troubleshooting experience for database-related service issues by adding a database ...

IM Landing Page Filter - Now Available

We’ve added the capability for you to filter across the summary details on the main Infrastructure Monitoring ...

Dynamic Links from Alerts to IM Navigators - New in Observability Cloud

Splunk continues to improve the troubleshooting experience in Observability Cloud with this latest enhancement ...