Splunk Search

How to extract a complete multiline XML message into a field?

ankithreddy777
Contributor

I have a xml message with multiple lines. How can we extract entire data into a field?

Tags (2)
0 Karma
1 Solution

niketn
Legend

Use replace command to remove new line characters from raw event data.
Use rex to identify start and end of XML data.

For example for the following data

2016/10/20 01:01:30.123 Request Data XML : <root>
<header>
    <name>test</name>
</header>
<data>
    <sno>12345</sno>
    <details>blah blah</details>
</root>

Following SPL should do the extraction. (PS: You might have to try to remove \r also based on whether you have just new line (\n) or line feed (\r) character as well in your raw data)

| <Your Base Search>
| eval rawsingleline= replace(_raw,"\n","") 
| rex field=rawsingleline "Request Data XML : (?<xmldata>.*)" 
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

View solution in original post

niketn
Legend

Use replace command to remove new line characters from raw event data.
Use rex to identify start and end of XML data.

For example for the following data

2016/10/20 01:01:30.123 Request Data XML : <root>
<header>
    <name>test</name>
</header>
<data>
    <sno>12345</sno>
    <details>blah blah</details>
</root>

Following SPL should do the extraction. (PS: You might have to try to remove \r also based on whether you have just new line (\n) or line feed (\r) character as well in your raw data)

| <Your Base Search>
| eval rawsingleline= replace(_raw,"\n","") 
| rex field=rawsingleline "Request Data XML : (?<xmldata>.*)" 
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...