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!

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

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...