Splunk Search

Regex: subpattern name expected

robprice797
New Member
org_name="myOrg" index="myIndex" app_name="myAppName" space_name="Staging"
| rex field=msg "stack:(?<.*java\.lang.*Exception.*>\S+) "
| eval earliest=_time-1
| eval latest=_time+1
| cluster t=0.9 showcount=t 
| head 20 
| spath msg
| table timestamp,_time,stack,msg 
| sort -timestamp
| reverse

I get the error:

Error in 'rex' command: Encountered the following error while compiling the regex 'stack:(?<.*java\.lang.*Exception.*>\S+) ': Regex: subpattern name expected

Can someone help?

Tags (2)
0 Karma

woodcock
Esteemed Legend

Try this:

index="myIndex" org_name="myOrg" app_name="myAppName" space_name="Staging"
| rex field=msg "(?<stack>.*java\.lang.*Exception.*\S+)"
| eval earliest=_time-1
| eval latest=_time+1
| cluster t=0.9 showcount=t 
| head 20 
| spath msg
| table timestamp,_time,stack,msg 
| sort -timestamp
| reverse

I am assuming that you are trying to create a field called stack but I have no idea what the rest of the RegEx should be. If this is not correct, expand on this:
https://regex101.com/r/HdGXie/1

0 Karma

chrisyounger
SplunkTrust
SplunkTrust

Try this:

org_name="myOrg" index="myIndex" app_name="myAppName" space_name="Staging"
| rex field=msg "(?<stack>java.lang.Exception.\S+)"
| eval earliest=_time-1
| eval latest=_time+1
| cluster t=0.9 showcount=t 
| head 20 
| spath msg
| table timestamp,_time,stack,msg 
| sort -timestamp
| reverse
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 ...