Splunk Search

extract exception from stacktrace field

donB
Loves-to-Learn Lots

Below is a sample log message.  Each message will have string "500 Server Error for HTTP" and i need to extract 3 fields after the occurrence of "500 Server Error for HTTP" string

2020-11-18T00:32:37.632Z LCS userId=null LCE [helper-http-epoll-1] ERROR o.s.b.a.w.r.e.AbstractErrorWebExceptionHandler.error(122) - 500 Server Error for HTTP POST "/sports/v1/boxing"java.net.UnknownHostException: my-rest-service.backend-->	at java.base/java.net.InetAddress$CachedAddresses.get(InetAddress.java:797)-->	Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: 

I need to extract 2 fields  -

1) method (e.g. - POST)

2) path (between 1st pair of quotes) - e.g, /sports/v1/boxing

and 2)exception_type (anything between 1st quote closing and before first occurrence of -->)

java.net.UnknownHostException: alert-rest-service.backend-

Splunk query i am trying is below

index="k8s*" messageType=ERROR "*Exception:*-->" 
| rex "500 Server Error for HTTP (?<http_method>\\S+).*\\\\\"(?<resource_url>.*)\\\\\"(?<java_exception>.*?(Exception)).*"

 Query works fine to extract "http_method" and "resource_url"

but "java_exception" is not being extracted properly. Can someone help?

Labels (5)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
index="k8s*" messageType=ERROR "*Exception:*-->" 
| rex "500 Server Error for HTTP (?<http_method>\S+).*\\\"(?<resource_url>.*)\\\"(?<java_exception>.*?Exception)"
0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Modernize your Splunk Apps – Introducing Python 3.13 in Splunk

We are excited to announce that the upcoming releases of Splunk Enterprise 10.2.x and Splunk Cloud Platform ...

Step into “Hunt the Insider: An Splunk ES Premier Mystery” to catch a cybercriminal ...

After a whole week of being on call, you fell asleep on your keyboard, and you hit a sequence of buttons that ...

SplunkTrust Application Period is Officially OPEN!

It's that time, folks! The application/nomination period for the 2026-2027 SplunkTrust is officially open. If ...