Getting Data In

Pull a field through regex

Nidd
Path Finder

I have the following log:

 

Number=Test1,Code=DPCA , ErrorMessage= sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

 

 

I'm trying to pull ErrorMessage from the log through regex but in vain. The field is not getting extracted. Below is the regex I'm using. Am I missing something? Please help.

 

rex "^(?:(?<ErrorMessage>[^,]*),){3}"

 

 

Labels (1)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi @Nidd,

let me understand: what's the ErrorMessage you're serching for:

  • all after "ErrorMessage=",
  • all until ":" one time,
  • all until ":" many times.

In the first case the regex it's easy:

ErrorMessage\=\s+(?<ErrorMessage>.*)

and you can test it at https://regex101.com/r/7hAGRj/1

The second is similat to your:

ErrorMessage\=\s+(?<ErrorMessage>[^:]*)

and you can test it at https://regex101.com/r/7hAGRj/2

the third requires two extractions:

| rex "ErrorMessage\=\s+(?<FullErrorMessage>.*)"
| rex field=FullErrorMessage "(?<ErrorMessage>[^:$]*)(:|$)"

Ciao.

Giuseppe

View solution in original post

gcusello
SplunkTrust
SplunkTrust

Hi @Nidd,

let me understand: what's the ErrorMessage you're serching for:

  • all after "ErrorMessage=",
  • all until ":" one time,
  • all until ":" many times.

In the first case the regex it's easy:

ErrorMessage\=\s+(?<ErrorMessage>.*)

and you can test it at https://regex101.com/r/7hAGRj/1

The second is similat to your:

ErrorMessage\=\s+(?<ErrorMessage>[^:]*)

and you can test it at https://regex101.com/r/7hAGRj/2

the third requires two extractions:

| rex "ErrorMessage\=\s+(?<FullErrorMessage>.*)"
| rex field=FullErrorMessage "(?<ErrorMessage>[^:$]*)(:|$)"

Ciao.

Giuseppe

Nidd
Path Finder

Thank you very much @gcusello ! That worked ! 🙂

0 Karma
Get Updates on the Splunk Community!

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

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...