Splunk Search

Transaction Order Out of Sequence Identification

Mick_OBrien
Path Finder

Hi All,

We have an application that gets events in from an external party but occasionally we see out of sequence events that occur due to underlying issues with the MQ interface [guaranteed delivery but not necessarily in correct order].  Identifying out of sequence events would then point to an issue with the underlying MQ. 

Given this set of data..

| makeresults format=csv data="timelogged, formDataId, eventOrder
00:02,AA,2
00:03,AA,3
00:04,AA,3
00:05,AA,4
00:06,AA,5
00:07,AA,9
01:02,BB,2
01:03,BB,3
01:04,BB,3
01:05,BB,4
01:07,BB,9
01:08,BB,5
02:02,CC,2
02:03,CC,3
02:04,CC,3
02:05,CC,4
02:06,CC,5
02:07,CC,9
03:01,DD,1
04:02,EE,2
04:03,EE,4
04:04,EE,3
04:05,EE,9"
| table timelogged, formDataId, eventOrder

...how could the highlighted transactions be identified?

Note: We do not get all types of events and the 'first' event is not usually seen [as indicates an error on vendor side]

Labels (1)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

Assuming events are already sorted in time order, try something like this

| streamstats window=1 current=f values(eventOrder) as previous by formDataId
| where previous > eventOrder

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust

Assuming events are already sorted in time order, try something like this

| streamstats window=1 current=f values(eventOrder) as previous by formDataId
| where previous > eventOrder

Mick_OBrien
Path Finder

@ITWhisperer 

Thank you - that worked

Do you have any links/examples for 'streamstats' and use of 'current' and 'values' clauses?

0 Karma

PickleRick
SplunkTrust
SplunkTrust

In a simple use case you can get similar effect by using the autoregress command. But since streamstats is way more powerful and can also be used in simple cases, people tend to use even for those simple cases 🙂

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

A Four-Part Event Series: Full Stack Observability For the AI Era

As AI reshapes applications, infrastructure, and the way teams operate, the traditional boundaries of ...

SOC4Kafka - New Kafka Connector Powered by OpenTelemetry

The new SOC4Kafka connector, built on OpenTelemetry, enables the collection of Kafka messages and forwards ...

Event Series: Level up your SOC: Advancing with Splunk Enterprise Security

AI has fundamentally raised the stakes for security operations, and this three-part series is your guide to ...