Splunk Search

How to obtain the time difference between Host connection and disconnection?

edrivera3
Builder

Hi

I have a log file and I want to know how much time passed between HOST connection and disconnection. In the log, the connection message always appears as "as7_trans CONNECT" and the disconnection always appears as "262 DISCON".

I would like to obtain a table with host, transaction and total time.

Log file example (9 events):

host    trans.  timestamp             message  

host1   27609   2015-07-14 15:47:10   as7_trans CONNECT
host1   27609   2015-07-14 15:47:10   220 GET_SVR_INFO
host1   27609   2015-07-14 15:48:10   220 Response 0 DPI_ACKNOWLEDGE
host1   27609   2015-07-14 15:48:10   262 DISCON
host1   28792   2015-02-23 10:47:05   Dirserver host1 XXX.XXX.XXX.XX 
host1   27611   2015-07-14 15:47:13   as7_trans CONNECT
host1   27611   2015-07-14 15:47:13   220 GET_SVR_INFO
host1   27611   2015-07-14 15:49:17   220 Response 0 DPI_ACKNOWLEDGE
host1   27611   2015-07-14 15:49:17   262 DISCON

I appreciate your help.

0 Karma
1 Solution

jeremiahc4
Builder

I know there's a better way to do this with stats, streamstats, or something like that but I've always used the transaction command which is more expensive on CPU. Something like the below;

<search yielding above results> | transaction host,trans startswith="*CONNECT" endswith="*DISCON"

Ref: http://docs.splunk.com/Documentation/Splunk/6.2.4/Search/Abouttransactions

View solution in original post

jeremiahc4
Builder

I know there's a better way to do this with stats, streamstats, or something like that but I've always used the transaction command which is more expensive on CPU. Something like the below;

<search yielding above results> | transaction host,trans startswith="*CONNECT" endswith="*DISCON"

Ref: http://docs.splunk.com/Documentation/Splunk/6.2.4/Search/Abouttransactions

jeremiahc4
Builder

Forgot to mention that transaction creates a "duration" field which is in seconds if I recall correctly.

0 Karma

edrivera3
Builder

Yes I know. I answered my own question before your response, but I did the same thing that you proposed. That's why I accepted your answer. Thanks.

... | transaction startswith=(message="as7_trans CONNECT") endswith=(message="262 DISCON") | Duration transaction host

Get Updates on the Splunk Community!

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...

New! Splunk Observability Search Enhancements for Splunk APM Services/Traces and ...

Regardless of where you are in Splunk Observability, you can search for relevant APM targets including service ...

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...