Splunk Search

How to build correlationId (transactionId) search?

LealP
Explorer

Hi,

Below is an example of my use case:

timestamp messageId correlationId region category trace
17/05/2023 00:00 1 correlationA UCAN orders START
17/05/2023 00:01 2 correlationA UCAN orders FLOW
17/05/2023 00:02 3 correlationA UCAN orders FLOW
17/05/2023 00:03 4 correlationA UCAN orders FLOW
17/05/2023 00:04 5 correlationA UCAN orders FLOW
17/05/2023 00:05 6 correlationA UCAN orders FLOW
17/05/2023 00:06 7 correlationA UCAN orders FLOW
17/05/2023 00:07 8 correlationA UCAN orders END
17/05/2023 00:10 9 correlationB EMEA accounts START
17/05/2023 00:11 10 correlationB EMEA accounts FLOW
17/05/2023 00:12 11 correlationB EMEA accounts FLOW
17/05/2023 00:13 12 correlationB EMEA accounts FLOW
17/05/2023 00:14 13 correlationB EMEA accounts FLOW
17/05/2023 00:15 14 correlationB EMEA accounts FLOW
17/05/2023 00:16 15 correlationB EMEA accounts EXCEPTION

 

And the expected output:

timestamp correlationId region category status #records duration
17/05/2023 00:10 correlationA UCAN order SUCCESS 6 00:07:00
17/05/2023 00:16 correlationB EMEA accounts ERROR 5 00:06:00

 

- the goal is to have one row per correlationId 

- the column STATUS should be calculated with the following rule: if there is a row with trace=END it means that the flow ran successfully and the status should be "SUCCESS" and if there is a row with trace=EXCEPTION it means that an error occurred and the status should be "ERROR"

- the number of records should consider only the rows with trace=FLOW

- the duration should be the time elapsed from the row with trace=START until the row trace=END or trace=EXCEPTION

Can you help on building the query?



Labels (2)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Try something like this

| stats earliest(_time) as start latest(_time) as end last(trace) as status values(region) as region values(category) as category count as records by ocrrelationId
| eval timestamp = end
| eval duration = end-start
| fieldformat duration = tostring(duration, "duration")
0 Karma
Get Updates on the Splunk Community!

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 ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...