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!

CX Day is Coming!

Customer Experience (CX) Day is on October 7th!! We're so excited to bring back another day full of wonderful ...

Strengthen Your Future: A Look Back at Splunk 10 Innovations and .conf25 Highlights!

The Big One: Splunk 10 is Here!  The moment many of you have been waiting for has arrived! We are thrilled to ...

Now Offering the AI Assistant Usage Dashboard in Cloud Monitoring Console

Today, we’re excited to announce the release of a brand new AI assistant usage dashboard in Cloud Monitoring ...