Splunk Search

Help with calculating IIS access logs time spent on site by ip

dondky
Path Finder

Hi guys, I'm working on calculating the average time spent by a user on a internal iis site in our environment.

I came up with the following search which I think might provide us with this info:

index=iis host=exampleserver* cs_uri_stem="/care/*" | stats earliest(_time) as start latest(_time) as stop by src | eval difference=stop-start | eval start=strftime(start,"%m/%d/%Y:%H:%M:%S") | eval stop=strftime(stop,"%m/%d/%Y:%H:%M:%S") | eval difference=strftime(difference,"%m/%d/%Y:%H:%M:%S")

But I'm still unsure if this is the best approach. The goal would be to take the "difference" value and then do an average upon that to give us how long the user spent on the site. Is this the best approach or even close to what I think I'm doing?

Thanks

Tags (3)

dolivasoh
Contributor

You could do a transaction by the ip or a session/cookie id if you have it. Transaction will give you the duration of a group of events tied by your field of choice.

http://docs.splunk.com/Documentation/Splunk/6.2.1/SearchReference/transaction

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