Splunk Search

How to edit my search to find error code counts from my XML data?

x05311
Explorer

alt text

Splunk code to find Error description :

index="inputfile" | rex "^(?P<reasoncode>[^\t]*)" | rex max_match=0 "<messageString>(?<reasoncode>[^\\<\"]*)" | eval reason_sub_code=substr(reasoncode,1,7)|stats count by reasoncode   

---------- Results as Expected : Working as EXPECTED-----------

reasoncode      "   count"
DPR-ERR-2070 the service monitorService did not stop within a reasonable amount of time 2
DPR-DPR-1026 Unable to register the dispatcher in Content Manager.  2
DPR-DPR-2002 Unable to find     2

Splunk code to find Error code counts only:

index="inputfile" | rex "^(?P<reasoncode>[^\t]*)" | rex max_match=0 "<messageString>(?<reasoncode>[^\\<\"]*)" | eval reason_sub_code=substr(reasoncode,1,12)|stats count by reason_sub_code     

----Actual Output: NOT Working as EXPECTED--------------

reasoncode      "   count"
DPR-ERR-2070    2       

Expected Output:

reasoncode      "   count"
DPR-ERR-2070    2
DPR-DPR-1026    2
DPR-DPR-2002    2
0 Karma

somesoni2
Revered Legend

Give this a try

 index="inputfile"  | rex max_match=0 "\<messageString\>(?<reason_sub_code>\S+)" |stats count by reason_sub_code   
0 Karma
Get Updates on the Splunk Community!

CX Day is Coming!

Customer Experience (CX) Day is on October 7th!! We're so excited to bring back another day full of wonderful ...

Strengthen Your Future: A Look Back at Splunk 10 Innovations and .conf25 Highlights!

The Big One: Splunk 10 is Here!  The moment many of you have been waiting for has arrived! We are thrilled to ...

Now Offering the AI Assistant Usage Dashboard in Cloud Monitoring Console

Today, we’re excited to announce the release of a brand new AI assistant usage dashboard in Cloud Monitoring ...