Splunk Search

How to calculate the duration between the last 2 events in a transaction?

sc0tt
Builder

I would like to calculate the duration between the last two events in a transaction. An example transaction looks something like:

2015-12-31 13:03:03,695  Outgoing  UserId="99999999999" MsgType="Menu" Internal="START" 
2015-12-31 13:03:15,437  Incoming  UserId="99999999999" MsgType="Refresh"
2015-12-31 13:03:19,847  Incoming  UserId="99999999999" MsgType="Key" Key="1" 
2015-12-31 13:03:20,238  Outgoing  UserId="99999999999" MsgType="Menu" 

How can I calculate the duration between last Incoming and last Outgoing events?

0 Karma
1 Solution

sundareshr
Legend

Try something like this... This is untested, so you will have to tweak to your data

First extract Incoming and Outgoing into a field, say dir

.... | rex "\b(?<dir>[Outgoing|Incoming]+)\b"

Then add a serial number to both directions.. like this

| streamstats count by dir

Then sort by dir to group Incoming with Outgoing

| sort dir

Finally use the range command to get the time difference

| streamstats range(_time) as diff by dir

This should give you some idea as to get what you need

View solution in original post

0 Karma

sundareshr
Legend

Try something like this... This is untested, so you will have to tweak to your data

First extract Incoming and Outgoing into a field, say dir

.... | rex "\b(?<dir>[Outgoing|Incoming]+)\b"

Then add a serial number to both directions.. like this

| streamstats count by dir

Then sort by dir to group Incoming with Outgoing

| sort dir

Finally use the range command to get the time difference

| streamstats range(_time) as diff by dir

This should give you some idea as to get what you need

0 Karma
Get Updates on the Splunk Community!

Index This | I am a number, but when you add ‘G’ to me, I go away. What number am I?

March 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...