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!

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

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...