Splunk Search

How to capture multiple lines in rex

sid1808
Loves-to-Learn

HI all, 

I am trying to capture multiple lines between two strings in my log data. But so far have not been able to figure out a solution. 
the log data is as follows:

'calls': 'apfsae.providers.economic.china_jobs_data_provider.ChinaJobsProvider',

'db_connection': 'providers/database_connection :: qtrewd_iq',

'db_view_name': 'adweh.V_datayes_china_recruitment',

'calls': 'apfsae.providers.mappings.company_id_to_barra_mapper.BbToBarraMapper',

 

I want to capture lines starting from ChinaJobsProvider to 'calls': 
Thank you !

Labels (3)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Do you mean something like this

| rex "(?ms)ChinaJobsProvider'(?<lines>.*)'calls"

 

0 Karma

sid1808
Loves-to-Learn

Hi I used this but it matching with every record even if it contains this data or not. 

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Try it like this so it is less greedy

| rex "(?ms)ChinaJobsProvider'(?<lines>.*?)'calls"
0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

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