Splunk Search

rex for extracting particular keyword in logs

prajwal_94
Explorer

I am searching for exceptions/the type of exception in logs and using below query-

index=abcd ("*Exception" OR "*exception") | rex "(?P<Exception>.*\..*Exception:)" | eval mvFields=split(Exception, " ") | eval Exception1=mvindex(mvFields,mvfind(mvFields,"\..*Exception")) | timechart span=5m count by Exception1

but when I expand the time range to 4-7 days, I get the below alert message(although I get the output) 

Error in rex command: regex= "(?P<Exception>.*\..*Exception:)" has exceeded configured match_limit, consider raising the value in limits.conf

looking for more efficient way in which the above search can be refined without making any changes to limits.conf

Labels (2)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

The initial search for "exception" is case insensitive and doesn't need the leading wildcard

It looks like you are trying to capture the exception delimited by spaces with at least one dot.

index=abcd exception 
| rex "\s(?P<Exception>[^\s]*\.[^\s\.]*Exception:)" 
| timechart span=5m count by Exception

 

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust

The initial search for "exception" is case insensitive and doesn't need the leading wildcard

It looks like you are trying to capture the exception delimited by spaces with at least one dot.

index=abcd exception 
| rex "\s(?P<Exception>[^\s]*\.[^\s\.]*Exception:)" 
| timechart span=5m count by Exception

 

Get Updates on the Splunk Community!

Splunk + ThousandEyes: Correlate frontend, app, and network data to troubleshoot ...

 Are you tired of troubleshooting delays caused by siloed frontend, application, and network data? We've got a ...

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI!Discover how Splunk’s agentic AI ...

🔐 Trust at Every Hop: How mTLS in Splunk Enterprise 10.0 Makes Security Simpler

From Idea to Implementation: Why Splunk Built mTLS into Splunk Enterprise 10.0  mTLS wasn’t just a checkbox ...