Splunk Search

Extracting record which is not success after few retry.

Nilesh067
Explorer

I have below log message :
basically it is for creating customer record and if we got error the we are retrying for 5 times to get succeed. 


log message-------------



Error while creating record  for customer id : 94ABGH0048

Error while creating record  for customer id : 94ABGH0048

Successfully created record for customer id : 94ABGH0048

Error while creating record  for customer id : 902SDKK720

Successfully created record for customer id : 945TTFK048




can i get those customer id for which record not created Successfully ?

according to above log message output should be  "902SDKK720"




Labels (6)
0 Karma

kennetkline
Path Finder

1.  extract the last status code by customer id   I wasn't sure field in your search so used _raw

| rex field=_raw "^(?<statuscode>[a-zA-Z]+)\s|customer\sid\s+:\s(?<customerid>[0-9A-Z]+)"
| stats last(statuscode) by customerid

2.  if understanding you correctly; you wanted any customer id's (where the last code is a failure, didn't aks to validate file 5 events but could do that too.

 

your search  blah, blah, blah...
| rex field=_raw "^(?<statuscode>[a-zA-Z]+)\s|customer\sid\s+:\s(?<customerid>[0-9A-Z]+)"
| stats last(statuscode) by customerid
| where statuscode = "Error"
| table customerid

 

0 Karma
Get Updates on the Splunk Community!

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI!Discover how Splunk’s agentic AI ...

Splunk Enterprise Security 8.x: The Essential Upgrade for Threat Detection, ...

Watch On Demand the Tech Talk on November 6 at 11AM PT, and empower your SOC to reach new heights! Duration: ...

Splunk Observability as Code: From Zero to Dashboard

For the details on what Self-Service Observability and Observability as Code is, we have some awesome content ...