Splunk Search

Extract text from message field

codedtech
Path Finder

I need to extract a string from a message body,  and make a new field for it.  

<Junk_Message> #body | Thing1 | Stuff2  | meh4 | so on 1 | extra stuff3 | Blah4 </Junk_Message>
I just need the text that start with #body and end with Blah4. To make things more fun everything after #body generates randomly.




Labels (1)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

It would help to know what you've tried so far and how those attempts failed you.

One method that works well for me is the rex command.  This regex matches everything after "Junk_Message>" until the following "<" and puts it into a field called Junk_Message.

| rex "Junk_Message>(?<Junk_Message>[^\<])"

 

---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

It would help to know what you've tried so far and how those attempts failed you.

One method that works well for me is the rex command.  This regex matches everything after "Junk_Message>" until the following "<" and puts it into a field called Junk_Message.

| rex "Junk_Message>(?<Junk_Message>[^\<])"

 

---
If this reply helps you, Karma would be appreciated.
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...