Splunk Search

Extract xml

vasanthmss
Motivator

Hi Splunkers,

I would like to extract the following xml while indexing..

fields:

host=0.0.0.1
source=mysource
sourcetype=mysourcetype
name=vasu
address=us

xml:

<customvalues>
    <customvalue>
        <name>host</name>
        <value>0.0.0.1</value>      
    </customvalue>
    <customvalue>
        <name>source</name>
        <value>mysource</value>     
    </customvalue>
    <customvalue>
        <name>sourcetype</name>
        <value>mysourcetype</value>     
    </customvalue>
    <customvalue>
        <name>name</name>
        <value>vasu</value>     
    </customvalue>
    <customvalue>
        <name>address</name>
        <value>US</value>       
    </customvalue>
</customvalues>
V
Tags (1)
1 Solution

martin_mueller
SplunkTrust
SplunkTrust

You could set this in props.conf for that sourcetype:

SEDCMD-foo = s/(?s).*?<name>([^<]+).*?<value>([^<]+)(\s*<\/[^>]+>)*/\1="\2" /g

That'll turn your event into this at index time:

host="0.0.0.1" source="mysource" sourcetype="mysourcetype" name="vasu" address="US" 

Note, this will not set Splunk's metadata fields host, source, sourcetype automatically - that requires a bit more rewriting in transforms.conf if that's what you're after.

Note, your closing tags aren't valid XML... also, this kind of data structure sucks to work with.

View solution in original post

splunker12er
Motivator
0 Karma

martin_mueller
SplunkTrust
SplunkTrust

You could set this in props.conf for that sourcetype:

SEDCMD-foo = s/(?s).*?<name>([^<]+).*?<value>([^<]+)(\s*<\/[^>]+>)*/\1="\2" /g

That'll turn your event into this at index time:

host="0.0.0.1" source="mysource" sourcetype="mysourcetype" name="vasu" address="US" 

Note, this will not set Splunk's metadata fields host, source, sourcetype automatically - that requires a bit more rewriting in transforms.conf if that's what you're after.

Note, your closing tags aren't valid XML... also, this kind of data structure sucks to work with.

vasanthmss
Motivator

Thanks Martin_Muller,

actually its my mistake, now changed the question with proper tags,I will give a try and update it.

V
0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

 Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

What's New in Splunk Observability - August 2025

What's New We are excited to announce the latest enhancements to Splunk Observability Cloud as well as what is ...

Introduction to Splunk AI

How are you using AI in Splunk? Whether you see AI as a threat or opportunity, AI is here to stay. Lucky for ...