Splunk Search

Compute time offset of each event compared to the transaction start

esflavio
New Member

In my situation I have "Web Requests" events, which I group in transactions with the following search:

sourcetype="WEB Request" 
| eval request_date=_time
| transaction user maxpause=10m startswith="logged in" mvlist="request_date"

I now have every request's absolute date, in order. And I would like to compute a multi valued field that would represent the offset of each request date compared to the session date.

Basically, if the field was not multivalued, I could complete the search with something like:

| eval request_time_offset=request_date - _time

But the field is multivalued, and I am not sure how to proceed.

0 Karma

wpreston
Motivator

I'm not quite sure how to make it a multivalued field on the transaction, but here's one way you can calculate the time offset for each part of your transaction. You'll need another field that differentiates each part of the transaction, like a user's action or request. For purposes of this example, I'll call that field "Request":

sourcetype="WEB Request"  
| eval request_date=_time 
| transaction user maxpause=10m startswith="logged in" mvlist="request_date,Request"
| eval SplitField=mvzip(request_date,Request)
| mvexpand SplitField
| rex field=SplitField "(?<Request>[^,]+),(?<Request>.*)"
| eval ElapsedTime=request_date-_time
| table user Request request_date _time ElapsedTime
0 Karma

esflavio
New Member

@martin_mueller: I want to compute statistics on, for example, how late in a session a given page is accessed, to better model the users' behavior.

0 Karma

martin_mueller
SplunkTrust
SplunkTrust

What are you ultimately trying to achieve?

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...