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
Get Updates on the Splunk Community!

Why You Can't Miss .conf25: Unleashing the Power of Agentic AI with Splunk & Cisco

The Defining Technology Movement of Our Lifetime The advent of agentic AI is arguably the defining technology ...

Deep Dive into Federated Analytics: Unlocking the Full Power of Your Security Data

In today’s complex digital landscape, security teams face increasing pressure to protect sprawling data across ...

Your summer travels continue with new course releases

Summer in the Northern hemisphere is in full swing, and is often a time to travel and explore. If your summer ...