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!

Index This | I am a number, but when you add ‘G’ to me, I go away. What number am I?

March 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...