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!

Index This | I am a number, but when you add ‘G’ to me, I go away. What number am I?

March 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...