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!

Tips & Tricks When Using Ingest Actions

Tune in to learn about:Large scale architecture when using Ingest ActionsRegEx performance considerations ...

Announcing Our Splunk MVPs

We are excited to announce the first cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Dashboard Studio Challenge - Learn New Tricks, Showcase Your Skills, and Win Prizes!

Reimagine what you can do with your dashboards. Dashboard Studio is Splunk’s newest dashboard builder to ...