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!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...