Alerting

How to write regular expression for the below log and to extract Error code, ErrorMessage ?

venkatanagendra
New Member

Activity Result: {"IsProductValidated":"false","ErrorCodes":[{"errorCode":"PRD-202","errorMessage":"Product Validation Service Returned Error :: Reason: Options you have selected are not available at this time. Please change your selections."}]}

Labels (2)
0 Karma

pl2345
Path Finder

You could use field extraction or the rex command.

| rex field="Activity Result" "Activity Result: {"IsProductValidated":"false","ErrorCodes":\[{"errorCode":"(?P<errorCode>\S+)","errorMessage":"(?P<errorMessage>.+)."}]}" 

0 Karma

schose
Builder

Hi @venkatanagendra ,

You do not need to do regex, as your data is already in  structured json format. Ensure your sourcetype is using kv_mode=json  or kv_mode=auto and you can address fields 

ErrorCodes{}.errorCode ErrorCodes{}.errorMessage

Best regards,

Andreas

 

0 Karma

venkatanagendra
New Member

Thanks for your quick response schose...but  if you see below image mentioned log comeing from (Alexinfomsg ) field, in this field Activity Result have Error code and Error message, these information we need to extract

venkatanagendra_0-1667322669431.png

 

0 Karma

schose
Builder

Hi @venkatanagendra ,

If the json you provided is part of an already existing field i would go with eval json functions

 

| makeresults
| eval json = "{\"IsProductValidated\":\"false\",\"ErrorCodes\":[{\"errorCode\":\"PRD-202\",\"errorMessage\":\"Product Validation Service Returned Error :: Reason: Options you have selected are not available at this time. Please change your selections.\"}]}"
| eval errorCode = json_extract(json,"ErrorCodes{}.errorCode"), errorMessage = json_extract(json,"ErrorCodes{}.errorMessage")
| table _time errorCode errorMessage

 

Best Regards,

Andreas

0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

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

Get the T-shirt to Prove You Survived Splunk University Bootcamp

As if Splunk University, in Las Vegas, in-person, with three days of bootcamps and labs weren’t enough, now ...

Wondering How to Build Resiliency in the Cloud?

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