Dashboards & Visualizations

Regex to read xml data dynamic

keeplearningbud
New Member

Hi..

I am trying to create a dashboard which extracts errorCode field from multiple xmls. Xpath for it would be different for different outputs. For ex: for createUser it is abc and for deleteUser it would be xyz. I need to have the xpath dynamic which extracts errorCode alone. I am trying with below regular expression which I know makes no sense. Please help.

alt text

alt text

0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

hi keeplearningbuddy,
using this regex you can take all erroCodes and test it at https://regex101.com/r/9oqQxH/1

\<errorCode>(?<errorCode>[^\<]*)\<\/errorCode>

if instead you like to determine errorCode related to createUser, you can use this regex and test it at https://regex101.com/r/AhlTiY/1

\<createUser\>[^\<]*\<errorCode>(?<errorCode>[^\<]*)\<\/errorCode>

Bye.
Giuseppe

View solution in original post

0 Karma

gcusello
SplunkTrust
SplunkTrust

hi keeplearningbuddy,
using this regex you can take all erroCodes and test it at https://regex101.com/r/9oqQxH/1

\<errorCode>(?<errorCode>[^\<]*)\<\/errorCode>

if instead you like to determine errorCode related to createUser, you can use this regex and test it at https://regex101.com/r/AhlTiY/1

\<createUser\>[^\<]*\<errorCode>(?<errorCode>[^\<]*)\<\/errorCode>

Bye.
Giuseppe

0 Karma

keeplearningbud
New Member

Thanks Giuseppe. This worked 🙂

0 Karma
Get Updates on the Splunk Community!

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...

Updated Data Management and AWS GDI Inventory in Splunk Observability

We’re making some changes to Data Management and Infrastructure Inventory for AWS. The Data Management page, ...

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...