Splunk Search

Help In Regex

jagadish85
Path Finder

I want to extract the previous line if found a matching string in an event.

for Eg in an event :
4XESTACKTRACE at com/mypackage/test/TestClass1.method1(TestClass1.java:558(Compiled Code))
4XESTACKTRACE at com/mypackage/test/TestClass1.method2(TestClass1.java:148(Compiled Code))
4XESTACKTRACE at com/mypackage/test/TestClass1.run(TestClass1.java:55(Compiled Code))

I want to get the package or line (com/mypackage/test/TestClass1.method2) before the line containing run method.

rex max_match=10 field=_raw "at (?Pcom/mypackage/[\w/]*.[\w]+)" giving me all.

Thanks
Jagadish

Tags (2)
0 Karma
1 Solution

kristian_kolb
Ultra Champion

You could try something like to only get stuff from the line directly above a line that contains ".run"

rex "at (?<aaa>[^(]+)[^\r\n]+[\r\n]+[^\r\n]+\.run" | table aaa

/K

View solution in original post

0 Karma

kristian_kolb
Ultra Champion

You could try something like to only get stuff from the line directly above a line that contains ".run"

rex "at (?<aaa>[^(]+)[^\r\n]+[\r\n]+[^\r\n]+\.run" | table aaa

/K

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...