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!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...