Splunk Search

whats the rex command to filter the special characters and extract only required fields?

guru89044
Explorer

Hello experts,

logs looks something like this..

(java.lang.RuntimeException: java.util.concurrent.ExecutionException: java.lang.RuntimeException:...

null\n\njava.lang.IllegalArgumentException
: java.util.concurrent.ExecutionException..
( java.util.concurrent.ExecutionException)
" java.util.concurrent.ExecutionException"

query should ignore the special characters before java and take only exception.

example: query should find "java.lang.IllegalArgumentException" from this log line "null\n\njava.lang.IllegalArgumentException".

I am able to pull exceptions which are not associated with special characters using rex "(?java?.[.\w]+Exception)" but

thanks

Tags (1)
0 Karma

mayurr98
Super Champion

can you please provide full sample events and output you want?

0 Karma

bangalorep
Communicator

Hello!
Try this run anywhere search

| makeresults 
| eval _raw="null\n\njava.lang.IllegalArgumentException
: java.util.concurrent.ExecutionException..
( java.util.concurrent.ExecutionException)
\" java.util.concurrent.ExecutionException\"" 
| rex field=_raw max_match=0 "(?<javaexception>java?.[.\w]+Exception)"

You can try something like this

| rex field=_raw (?<javaexception>java?.[.\w]+Exception)

OR

| rex field=_raw (?<javaexception>java.*Exception)
0 Karma

guru89044
Explorer

ddint work. its not correct.

0 Karma

bangalorep
Communicator

I edited my answer. did you check?
Also, if its not correct can you elaborate by giving sample inputs and what output you want

0 Karma

bangalorep
Communicator

Try this run anywhere search

| makeresults 
| eval _raw="null\n\njava.lang.IllegalArgumentException
: java.util.concurrent.ExecutionException..
( java.util.concurrent.ExecutionException)
\" java.util.concurrent.ExecutionException\"" 
| rex field=_raw max_match=0 "(?<java>(\S+|)java.\w+.*Exception)"
0 Karma

guru89044
Explorer

no rex command is still not working.

0 Karma

bangalorep
Communicator

Can you please send me one full event? Also, please send the search query you're using.

0 Karma

guru89044
Explorer
0 Karma

bangalorep
Communicator

For this, you need to use max_match=0 in the rex expression.

Use this query

rex field=_raw max_match=0 "(?<java>(\S+|)java.\w+.*Exception)"
0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Can’t Make It to Boston? Stream .conf25 and Learn with Haya Husain

Boston may be buzzing this September with Splunk University and .conf25, but you don’t have to pack a bag to ...

Splunk Lantern’s Guide to The Most Popular .conf25 Sessions

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Unlock What’s Next: The Splunk Cloud Platform at .conf25

In just a few days, Boston will be buzzing as the Splunk team and thousands of community members come together ...