Splunk Search

A query to get the xml files which has the specified tags

sasireka
Loves-to-Learn Lots

I have displayed two sample xml files below.  I have to check whether a xml file has <customer-job-id> and <submission> tags. If both tags are there then we have to take it otherwise leave the xml file and move to next xml file

Sample XML file:

<?xml version="1.0" encoding="UTF-8"?><message>

<customer-job-id>cust1</customer-job-id>

<submission>

<job>

</job>

</submission></message>

 

<?xml version="1.0" encoding="UTF-8"?><message>

<customer-job-id>cust2</customer-job-id>

</message>

Labels (1)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Are these xml files already ingested as events? If so, you could use regex to filter them

| makeresults 
| eval xml=split("<?xml version=\"1.0\" encoding=\"UTF-8\"?><message>
<customer-job-id>cust1</customer-job-id>
<submission>
<job>
</job>
</submission></message>
|
<?xml version=\"1.0\" encoding=\"UTF-8\"?><message>
<customer-job-id>cust2</customer-job-id>
</message>","|")
| mvexpand xml
| regex xml="\<customer\-job\-id\>[^\<]+\<\/customer\-job\-id\>[\w\W]*\<submission\>"
0 Karma
Get Updates on the Splunk Community!

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

What are Community Office Hours? Community Office Hours is an interactive 60-minute Zoom series where ...

Index This | When is October more than just the tenth month?

October 2025 Edition  Hayyy Splunk Education Enthusiasts and the Eternally Curious!   We’re back with this ...

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