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!

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