Splunk Search

How to extract a string from _raw?

avadhutha
Explorer

I have a string like below and unable to extract accuratly with rex command please suggest  any alternative way.

_raw----------------

{lable:harish,message: Say something, location:India, state:TS,qual:xyz}

{message: say nothing,lable:harish, location:India, state:TS,qual:xyz}

{lable:harish, location:India, state:TS,qual:xyz,message: say splunk splunk answers}

 

The message value is randomized location and I need to pick the message value.

 

When I try with below command it is not considering the proper end position. Please suggest

|rex "message:(?<Message_value>.*)[,|}]" |table Message_Value

Labels (2)
Tags (2)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

Field names are case-sensitive, also, you are using a greedy match which may pick up more than you bargained for - try this

|rex "message:(?<Message_Value>.*?)[,|}]" |table Message_Value

 

View solution in original post

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Field names are case-sensitive, also, you are using a greedy match which may pick up more than you bargained for - try this

|rex "message:(?<Message_Value>.*?)[,|}]" |table Message_Value

 

0 Karma

avadhutha
Explorer

Thank you so much.., I was trying a lot of thing like field extraction and regex and you helped it well with ?.

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 ...